 /* Css For Houlist */

 /************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header/style-one/style-two
5. Main Slider/style-one/style-two
6. Intro Section
7. Welcome Section
9. Cta Section
8. Research Fields
10. Testimonial Section
11. Researches Section
12. Team Section
14. Video
15. Fact Counter
16. News Section
19. brand Section
20. Main Footer
21. Footer Bottom
22. Research Style Two
23. Innovative Solution
24. Discover Section
25. Testimonial Section
26. Chooseus Section
27. News Style Two
28. Page Title
29. Research Page Section
30. Research Details
31. Professor Page Section
32. Professor Details
33. About Section
34. Error Section
35. Blog Page Section
36. Blog Details
37. Blog Sidebar
38. Contact Section
39. Google Map


**********************************************/


 /*** 

====================================================================
                        Home-Page-One
====================================================================

***/


 /** main-header **/

 .main-header {
   position: relative;
   left: 0px;
   top: 0px;
   z-index: 999;
   width: 100%;
   transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
 }

 .sticky-header {
   position: fixed;
   opacity: 0;
   visibility: hidden;
   left: 0px;
   top: 0px;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
   width: 100%;
   z-index: 0;
   transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
 }

 .fixed-header .sticky-header {
   z-index: 999;
   opacity: 1;
   visibility: visible;
   -ms-animation-name: fadeInDown;
   -moz-animation-name: fadeInDown;
   -op-animation-name: fadeInDown;
   -webkit-animation-name: fadeInDown;
   animation-name: fadeInDown;
   -ms-animation-duration: 500ms;
   -moz-animation-duration: 500ms;
   -op-animation-duration: 500ms;
   -webkit-animation-duration: 500ms;
   animation-duration: 500ms;
   -ms-animation-timing-function: linear;
   -moz-animation-timing-function: linear;
   -op-animation-timing-function: linear;
   -webkit-animation-timing-function: linear;
   animation-timing-function: linear;
   -ms-animation-iteration-count: 1;
   -moz-animation-iteration-count: 1;
   -op-animation-iteration-count: 1;
   -webkit-animation-iteration-count: 1;
   animation-iteration-count: 1;
 }

 .anim-icon .icon {
   position: absolute;
   background-repeat: no-repeat;
 }

 /** header-lower **/


 .main-header .outer-box {
   position: relative;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
 }

 .main-header .logo-box {
   position: relative;
   display: block;
 }

 .main-header .logo-box img {
   width: 150px;
   height: auto;
 }

 .main-header .menu-area {
   z-index: 1;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
 }

 .main-header.style-one .menu-right-content {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   flex-wrap: wrap;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
 }

 .main-header.style-one .menu-right-content li {
   position: relative;
   display: inline-block;
   margin-right: 10px;
 }

 .main-header.style-one .menu-right-content li:last-child {
   margin-right: 0px;
 }

 .main-header.style-one .menu-right-content .user-btn a,
 .main-header.style-one .menu-right-content .cart-btn a {
   position: relative;
   display: inline-block;
   font-size: 20px;
   width: 54px;
   height: 54px;
   line-height: 54px;
   text-align: center;
   color: var(--white-color);
   cursor: pointer;
   background: transparent;
   transition: all 500ms ease;
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
 }



 /** main-menu **/

 .main-menu .navbar-collapse {
   padding: 0px;
   display: block !important;
 }

 .main-menu .navigation {
   margin: 0px;
 }

 .main-menu .navigation>li {
   position: inherit;
   float: left;
   cursor: pointer;
   z-index: 2;
   padding: 45px 0px;
   margin: 0px 22px;
   -webkit-transition: all 300ms ease;
   -moz-transition: all 300ms ease;
   -ms-transition: all 300ms ease;
   -o-transition: all 300ms ease;
   transition: all 300ms ease;
 }

 .main-menu .navigation>li:last-child {
   margin-right: 0px !important;
 }

 .main-menu .navigation>li:first-child {
   margin-left: 0px !important;
 }

 .main-menu .navigation>li>a {
   position: relative;
   display: block;
   text-align: center;
   font-size: 16px;
   text-transform: uppercase;
   line-height: 30px;
   font-weight: 400;
   font-family: var(--primary-font);
   opacity: 1;
   color: var(--white-color);
   z-index: 1;
   letter-spacing: 1px;
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
 }

 .main-menu .navigation>li>a:before {
   background-color: var(--secondary-color);
 }

 .main-menu .navigation>li>a:before {
   position: absolute;
   content: '';
   width: 130%;
   height: 2px;
   left: 50%;
   transform: translateX(-50%) scale(0, 0);
   bottom: -14px;
   transition: all 500ms ease;
 }

 .main-menu .navigation>li.current>a:before,
 .main-menu .navigation>li:hover>a:before {
   transform: translateX(-50%) scale(1, 1);
 }

 .main-menu .navigation>li.dropdown>a {
   margin-right: 19px;
 }

 .main-menu .navigation>li.current>a {
   color: var(--white-color);
 }

 .main-menu .navigation>li>ul,
 .main-menu .navigation>li>.megamenu {
   position: absolute;
   top: 100%;
   width: 250px;
   z-index: 100;
   border-radius: 5px;
   background: var(--white-color);
   padding: 30px 0px;
   -webkit-transition: all 0.2s ease-out;
   transition: all 0.2s ease-out;
   -moz-transition: all 0.2s ease-out;
   -ms-transition: all 0.2s ease-out;
   -webkit-box-shadow: 0px 4px 4px 1px rgb(0 0 0 / 20%);
   box-shadow: 0px 4px 4px 1px rgb(0 0 0 / 20%);
   -webkit-transform: rotateX(-90deg);
   transform: rotateX(-90deg);
   -webkit-transform-origin: 0 0;
   transform-origin: 0 0;
 }

 .main-menu .navigation>li>ul.from-right {
   left: auto;
   right: 0px;
 }

 .main-menu .navigation>li>ul>li {
   position: relative;
   width: 100%;
   padding: 0px 30px;
   -webkit-transform: translateY(0);
   transform: translateY(0);
   transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
 }


 .main-menu .navigation>li>ul>li:nth-child(2n+1) {
   -webkit-transition-delay: 0.1s;
   transition-delay: 0.1s;
 }

 .main-menu .navigation>li>ul>li:nth-child(2n+2) {
   -webkit-transition-delay: 0.15s;
   transition-delay: 0.15s;
 }

 .main-menu .navigation>li>ul>li:nth-child(2n+3) {
   -webkit-transition-delay: 0.2s;
   transition-delay: 0.2s;
 }

 .main-menu .navigation>li>ul>li:nth-child(2n+4) {
   -webkit-transition-delay: 0.25s;
   transition-delay: 0.25s;
 }

 .main-menu .navigation>li>ul>li:nth-child(2n+5) {
   -webkit-transition-delay: 0.3s;
   transition-delay: 0.3s;
 }

 .main-menu .navigation>li>ul>li:nth-child(2n+6) {
   -webkit-transition-delay: 0.35s;
   transition-delay: 0.35s;
 }

 .main-menu .navigation>li>ul>li:nth-child(2n+7) {
   -webkit-transition-delay: 0.4s;
   transition-delay: 0.4s;
 }

 .main-menu .navigation>li>ul>li:nth-child(2n+8) {
   -webkit-transition-delay: 0.45s;
   transition-delay: 0.45s;
 }

 .main-menu .navigation>li>ul>li:last-child {
   border-bottom: none;
 }

 .main-menu .navigation>li>ul>li>a,
 .main-menu .navigation>li>.megamenu li>a {
   position: relative;
   display: block;
   padding: 14px 0px;
   line-height: 24px;
   font-weight: 400;
   font-size: 16px;
   text-transform: capitalize;
   color: #3A3A3A;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   text-align: left;
   transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
 }

 .main-menu .navigation>li>ul>li:last-child>a,
 .main-menu .navigation>li>.megamenu li:last-child>a {
   border-bottom: none;
 }

 .main-menu .navigation>li>ul>li.dropdown>a:after {
   font-family: 'Font Awesome 5 Pro';
   content: "\f105";
   position: absolute;
   right: 20px;
   top: 14px;
   display: block;
   line-height: 24px;
   font-size: 16px;
   font-weight: 400;
   text-align: center;
   z-index: 5;
 }

 .main-menu .navigation>li>ul>li>ul {
   position: absolute;
   left: 100%;
   top: 0%;
   width: 230px;
   z-index: 100;
   display: none;
   border-radius: 5px;
   padding: 30px 0px;
   background: var(--white-color);
   filter: alpha(opacity=0);
   -webkit-transition: all 0.2s ease-out;
   transition: all 0.2s ease-out;
   -moz-transition: all 0.2s ease-out;
   -ms-transition: all 0.2s ease-out;
   -webkit-box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.2);
   box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.2);
   -webkit-transform: rotateX(-90deg);
   transform: rotateX(-90deg);
   -webkit-transform-origin: 0 0;
   transform-origin: 0 0;
 }

 .main-menu .navigation>li>ul>li>ul.from-right {
   left: auto;
   right: 0px;
 }

 .main-menu .navigation>li>ul>li>ul>li {
   position: relative;
   width: 100%;
   padding: 0px 30px;
 }

 .main-menu .navigation>li>ul>li>ul>li {
   position: relative;
   width: 100%;
   padding: 0px 30px;
 }

 .main-menu .navigation>li>ul>li:hover>ul>li {
   opacity: 1;
   visibility: visible;
   -webkit-transform: translateY(0);
   transform: translateY(0);
 }

 .main-menu .navigation>li>ul>li>ul>li:nth-child(2n+1) {
   -webkit-transition-delay: 0.1s;
   transition-delay: 0.1s;
 }

 .main-menu .navigation>li>ul>li>ul>li:nth-child(2n+2) {
   -webkit-transition-delay: 0.15s;
   transition-delay: 0.15s;
 }

 .main-menu .navigation>li>ul>li>ul>li:nth-child(2n+3) {
   -webkit-transition-delay: 0.2s;
   transition-delay: 0.2s;
 }

 .main-menu .navigation>li>ul>li>ul>li:nth-child(2n+4) {
   -webkit-transition-delay: 0.25s;
   transition-delay: 0.25s;
 }

 .main-menu .navigation>li>ul>li>ul>li:last-child {
   border-bottom: none;
 }

 .main-menu .navigation>li>ul>li>ul>li:last-child {
   border-bottom: none;
 }

 .main-menu .navigation>li>ul>li>ul>li>a {
   position: relative;
   display: block;
   padding: 14px 0px;
   line-height: 24px;
   font-weight: 400;
   font-size: 16px;
   text-transform: capitalize;
   color: #3a3a3a;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   text-align: left;
   transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
 }

 .main-menu .navigation>li>ul>li>ul>li:last-child>a {
   border-bottom: none;
 }

 .main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
   font-family: 'Font Awesome 5 Pro';
   content: "\f105";
   position: absolute;
   right: 20px;
   top: 12px;
   display: block;
   line-height: 24px;
   font-size: 16px;
   font-weight: 900;
   z-index: 5;
 }

 .main-menu .navigation>li.dropdown:hover>ul,
 .main-menu .navigation>li.dropdown:hover>.megamenu {
   visibility: visible;
   opacity: 1;
   top: 100%;
   webkit-transform: rotateX(0);
   transform: rotateX(0);
 }

 .main-menu .navigation li>ul>li.dropdown:hover>ul {
   visibility: visible;
   opacity: 1;
   filter: alpha(opacity=100);
   top: 0%;
   -webkit-transform: rotateX(0);
   transform: rotateX(0);
 }

 .main-menu .navigation li.dropdown .dropdown-btn {
   position: absolute;
   right: -32px;
   top: 66px;
   width: 34px;
   height: 30px;
   text-align: center;
   font-size: 18px;
   line-height: 26px;
   color: #3b3b3b;
   cursor: pointer;
   display: none;
   z-index: 5;
   transition: all 500ms ease;
 }


 .main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
   display: none;
 }

 .menu-area .mobile-nav-toggler {
   position: relative;
   float: right;
   font-size: 40px;
   line-height: 50px;
   cursor: pointer;
   color: #3786ff;
   display: none;
 }

 .menu-area .mobile-nav-toggler .icon-bar {
   position: relative;
   height: 2px;
   width: 30px;
   display: block;
   margin-bottom: 5px;
   background-color: var(--secondary-color);
   -webkit-transition: all 300ms ease;
   -moz-transition: all 300ms ease;
   -ms-transition: all 300ms ease;
   -o-transition: all 300ms ease;
   transition: all 300ms ease;
 }

 .main-header.style-two .menu-area .mobile-nav-toggler .icon-bar,
 .main-header.style-two .menu-area .mobile-nav-toggler .icon-bar {
   background-color: var(--theme-color);
 }

 .menu-area .mobile-nav-toggler .icon-bar:last-child {
   margin-bottom: 0px;
 }

 .main-header .sticky-header .logo-box {
   padding: 0px 20px;
 }

 .main-header.style-three .sticky-header .logo-box {
   padding: 5px 0px !important;
 }

 .main-header .sticky-header .main-menu .navigation>li {
   padding: 25px 0px !important;
 }

 .main-header .sticky-header .main-menu .navigation>li ul li a {
   color: var(--higer-secondary-color) !important;
 }

 .main-header.style-two .sticky-header .main-menu .navigation>li ul li a {
   color: var(--white-color) !important;
 }

 .main-header .sticky-header .main-menu .navigation>li a,
 .main-header .sticky-header .main-menu .navigation>li a:before {
   color: var(--bs-dark);
 }

 .main-header .sticky-header .search-box-btn,
 .main-header .sticky-header .cart-btn a,
 .main-header .sticky-header .user-btn a {
   color: var(--white-color) !important;
 }





 /** mobile-menu **/

 .nav-outer .mobile-nav-toggler {
   position: relative;
   float: right;
   font-size: 40px;
   line-height: 50px;
   cursor: pointer;
   color: #3786ff;
   display: none;
 }

 .mobile-menu {
   position: fixed;
   right: 0;
   top: 0;
   width: 300px;
   padding-right: 30px;
   max-width: 100%;
   height: 100%;
   opacity: 0;
   visibility: hidden;
   z-index: 999999;
 }

 .mobile-menu .navbar-collapse {
   display: block !important;
 }

 .mobile-menu .nav-logo {
   position: relative;
   padding: 40px 25px;
   text-align: left;
   max-width: 200px;
 }

 .main-header .header-lower {
   margin: 0px 120px;
 }

 .mobile-menu-visible {
   overflow: hidden;
 }

 .mobile-menu-visible .mobile-menu {
   opacity: 1;
   visibility: visible;
 }

 .mobile-menu .menu-backdrop {
   background: var(--theme-color);
 }

 .mobile-menu .menu-backdrop {
   position: fixed;
   right: 0;
   top: 0;
   width: 100%;
   height: 100%;
   z-index: 1;
   -webkit-transform: translateX(101%);
   -ms-transform: translateX(101%);
   transform: translateX(101%);
   transition: all 900ms ease;
   -moz-transition: all 900ms ease;
   -webkit-transition: all 900ms ease;
   -ms-transition: all 900ms ease;
   -o-transition: all 900ms ease;
 }

 .mobile-menu-visible .mobile-menu .menu-backdrop {
   opacity: 0.70;
   visibility: visible;
   -webkit-transition: all 0.7s ease;
   -moz-transition: all 0.7s ease;
   -ms-transition: all 0.7s ease;
   -o-transition: all 0.7s ease;
   transition: all 0.7s ease;
   -webkit-transform: translateX(0%);
   -ms-transform: translateX(0%);
   transform: translateX(0%);
 }

 .mobile-menu .menu-box {
   position: absolute;
   left: 0px;
   top: 0px;
   width: 100%;
   height: 100%;
   max-height: 100%;
   overflow-y: auto;
   background: var(--theme-color);
   padding: 0px 0px;
   z-index: 5;
   opacity: 0;
   visibility: hidden;
   border-radius: 0px;
   -webkit-transform: translateX(101%);
   -ms-transform: translateX(101%);
   transform: translateX(101%);
 }

 .mobile-menu-visible .mobile-menu .menu-box {
   opacity: 1;
   visibility: visible;
   -webkit-transition: all 0.7s ease;
   -moz-transition: all 0.7s ease;
   -ms-transition: all 0.7s ease;
   -o-transition: all 0.7s ease;
   transition: all 0.7s ease;
   -webkit-transform: translateX(0%);
   -ms-transform: translateX(0%);
   transform: translateX(0%);
 }

 .mobile-menu .close-btn {
   position: absolute;
   right: 20px;
   top: 20px;
   width: 30px;
   height: 30px;
   text-align: center;
   font-size: 15px;
   color: var(--secondary-color);
   border: 1px solid var(--secondary-color);
   border-radius: 50%;
   cursor: pointer;
   z-index: 10;
   -webkit-transition: all 0.9s ease;
   -moz-transition: all 0.9s ease;
   -ms-transition: all 0.9s ease;
   -o-transition: all 0.9s ease;
   transition: all 0.9s ease;
 }

 .mobile-menu-visible .mobile-menu .close-btn {
   -webkit-transform: rotate(360deg);
   -ms-transform: rotate(360deg);
   transform: rotate(360deg);
 }

 .mobile-menu .close-btn:hover {
   -webkit-transform: rotate(90deg);
   -ms-transform: rotate(90deg);
   transform: rotate(90deg);
 }

 .mobile-menu .navigation {
   position: relative;
   display: block;
   width: 100%;
   float: none;
 }

 .mobile-menu .navigation li {
   position: relative;
   display: block;
   border-top: 1px solid rgba(255, 255, 255, 0.10);
 }

 .mobile-menu .navigation:last-child {
   border-bottom: 1px solid rgba(255, 255, 255, 0.10);
 }

 .mobile-menu .navigation li>ul>li:first-child {
   border-top: 1px solid rgba(255, 255, 255, 0.10);
 }

 .mobile-menu .navigation li>a {
   position: relative;
   display: block;
   line-height: 24px;
   padding: 10px 25px;
   font-size: 15px;
   font-weight: 500;
   color: var(--white-color);
   text-transform: capitalize;
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
 }

 .mobile-menu .navigation li ul li>a {
   font-size: 16px;
   margin-left: 20px;
   text-transform: capitalize;
 }

 .mobile-menu .navigation li>a:before {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   height: 0;
   border-left: 5px solid var(--white-color);
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
 }

 .mobile-menu .navigation li.current>a:before {
   height: 100%;
 }

 .mobile-menu .navigation li.dropdown .dropdown-btn span {
   color: var(--white-color);
 }

 .mobile-menu .navigation li.dropdown .dropdown-btn {
   position: absolute;
   right: 6px;
   top: 6px;
   width: 32px;
   height: 32px;
   text-align: center;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 16px;
   line-height: 32px;
   color: var(--white-color);
   background: var(--secondary-color);
   cursor: pointer;
   border-radius: 2px;
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
   z-index: 5;
 }

 .mobile-menu .navigation li.dropdown .dropdown-btn.open {
   background: var(--secondary-color);
   color: var(--white-color);
   -webkit-transform: rotate(90deg);
   -ms-transform: rotate(90deg);
   transform: rotate(90deg);
 }

 .mobile-menu .navigation li>ul,
 .mobile-menu .navigation li>ul>li>ul,
 .mobile-menu .navigation>li.dropdown>.megamenu {
   display: none;
 }

 .mobile-menu .social-links {
   position: relative;
   padding: 0px 25px;
 }

 .mobile-menu .social-links li {
   position: relative;
   display: inline-block;
   margin: 0px 10px 10px;
 }

 .mobile-menu .social-links li a {
   position: relative;
   line-height: 32px;
   font-size: 16px;
   color: var(--white-color);
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
 }


 div#mCSB_1_container {
   top: 0px !important;
 }

 .mobile-menu .contact-info {
   position: relative;
   padding: 50px 30px 20px 30px;
 }

 .mobile-menu .contact-info h4 {
   position: relative;
   font-size: 20px;
   color: var(--white-color);
   font-weight: 700;
   margin-bottom: 20px;
 }

 .mobile-menu .contact-info ul li {
   position: relative;
   display: block;
   font-size: 15px;
   color: rgba(255, 255, 255, 0.80);
   margin-bottom: 3px;
 }

 .mobile-menu .contact-info ul li a {
   color: rgba(255, 255, 255, 0.80);
 }


 .mobile-menu .contact-info ul li:last-child {
   margin-bottom: 0px;
 }

 ::-webkit-input-placeholder {
   color: inherit;
 }

 ::-moz-input-placeholder {
   color: inherit;
 }

 ::-ms-input-placeholder {
   color: inherit;
 }


 .header__right__button {
   display: flex;
   align-items: center;
 }

 .header__right__button .header__btn {
   margin-right: 50px;
   margin-top: 5px;
   position: relative;
 }

 .header__right__button .header__btn a span {
   color: var(--white-color);
   font-size: 25px;
 }

 header.main-header.style-one {
   position: absolute;
   left: 0px;
   top: 0px;
   width: 100%;
   background: transparent;
 }

 .header__right__button .header__btn:nth-child(3):before {
   display: none;
 }

 .header__right__button .header__btn:before {
   position: absolute;
   content: "0";
   background: var(--secondary-color);
   height: 16px;
   width: 16px;
   color: var(--white-color);
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   font-size: 8px;
   right: -10px;
   top: -7px;
 }

 .tooltips {
   position: relative;
 }

 .tooltips .tooltiptext {
   visibility: hidden;
   width: 76px;
   height: 20px;
   background: var(--secondary-color);
   border-radius: 20px;
   color: var(--white-color);
   justify-content: center;
   font-size: 13px;
   display: flex;
   align-items: center;
   text-align: center;
   padding: 5px 0;
   position: absolute;
   z-index: 1;
   top: 88%;
   left: 50%;
   margin-left: -38px
 }

 .tooltip-bottom:after {
   content: "";
   position: absolute;
   bottom: 100%;
   left: 50%;
   margin-left: -5px;
   border-width: 5px;
   border-style: solid;
   border-color: transparent transparent var(--secondary-color) transparent;
 }

 .tooltips:hover .tooltiptext {
   visibility: visible;
 }

 /*
* 15. hidden sidebar style
*/

 .hidden-sidebar {
   position: fixed;
   top: 100px;
   right: -282px;
   width: 100%;
   height: 100vh;
   z-index: 9999;
   max-width: 282px;
   background: var(--white-color);
   -webkit-box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.1);
   box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.1);
   padding: 40px 37px;
   -webkit-transition: -webkit-transform .5s ease;
   transition: -webkit-transform .5s ease;
   -o-transition: transform .5s ease;
   transition: transform .5s ease;
   transition: transform .5s ease, -webkit-transform .5s ease;
 }

 .hidden-sidebar .compare__content h5 {
   padding-bottom: 34px;
   position: relative;
 }

 .hidden-sidebar .compare__content .compare__text {
   display: flex;
   margin-bottom: 21px;
 }

 .hidden-sidebar .compare__content .compare__text .image_block {
   margin-right: 12px;
 }

 .hidden-sidebar .compare__content .compare__text .image_block img {
   border-radius: 5px;
 }

 .hidden-sidebar .compare__content h5:after {
   content: "";
   background: rgba(0, 0, 0, 0.1);
   display: inline-block;
   width: 100%;
   height: 1px;
   position: absolute;
   left: 0;
   bottom: 20px;
 }

 .hidden-sidebar .compare__content a {
   font-weight: 700;
   color: var(--theme-color);
 }

 .compare__btn {
   display: flex;
   padding-top: 9px;
 }

 .compare__btn .btn__one button {
   background: var(--theme-color);
   border-radius: 5px;
   width: 106px;
   height: 49px;
   color: var(--white-color);
 }

 .compare__btn .btn__two button {
   width: 106px;
   height: 49px;
   background: var(--white-color);
 }

 .hidden-sidebar.open {
   -webkit-transform: translate3d(-282px, 0, 0);
   transform: translate3d(-282px, 0, 0);
 }

 .sidebar-social-network {
   margin-top: 30px;
   display: flex;
   align-items: center;
 }

 .sidebar-social-network .title__social h6 {
   color: var(--white-color);
   font-size: 18px;
 }

 .sidebar-social-network .social____media .sidebar__media__icon {
   display: inline-block;
 }

 .sidebar-social-network .social____media .sidebar__media__icon a {
   padding: 0px 21px 0px;
   color: var(--white-color);
   font-size: 18px;
   transition: all 500ms ease;
 }

 .sidebar-social-network .social____media .sidebar__media__icon a:hover {
   color: var(--theme-color);
 }

 .sidebar__media {
   margin-left: 21px;
 }

 .hidden-sidebar .close-button {
   position: absolute;
   right: 0px;
   top: 0px;
   z-index: 11111;
 }

 .hidden-sidebar .sidebar-content {
   width: 100%;
   margin-top: 40px;
   margin-bottom: 40px;
 }

 .hidden-sidebar .sidebar-content h3,
 .hidden-sidebar .sidebar-content p {
   margin: 0;
 }

 .side-nav {
   position: absolute;
   z-index: 1111;
   cursor: pointer;
 }

 .hidden-sidebar .close-button:before {
   position: absolute;
   top: 30px;
   right: 30px;
   cursor: pointer;
   color: var(--white-color);
   content: "x";
   width: 50px;
   height: 50px;
   background-color: var(--theme-color);
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
 }

 .side-nav.two {
   position: fixed;
   right: 0px;
   top: 50%;
   transform: translate(0px, 50%);
   transition: all 400ms ease;
 }

 .side-nav.two .sidenav-btn-box {
   background: var(--primary-color);
   width: 70px;
   height: 70px;
   border-radius: 35px 0px 0px 35px;
   display: flex;
   justify-content: center;
   align-items: center;
 }

 .side-nav.two a {
   width: 44px;
   height: 44px;
   background: var(--white-color);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   position: relative;
 }

 .side-nav.two a:after {
   position: absolute;
   content: "3";
   background: var(--secondary-color);
   height: 25px;
   width: 25px;
   color: var(--white-color);
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   font-size: 8px;
   top: -22px;
   left: -12px;
 }

 .side-nav.two a span {
   color: var(--secondary-color);
   font-size: 25px;
 }

 .side-nav.two.hiddenbtn {
   right: 14.5%;
   transition: all 500ms ease;
 }

 /*
* 15. hidden sidebar style
*/

 /* banner__one */

 .banner__one .banner__one__content {
   display: flex;
   margin: 0px 120px;
   justify-content: space-between;
 }

 .banner__one .image-layer-01 {
   width: 100vh;
   height: 100vh;
   left: 0;
   bottom: 0;
   position: absolute;
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   background-repeat: repeat-x;
   animation: slide 100s linear infinite;
   -webkit-animation: slide 100s linear infinite;
 }

 @keyframes slide {
   from {
     background-position: 0 0;
   }

   to {
     background-position: 1920px 0;
   }
 }

 @-webkit-keyframes slide {
   from {
     background-position: 0 0;
   }

   to {
     background-position: 1920px 0;
   }
 }

 .banner__one .image-layer-02 {
   width: 100vh;
   height: 100vh;
   position: absolute;
   background-repeat: no-repeat;
   animation: zoom-fade 8s infinite linear;
 }

 .banner__one .anim-icon .icon.icon-04 {
   width: 230px;
   height: 100vh;
   right: 133px;
   top: 222px;
   z-index: 1;
 }

 .banner__one {
   background-color: var(--theme-color);
   overflow: hidden;
 }

 .banner__one .banner__one__content .banner__one__left {
   padding: 180px 0px 152px 0px;
   max-width: 714px;
   margin-left: 20px;
 }

 .banner__one .banner__one__content .banner__one__right {
   position: relative;
 }

 .banner__one .banner__one__content .banner__one__right .image__two {
   position: absolute;
   bottom: 100px;
   z-index: 11;
   left: -20%;
 }

 .banner__one .banner__one__content .banner__one__right .image__one {
   padding-top: 130px;
 }

 .banner__one .banner__one__content .banner__one__right .image__one img {
   border-radius: 296px 296px 0px 0px;
   margin-top: 22px;
   margin-right: 19px;
 }

 .banner__one .banner__one__content .banner__one__right .image__one .image-box {
   border: 1px solid var(--white-color);
   border-radius: 293px 293px 0px 0px;
 }

 .banner__one .banner__one__content .banner__one__right .image__two img {
   border: 10px solid var(--white-color);
   border-radius: 20px;
 }

 .banner__one .banner__one__content .banner__one__left .main__title h1 {
   color: var(--white-color);
 }

 .banner__one .banner__one__content .banner__one__left .sub__title span {
   color: var(--white-color);
 }

 .banner__one .banner__one__content .banner__one__left .main__title span {
   color: var(--white-color);
 }

 .banner__tab__section {
   padding: 62px 0px 12px;
   z-index: 99;
   position: relative;
 }

 .banner__tab__section li.tab-btn {
   background: var(--primary-color);
   border-radius: 5px 5px 0px 0px;
   width: 76px;
   height: 43px;
   display: inline-block;
   padding: 7px 25px;
   cursor: pointer;
   margin-right: 5px;
 }

 .banner__tab__section .tabs-content .tab {
   background: var(--white-color);
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
   border-radius: 0px 5px 5px 5px;
   padding: 24px 70px 27px 20px;
 }

 .banner__tab__section .tabs-content .tab .property__form .reserve-form {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
 }

 .property__form .theme-btn-one span {
   color: var(--white-color);
   font-size: 22px;
 }

 .banner__tab__section li.tab-btn.active-btn {
   background: var(--secondary-color);
 }

 .banner__tab__section li.tab-btn span {
   color: var(--white-color);
 }

 .property__form .theme-btn-one {
   top: 0;
   right: 0px;
   display: flex;
   justify-content: center;
   align-items: center;
   position: absolute;
   border-radius: 0px 5px 5px 0px;
   width: 62px;
   height: 119px;
 }

 .property__form .theme-btn-one:before {
   display: none;
 }

 .property__form .top__title .icon span {
   font-size: 12px;
 }

 .banner__tab__section .tabs-content .tab .form-group label {
   font-weight: 700;
   color: var(--higer-secondary-color);
 }

 .property__form .top__title {
   display: flex;
   margin-bottom: 5px;
 }

 .property__form .top__title .icon {
   margin-right: 10px;
   width: 25px;
   height: 25px;
   background: var(--theme-color);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
 }

 .property__form .top__title .icon span {
   color: var(--white-color);
 }

 .banner__tab__section .tabs-content .nice-select {
   border-top: none;
   border-left: none;
   border-right: none;
   padding-right: 50px;
 }

 .property__form .form-group {
   width: 195px;
 }

 .banner__tab__section .nice-select:after {
   right: 0px;
   margin-top: -2px;
 }

 .property__form .theme-btn-one span {
   color: var(--white-color);
   font-size: 22px;
 }

 .apartment_number h5 {
   color: var(--white-color);
   margin-right: 10vh;
 }

 .apartment_number h5 span {
   color: var(--primary-color);
 }

 .banner__botom__section {
   padding-top: 41px;
 }

 .banner__botom__section .bottom__content .content__block {
   margin-right: 60px;
   position: relative;
 }

 .banner__botom__section .bottom__content .content__block:first-child:after {
   display: none;
 }

 .banner__botom__section .bottom__content .content__block:after {
   content: "";
   position: absolute;
   width: 1px;
   height: 62px;
   background: rgba(255, 255, 255, 0.5);
   top: 0;
   left: -30px;
 }

 .property__form .form-group:nth-child(2) .top__title .icon {
   background: var(--secondary-color);
 }

 .property__form .form-group:nth-child(3) .top__title .icon {
   background: var(--primary-color);
 }

 .banner__botom__section .bottom__content .content__block:last-child {
   margin-right: 0px;
 }

 .banner__botom__section .bottom__content {
   display: flex;
 }

 .banner__botom__section .bottom__content .content__block:first-child {
   display: flex;
   margin-right: 82px;
 }

 .banner__botom__section .bottom__content .content__block:first-child img {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   border: 5px solid var(--white-color);
   box-shadow: 0px 4px 20px rgb(0 0 0 / 25%);
   margin-right: -22px;
 }

 .banner__botom__section .bottom__content .content__block p {
   color: var(--white-color);
 }

 .banner__botom__section .bottom__content .content__block p span {
   color: var(--secondary-color);
 }

 .banner__botom__section .bottom__content .content__block p:first-child {
   font-weight: 700;
 }

 .banner__one .banner__one__content .banner__one__left .main__title h1 span {
   position: relative;
   z-index: 1;
 }

 .banner__one .banner__one__content .banner__one__left .main__title h1 span:after {
   position: absolute;
   content: "";
   width: 354px;
   height: 50px;
   display: block;
   background-image: url(../images/shape/title-shape.svg);
   left: 50%;
   transform: translate(-50%);
   top: 65%;
   transition: all 500ms ease;
   background-repeat: no-repeat;
   z-index: -1;
 }

 .banner__one .anim-icon .icon.icon-01 {
   width: 152px;
   height: 142px;
   top: 119px;
   right: 519px;
 }

 .banner__one .anim-icon .icon.icon-02 {
   width: 157px;
   height: 169px;
   top: 333px;
   right: 777px;
 }

 .banner__one .anim-icon .icon.icon-03 {
   width: 118px;
   height: 97px;
   bottom: 202px;
   left: 887px;
 }

 /* find__places */

 .find__places__block {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   justify-content: center;
 }

 .find__places__block .find__places__left .inner__image {
   border: 5px solid var(--white-color);
   filter: drop-shadow(0px 4px 20px rgba(158, 158, 158, 0.25));
   border-radius: 50%;
 }

 .find__places .owl-nav {
   display: none;
 }

 .find__places .anim-icon .icon-01 {
   top: 112px;
   left: 72px;
   width: 245px;
   height: 177px;
 }

 .find__places .anim-icon .icon-02 {
   top: 188px;
   right: 199px;
   width: 200px;
   height: 216px;
 }

 .find__places .anim-icon .icon-03 {
   width: 191px;
   height: 178px;
   top: 30px;
   right: 30px;
 }

 .find__places__block .find__places__left .inner__image {
   border: 5px solid var(--white-color);
   filter: drop-shadow(0px 4px 20px rgba(158, 158, 158, 0.25));
   border-radius: 50%;
 }

 .find__places .container {
   overflow: hidden;
 }

 .find__places .owl-stage-outer {
   overflow: visible;
 }

 .find__places .find-places {
   padding-top: 106px;
 }

 .find__places__block .find__places__left {
   margin-right: 15px;
 }

 .find__places__block .find__places__right p.one {
   font-weight: 700;
   color: var(--theme-color);
 }

 .find__places .owl-theme .owl-dots {
   padding-top: 55px;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .find__places .owl-theme .owl-dots .owl-dot {
   display: inline-block !important;
   cursor: pointer;
 }

 .find__places .owl-theme .owl-dots .owl-dot span {
   background: var(--theme-color);
   border-radius: 6.5px;
   width: 10px;
   height: 5px;
 }

 .find__places .owl-theme .owl-dots .owl-dot.active span {
   width: 30px;
   height: 8px;
   background: var(--secondary-color);
 }

 .find__places__left .inner__image img {
   width: 100px;
   height: 100px;

   filter: drop-shadow(0px 4px 20px rgba(158, 158, 158, 0.25));
 }




 /* sold__section */

 .swiper-container-4 {
   width: 100%;
   height: 368px;
   margin-bottom: 90px;
   overflow: hidden;
 }

 .sold__right__content .sec-title {
   padding-bottom: 79px;
 }

 .sold__right__content {
   background: var(--white-color);
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
   border-radius: 0px 30px 30px 0px;
   padding: 60px 75px;
 }

 .sold__section {
   position: relative;
 }

 .sold__section .anim-icon .icon.layer-bg {
   width: 100%;
   height: 100%;
   background-position: center;
   background-size: cover;
 }

 .sold__section .container {
   padding-bottom: 140px;
 }

 .sold__left__img {
   width: 100%;
   height: 100%;
   border-radius: 30px 0px 0px 30px;
 }

 .sold__section .swiper__btn {
   display: inline-block;
 }

 .sold__section .arrows {
   position: absolute;
   bottom: 60px;
   left: 75px;
   z-index: 1000000;
   display: flex;
 }

 .sold__section .swiper__btn {
   display: flex;
   width: 40px;
   justify-content: center;
   height: 40px;
   align-items: center;
   background: var(--white-color);
   box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
   margin-right: 7px;
   transition: all 500ms ease;
 }

 .sold__section .swiper__btn:hover {
   background: var(--secondary-color);
 }

 .sold__section .swiper__btn:hover a span {
   color: var(--white-color);
 }

 .sold__section .arrowbtn {
   font-size: 16px;
   transition: all 500ms ease;
 }

 .sold__right__content .content__block h3 {
   font-weight: 800;
   padding: 6px 0px;
   color: var(--secondary-color);
 }

 .sold__right__content .swiper-slide:after {
   content: "";
   border-bottom: 1px solid rgba(0, 0, 0, 0.3);
   position: absolute;
   width: 100%;
   top: 97%;
 }

 .parallax-scene {
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
 }

 /* cities__section */
 .cities__section {
   padding: 0px 120px 0px;
 }

 .cities__section .sec-title {
   padding-bottom: 106px;
 }

 .cities__section.three .cities-carousel:after {
   display: none;
 }

 .cities__section .cities-carousel:after {
   content: "";
   background: #FFF5F5;
   width: 1220px;
   height: 592px;
   position:
     absolute;
   top: 9px;
   z-index: -1;
   left: -120px;
 }

 .cities__block .inner__box {
   background: var(--white-color);
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
   border-radius: 20px 20px 0px 0px;
   padding: 16px 16px 0px;
   display: block;
   overflow: hidden;
   position: relative;
   transition: all 500ms ease;
 }

 .cities__block .inner__image img {
   width: 100%;
   border-radius: 20px 20px 0px 0px;
 }

 .cities__block .inner__box:hover img {
   opacity: 0.9;
   transform: scale(1.1) rotate(1deg);
 }

 .cities__block .inner__box .image {
   position: relative;
   display: block;
   overflow: hidden;
   border-radius: 20px 20px 0px 0px;
 }

 .cities__block .inner__box .cities__text {
   padding: 30px 0px;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 .cities__block .inner__box .cities__text .location span {
   position: absolute;
   top: 8px;
 }

 .cities__block .inner__box .cities__text .location h5:hover {
   color: #FB8C35;
 }

 .cities__block .inner__box .cities__text .location h5 {
   padding-left: 24px;
   transition: all 500ms ease;
 }

 .cities__block .inner__box .cities__text .location {
   position: relative;
 }

 .cities__block .inner__box .cities__text .location span {
   color: var(--primary-color);
 }

 .cities__block .inner__box .cities__text .view__more a span {
   margin-left: 11px;
   margin-top: 2px;
 }

 .cities__block .inner__box .cities__text .view__more a {
   display: flex;
   align-items: center;
 }

 .cities__block .inner__box .cities__text .view__more a:hover {
   letter-spacing: 0.9px;
 }

 .cities__block:hover .inner__box {
   transform: translateY(30px);
 }

 .cities__section .cities__block {
   padding-bottom: 70px;
 }

 .cities__block .inner__box:hover .cities__text .view__more a span,
 .cities__block .inner__box:hover .cities__text a {
   font-weight: 700;
 }

 .cities__section .owl-carousel .owl-stage-outer {
   overflow: visible;
 }

 .cities__section .owl-carousel .owl-item {
   opacity: 0;
   visibility: hidden;
   transition: all 500ms ease;
 }

 .cities__section .owl-carousel .owl-item.active {
   visibility: visible;
   opacity: 1;
 }

 .cities__section .owl-theme .owl-dots {
   display: flex;
   justify-content: center;
   align-items: center;
   padding-bottom: 43px;
 }

 .cities__section .owl-theme .owl-dots .owl-dot span {
   background: #D9D9D9;
   display: block;
   margin: 0px 5px 0px 5px;
   transition: opacity 200ms ease 0s;
   width: 15px;
   border-radius: 50%;
   height: 15px;
 }

 .cities__section .owl-theme .owl-dots .owl-dot.active span {
   background: var(--theme-color);
   width: 20px;
   height: 20px;
   border: 3px solid var(--white-color);
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
 }

 .cities__section .anim-icon .icon-01 {
   width: 191px;
   height: 234px;
   top: -140px;
   right: 120px;
 }

 .cities__section .anim-icon .icon-02 {
   width: 191px;
   height: 234px;
   top: 0px;
   right: 120px;
 }

 .cities__block .inner__box .cities__text .view__more a:hover {
   color: #FB8C35;
 }


 /* about-section*/

 .about__section {
   overflow: hidden;
   background-color: #f7f7f7;
 }

 .about__section .normal__text p {
   padding: 86px 0px 31px;
 }

 .about__section .sell__list li {
   padding-bottom: 20px;
 }

 .about__section .sell__list li:last-child {
   padding-bottom: 0px;
 }

 .about__section .sell__list li span {
   margin-right: 20px;
 }

 .about__section .home__pack {
   display: flex;
   padding-top: 30px;
 }

 .about__section .home__pack .service__list {
   margin-right: 53px;
 }

 .about__section .home__pack .service__list .text {
   padding-top: 7px;
 }

 .about__section .home__pack .service__list:last-child {
   margin-right: 0px;
 }

 .about__section .home__pack .icon {
   width: 70px;
   height: 70px;
   background: #FFF4F4;
   border: 5px solid var(--white-color);
   box-shadow: 0px 4px 20px rgba(186, 174, 174, 0.25);
   border-radius: 50%;
   display: flex;
   position: relative;
   justify-content: center;
   align-items: center;
   margin: 0 auto;
 }

 .service__list:hover .icon:before {
   width: 100%;
   height: 100%;
 }

 .service__list:hover .icon span {
   color: var(--white-color);
 }

 .service__list .icon:before {
   position: absolute;
   content: '';
   width: 0;
   height: 0;
   background: var(--secondary-color);
   border-radius: 50%;
   transition: all 500ms ease;
 }

 .about__section .home__pack .icon span {
   font-size: 26px;
   z-index: 1;
 }

 .about__section .home__pack .text span {
   font-weight: 700;
   padding-top: 10px;
 }

 .about__section .home__pack .home__list {
   margin-right: 53px;
 }

 .about__section .about_right_section {
   padding-top: 8px;
 }

 .about__section .about_right_section .image__section__two {
   display: flex;
   padding-top: 10px;
 }

 .about__section .about_right_section .image__section__two .inner__image {
   padding-right: 10px;
 }

 .about__section .about_right_section .image__section__two .inner__image:last-child {
   padding-right: 0px;
 }

 .about__section .anim-icon .icon.icon-01 {
   width: 130px;
   height: 115px;
   top: 40px;
   right: 218px;
 }

 .about__section .inner__image {
   position: relative;
   display: block;
   overflow: hidden;
 }

 .about__section .inner__image .image {
   position: relative;
   display: block;
   overflow: hidden;
 }

 .about__section .inner__image .image::after {
   position: absolute;
   top: 50%;
   left: 50%;
   z-index: 1;
   display: block;
   content: '';
   width: 0;
   height: 0;
   background: rgba(255, 255, 255, .2);
   border-radius: 0%;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   opacity: 0;
 }

 .about__section .inner__image:hover .image::after {
   -webkit-animation: circle .95s;
   animation: circle .95s;
 }

 @-webkit-keyframes circle {
   0% {
     opacity: 1;
   }

   40% {
     opacity: 1;
   }

   100% {
     width: 200%;
     height: 200%;
     opacity: 0;
   }
 }

 @keyframes circle {
   0% {
     opacity: 1;
   }

   40% {
     opacity: 1;
   }

   100% {
     width: 200%;
     height: 200%;
     opacity: 0;
   }
 }



 .propsuraksha-section {
   padding: 60px 15px;
   margin-top: 5rem;
   background-color: #f7f7f7;

 }

 .propsuraksha-section .content-col {
   padding-right: 30px;
 }

 .propsuraksha-section h2 {
   font-size: 32px;
   font-weight: 700;
   margin-bottom: 20px;
   color: #1a1a1a;
 }

 .propsuraksha-section p {
   font-size: 19px;
   line-height: 1.7;
   color: #444;
   padding-top: 10px;
 }

 .responsive-img {
   width: 100%;
   height: auto;
   border-radius: 8px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 /* Mobile responsiveness */
 @media (max-width: 767px) {
   .propsuraksha-section .content-col {
     padding-right: 0;
     margin-bottom: 30px;
   }

   .propsuraksha-section h2 {
     font-size: 26px;
     text-align: center;
   }

   /* .propsuraksha-section p {
    text-align: justify;
  } */
 }


 /* propertiest section */

 .propertiest__section .sec-title {
   padding: 100px 0px 87px;
 }

 .propertiest__section .sec-title .sub__title span {
   color: var(--white-color);
 }

 .propertiest__section .sec-title h2 span,
 .propertiest__section .sec-title h2 {
   color: var(--white-color);
 }

 .propertiest__section:after {
   content: "";
   background: var(--theme-color);
   position: absolute;
   width: 100%;
   height: 771px;
   display: inline-block;
   top: 0px;
   z-index: -1;
 }

 .propertiest__section .tabs-box .tab-btns {
   justify-content: center;
   display: flex;
 }

 .propertiest__section .tab-btn.active-btn .tab___all {
   color: var(--secondary-color) !important;
 }

 .propertiest__section .tabs-box .tab-btns .tab___all {
   color: var(--white-color);
   font-weight: 700;
 }

 .propertiest__section .tabs-box .tab-btn {
   margin-right: 70px;
   cursor: pointer;
 }

 .propertiest__section .tabs-box .tab-btn:last-child {
   margin-right: 0px;
 }

 .propertiest__section .inner-box {
   background: var(--white-color);
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
   border-radius: 20px 20px 0px 0px;
   padding: 20px 20px 0px;
 }

 .propertiest__section .inner-box .image-box img {
   width: 100%;
 }

 .propertiest__section .tabs-content {
   padding-top: 60px;
 }

 .propertiest__content {
   margin: 0px 15px;
   padding: 0px 15px;
 }

 .propertiest__section .inner-box .image-box {
   position: relative;
 }

 .image__icon__box {
   position: absolute;
   top: 20px;
   right: 17px;
 }

 .image__icon__box ul li a {
   width: 35px;
   height: 35px;
   background: rgba(255, 255, 255, 0.2);
   border: 1px solid rgba(255, 255, 255, 0.4);
   border-radius: 50%;
   margin-bottom: 15px;
   display: flex;
   justify-content: center;
   align-items: center;
 }

 .image__icon__box ul li a:hover:before {
   width: 35px;
   height: 35px;
 }

 .image__icon__box ul li a:before {
   position: absolute;
   content: "";
   background: var(--secondary-color);
   width: 0px;
   height: 0px;
   border-radius: 50%;
   border-color: var(--secondary-color);
   transition: all 500ms ease;
 }

 .image__icon__box ul li span {
   z-index: 1;
   color: var(--white-color);
 }

 .price__section {
   position: absolute;
   bottom: 0;
   display: flex;
   justify-content: space-between;
   right: 16px;
   left: 23px;
   bottom: 21px;
 }

 .price__section span {
   color: var(--white-color);
 }

 .price__section .price {
   background: var(--secondary-color);
   border-radius: 5px;
   padding: 5px 20px;
 }

 .price__section .img__count {
   background: var(--primary-color);
   border-radius: 5px;
   padding: 5px 13px;
   display: flex;
   align-items: center;
 }

 .price__section .price span {
   font-weight: 700;
 }

 .price__section .img__count span.icon-icon-25 {
   margin-right: 4px;
   font-size: 20px;
 }

 .price__section .img__count span {
   color: var(--white-color);
 }

 .price__section .price span .year {
   font-weight: 400;
 }

 .propertiest__section .review__section {
   display: flex;
   justify-content: space-between;
   padding-bottom: 15px;
 }

 .propertiest__section .lower-content {
   padding: 25px 10px 40px;
 }

 .propertiest__section .review__section .catagory {
   background: var(--theme-color);
   border-radius: 5px;
   padding: 0px 10px;
 }

 .propertiest__section .review__section .catagory span {
   color: var(--white-color);
 }

 .propertiest__section .review__section .review span {
   margin-right: 10px;
 }

 .propertiest__section .review__section .review span:first-child:before {
   color: var(--secondary-color);
   font-size: 17px;
 }

 .propertiest__section .lower-content .more__details {
   margin: 30px 0px;
   border: 1px solid rgba(0, 0, 0, 0.1);
   display: flex;
   justify-content: space-between;
   padding: 10px 20px 10px 20px;
   align-items: center;
 }

 .propertiest__section .lower-content .more__details li span {
   margin-right: 12px;
   font-size: 20px;
 }

 .propertiest__section .lower-content .author-info {
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 .propertiest__section .lower-content .author-info .author {
   display: flex;
   align-items: center;
 }

 .propertiest__section .lower-content .author-info .author-thumb img {
   border-radius: 50%;
   margin-right: 20px;
   width: 50px;
   height: 50px;
 }

 .propertiest__section .view__btn {
   display: flex;
   align-items: center;
 }

 .propertiest__section .view__btn a {
   display: flex;
   align-items: center;
   transition: all 500ms ease;
 }

 .propertiest__section .view__btn span {
   font-size: 19px;
   margin-top: 2px;
   margin-left: 10px;
   transition: all 500ms ease;
 }

 .propertiest__section .view__btn a:hover {
   letter-spacing: 0.9px;
 }

 .image__icon__box ul li a {
   padding: 2px 8px;
 }

 .cities__block .inner__box:hover img {
   opacity: 0.9;
   transform: scale(1.1) rotate(1deg);
 }

 .banner__two__slider__last .image-box img {
   width: 100%;
 }

 .inner-box .image-box .image img {
   width: 100%;
 }

 .inner-box:hover .image-box .image:after {
   -webkit-animation: circle .95s;
   animation: circle .95s;
 }

 .inner-box .image-box .image:after {
   position: absolute;
   top: 50%;
   left: 50%;
   z-index: 1;
   display: block;
   content: '';
   width: 0;
   height: 0;
   background: rgba(255, 255, 255, .2);
   border-radius: 0%;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   opacity: 0;
 }

 .inner-box .image-box .image {
   position: relative;
   display: block;
   overflow: hidden;
   /* border-radius: 20px 20px 0px 0px; */
 }

 .propertiest__section .inner-box:hover img {
   opacity: 0.9;
   transform: scale(1.1) rotate(1deg);
 }

 .propertiest__section .properties__btn {
   padding-top: 60px;
   text-align: center;
 }

 .propertiest__section .properties__btn .btn-1 span {
   background-color: var(--theme-color);
 }

 .propertiest__section .properties__btn a {
   border: 1px solid var(--theme-color);
   border-radius: 5px !important;
   background: transparent;
   color: var(--theme-color) !important;
   font-weight: 700 !important;
 }

 .propertiest__section .properties__btn a:hover {
   color: var(--white-color) !important;
 }

 /* service */

 .service__right .owl-dots {
   display: none;
 }

 .service__right .owl-nav {
   display: none;
 }

 .banner-thumb-inner {
   position: absolute;
   right: 60px;
   bottom: 70px;
 }

 .banner-thumb-inner .single-item {
   margin-right: 18px;
 }

 .banner-thumb-inner .single-item img {
   border-radius: 10px;
   border: 5px solid var(--white-color);
 }

 .service__section .tab-btn.active-btn {
   background: var(--theme-color);
 }

 .service__section .tabs-box .tab {
   background: #F9F9F9;
   border-radius: 20px;
 }

 .service__section .tab-btn.active-btn span {
   color: var(--white-color);
 }

 .service__section .tab-btn {
   width: 195px;
   height: 176px;
   background: #FFF5F5;
   border-radius: 5px;
   text-align: center;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-right: 24px;
   cursor: pointer;
   position: relative;
   overflow: hidden;
   z-index: 1;
   transition: all 500ms ease;
 }

 .service__section .tab-btns {
   display: flex;
   position: relative;
   overflow: hidden;
 }

 /* .service__section .tab-btn-box{
  padding-bottom: 40px;
} */
 .service__section .tab-btn .outer__icon span {
   font-size: 76px;
 }

 .service__section .tab-btn:last-child {
   margin-right: 24px;
 }

 .service__left {
   background: #F9F9F9;
   border-radius: 20px;
   padding: 117px 24px 100px 73px;
 }

 .service__section .anim-icon .icon.icon-01 {
   width: 245px;
   height: 177px;
   top: 144px;
   left: 20px;
 }

 .service__section .anim-icon .icon.icon-02 {
   width: 251px;
   height: 171px;
   bottom: 71px;
   right: 187px;
   z-index: 1;
   animation: zoom-fade 2s infinite linear;
 }

 .service__left__content h3 {
   padding-bottom: 18px;
 }

 .service__left__content p+p {
   padding-top: 20px;
   padding-bottom: 58px;
 }

 .service__left__content .service__pack {
   display: flex;
 }

 .service__left__content .service__pack .service__list {
   margin-right: 41px;
   text-align: center;
 }

 .service__left__content .service__pack .service__list:last-child {
   margin-right: 0px;
 }

 .service__left__content .service__pack .service__list .icon {
   background: #FFF4F4;
   border: 5px solid var(--white-color);
   box-shadow: 0px 4px 20px rgba(186, 174, 174, 0.25);
   width: 70px;
   height: 70px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   position: relative;
   margin-bottom: 7px;
 }

 .service__left__content .service__pack .service__list .icon span {
   font-size: 26px;
   z-index: 1;
 }

 .service__left__content .service__pack .service__list .text {
   font-weight: 700;
 }

 .service__right .banner-carousel .slide-item img {
   height: 636px;
   border-radius: 0px 20px 20px 0px;
 }

 .service__section .tab-btn:before {
   position: absolute;
   content: '';
   width: 100%;
   height: 100%;
   background: var(--theme-color);
   box-shadow: 4px 5px 20px rgb(131 129 129 / 10%);
   border-radius: 5px;
   left: 0px;
   top: 0px;
   opacity: 0;
   transform: translateY(-100%);
   transition: all 500ms ease;
   z-index: -1;
 }

 .service__section .tab-btn:hover:before {
   opacity: 1;
   transform: translateY(0);
 }

 .service__section .tab-btn:hover span {
   color: var(--white-color);
 }

 .propertiest__section .anim-icon .icon-01 {
   width: 324px;
   height: 152px;
   right: 30px;
   top: 40px;
 }

 .service__two__content .icon__box .icon__outer .icon__bg:before {
   position: absolute;
   content: '';
   width: 0;
   height: 0;
   background: #FFF5F5;
   border-radius: 50%;
   transition: all 500ms ease;
 }

 .service__two__content .inner__content:hover .icon__outer .icon__bg:before {
   width: 100%;
   height: 100%;
 }

 /* work__section */

 .work__section .sec-title {
   padding-bottom: 136px;
 }

 .work__section .inner__box .work__imgae img {
   width: 120px;
   height: 120px;
   border-radius: 50%;
   border: 10px solid var(--white-color);
   filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.1));
 }

 .work__section .inner__box {
   text-align: center;
 }

 .work__section .inner__box .work__imgae {
   padding-bottom: 30px;
   position: relative;
 }

 .work__section .inner__box .work__text h4 {
   padding-bottom: 10px;
 }

 .work__section .inner__box .work__imgae:after {
   content: "01";
   position: absolute;
   top: 0;
   right: 50px;
   background: var(--theme-color);
   border: 3px solid var(--white-color);
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
   width: 60px;
   height: 60px;
   font-weight: 700;
   border-radius: 50%;
   color: var(--white-color);
   display: flex;
   justify-content: center;
   align-items: center;
   transition: all 500ms ease;
 }

 .work__section .inner__box:hover .work__content {
   transform: translateY(20px);
 }

 .work__section .work__content {
   position: relative;
   transition: all 500ms ease;
 }

 .work__section .inner__box:hover .work__imgae img {
   border: 15px solid var(--white-color);
   filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.1));
 }

 .work__section .inner__box:hover .work__imgae:after {
   background: var(--secondary-color);
   right: 45px;
 }

 .work__content .row>*:nth-child(2) .inner__box .work__imgae:after {
   content: "02";
 }

 .work__content .row>*:nth-child(3) .inner__box .work__imgae:after {
   content: "03";
 }

 .work__content .row>*:nth-child(4) .inner__box .work__imgae:after {
   content: "04";
 }

 /* testimonial__section */
 .testimonial__section {
   padding-bottom: 0px;
 }

 .testimonial__section .sec-title {
   padding-bottom: 106px;
 }

 .testimonial__section .layer__bg {
   background: var(--theme-color);
   padding: 100px 0px 120px;
   position: relative;
 }

 .testimonial__section .sec-title span {
   color: var(--white-color);
 }

 .testimonial__section .sec-title h2 {
   color: var(--white-color);
 }

 .testimonial__block {
   text-align: center;
   position: relative;
   padding-top: 40px;
 }

 .testimonial__block .image__box img {
   width: 80px;
   height: 80px;
   border: 4px solid var(--white-color);
   border-radius: 50%;
 }

 .testimonial__block .image__box {
   position: absolute;
   top: 0px;
   left: 50%;
   transform: translate(-50%);
   z-index: 111;
 }

 .testimonial__block .inner__box {
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 10px;
   padding: 50px 38px 34px;
 }

 .testimonial__block .review {
   padding: 20px 0px;
 }

 .testimonial__block .review li {
   display: inline-block;
 }

 .testimonial__block .review span {
   color: var(--white-color);
 }

 .testimonial__block .review li:last-child {
   margin-left: 10px;
 }

 .test__monial__text p {
   color: var(--white-color);
   padding-bottom: 20px;
 }

 .testimonial__block .t__title p {
   color: var(--secondary-color);
 }

 .testimonial__block .t__title h5 {
   color: var(--white-color);
 }

 .testimonial__section .owl-stage-outer .owl-item.center {
   transform: translateY(-60px);
   transition: all 500ms ease;
 }

 .testimonial__section .owl-stage-outer {
   padding-top: 60px;
 }

 .testimonial__block .icon__outer {
   position: absolute;
   bottom: 20px;
   right: 20px;
 }

 .testimonial__block .icon__outer span {
   color: rgba(255, 255, 255, 0.1);
   font-size: 46px;
 }

 .testimonial__section .owl-stage-outer .owl-item.center .inner__box {
   background: rgba(255, 255, 255, 0.2);
   border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .testimonial__section .owl-dots {
   display: none;
 }

 .testimonial__section .owl-nav {
   display: flex;
   position: absolute;
   left: 50%;
   transform: translate(-50%);
   bottom: 0px;
 }

 .testimonial__section .owl-nav .owl-prev {
   margin-right: 7px;
 }

 .testimonial__section .icon.layer-bg {
   width: 712px;
   height: 541px;
   bottom: 0;
   right: -200px;
 }

 .testimonial__slider__right {
   width: 100%;
   height: 100%;
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
 }

 /** location-section **/

 .location-section {
   position: relative;
 }

 .location-section .google-map-area img {
   width: 100%;
 }

 .location-section #contact-google-map {
   position: relative;
   width: 100%;
   height: 708px;
 }

 .location-section .location-inner {
   position: absolute;
   display: block;
   left: 0px;
   top: 0px;
   right: 0px;
   max-width: 1800px;
   padding: 0px 15px;
   width: 100%;
   margin: 0 auto;
   min-height: 708px;
 }

 .location-section .location-inner .single-location-box {
   position: absolute;
 }

 .location-section .location-inner .single-location-box:first-child {
   left: 71px;
   top: 123px;
 }

 .location-section .location-inner .single-location-box:nth-child(2) {
   top: 87px;
   left: 683px;
 }

 .location-section .location-inner .single-location-box:nth-child(3) {
   top: 299px;
   left: 50%;
 }

 .location-section .location-inner .single-location-box:nth-child(4) {
   top: 217px;
   left: 760px;
 }

 .location-section .location-inner .single-location-box:nth-child(5) {
   top: 163px;
   right: 730px;
 }

 .location-section .location-inner .single-location-box:nth-child(6) {
   top: 304px;
   left: 542px;
 }

 .location-section .location-inner .single-location-box:nth-child(7) {
   left: 523px;
   bottom: 155px;
 }

 .location-section .location-inner .single-location-box:nth-child(8) {
   top: 122px;
   right: 555px;
 }

 .location-section .location-inner .single-location-box:nth-child(9) {
   top: 214px;
   right: 454px;
 }

 .location-section .location-inner .single-location-box:nth-child(10) {
   top: 327px;
   right: 465px;
 }

 .location-section .location-inner .single-location-box:nth-child(11) {
   top: 60px;
   right: 243px;
 }

 .location-section .location-inner .single-location-box:last-child {
   right: 85px;
   bottom: 176px;
 }

 .location-section .feature-block-one {
   position: absolute;
   width: 226px;
   left: 47px;
   transform: translateY(-50%);
   top: 50%;
   opacity: 0;
   visibility: hidden;
   z-index: 3;
   transition: all 500ms ease;
 }

 .location-section .location-inner .more__details {
   display: flex;
 }

 .location-section .location-inner .more__details li span {
   margin-right: 10px;
 }

 .location-section .location-inner .more__details li {
   margin-right: 10px;
 }

 .location-section .location-inner .more__details li:last-child {
   margin-right: 0px;
 }

 .location-section .single-location-box.active .feature-block-one {
   left: 50% !important;
   transform: translateX(-50%) !important;
   bottom: 75px !important;
   top: inherit;
 }

 .location-section .single-location-box:hover .feature-block-one,
 .location-section .single-location-box.active .feature-block-one {
   opacity: 1;
   visibility: visible;
   left: 62px;
 }

 .location-section .single-location-box.active .feature-block-one:before {
   position: absolute;
   content: '';
   background-color: var(--white-color);
   width: 10px;
   height: 10px;
   left: 50%;
   bottom: -8px;
   transform: rotate(45deg) translateX(-50%);
 }

 .location-section .single-location-box .feature-block-one:before {
   position: absolute;
   content: '';
   background-color: var(--white-color);
   width: 10px;
   height: 10px;
   left: -8px;
   bottom: 50%;
   transform: rotate(45deg) translateY(-50%);
 }

 .location-section .location-inner .marker-box img {
   position: relative;
   max-width: auto;
   cursor: pointer;
 }

 .location-section .location-inner .marker-box span {
   position: absolute;
   left: 21px;
   top: 12px;
   font-size: 13px;
   color: #0f172b;
   font-weight: 500;
 }

 .feature-section .sec-title h2 {
   margin-bottom: 21px;
 }

 .location-section .feature-block-one .inner-box {
   position: relative;
   display: block;
   overflow: hidden;
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
   border-radius: 20px 20px 0px 0px;
   padding: 10px;
   background-color: var(--white-color);
   transition: all 500ms ease;
 }


 .location-section .feature-block-one .inner-box .image-box {
   position: relative;
   display: block;
   overflow: hidden;
 }

 .location-section .feature-block-one .inner-box .image-box .image {
   position: relative;
   display: block;
   overflow: hidden;
 }

 .location-section .feature-block-one .inner-box .image-box .image::after {
   position: absolute;
   top: 50%;
   left: 50%;
   z-index: 1;
   display: block;
   content: '';
   width: 0;
   height: 0;
   background: rgba(255, 255, 255, .2);
   border-radius: 0%;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   opacity: 0;
 }

 .location-section .feature-block-one .inner-box:hover .image-box .image::after {
   -webkit-animation: circle .95s;
   animation: circle .95s;
 }

 .location-section .feature-block-one .inner-box .image-box .image img {
   width: 100%;
 }

 .location-section .feature-block-one .inner-box .image-box .image:before {
   position: absolute;
   content: '';
   background-color: transparent;
   width: 100%;
   height: 100%;
   left: 0px;
   top: 0px;
   opacity: 0.3;
   z-index: 1;
 }

 .location-section .price__section {
   left: 8px;
   bottom: 6px;
 }

 .location-section .price__section .price span {
   font-weight: 400;
 }

 .location-section .feature-block-one .inner-box .image-box .batch {
   position: absolute;
   left: 30px;
   top: 0px;
   width: 30px;
   height: 42px;
   line-height: 48px;
   text-align: center;
   font-size: 18px;
   color: var(--white-color);
   background-color: #f94c4c;
   z-index: 1;
 }

 .location-section .feature-block-one .inner-box .image-box .batch:before {
   position: absolute;
   content: '';
   background-color: #f94c4c;
   width: 14px;
   height: 4px;
   left: 0px;
   bottom: -4px;
   border-bottom-left-radius: 3px;
   clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
 }

 .location-section .feature-block-one .inner-box .image-box .batch:after {
   position: absolute;
   content: '';
   background-color: #f94c4c;
   width: 14px;
   height: 4px;
   right: 0px;
   bottom: -4px;
   border-bottom-right-radius: 3px;
   clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 0%);
 }

 .location-section .feature-block-one .inner-box .image-box .category {
   position: absolute;
   left: 70px;
   top: 10px;
   font-size: 12px;
   line-height: 26px;
   font-weight: 500;
   color: var(--white-color);
   text-transform: uppercase;
   border-radius: 3px;
   padding: 0px 14px;
   text-align: center;
   background-color: #f2b241;
   z-index: 1;
 }

 .location-section .feature-block-one .inner-box .lower-content {
   position: relative;
   display: block;
 }

 .location-section .feature-block-one .inner-box .lower-content .author-info .buy-btn {
   margin-top: 7px;
 }

 .location-section .feature-block-one .inner-box .title-text h4 {
   font-size: 16px;
   font-weight: 700;
   line-height: 29px;
   padding: 10px 0px 5px;
 }

 .location-section .feature-block-one .inner-box .lower-content p {
   margin-bottom: 21px;
 }

 .location-section .feature-block-one .inner-box .lower-content .more-details {
   position: relative;
   display: block;
   margin-bottom: 24px;
 }

 .location-section .feature-block-one .inner-box .lower-content .more-details li {
   position: relative;
   display: inline-block;
   float: left;
   width: 33.333%;
   font-size: 14px;
   line-height: 24px;
   color: #93959e;
   padding-left: 28px;
 }

 .location-section .feature-block-one .inner-box .lower-content .more-details li i {
   position: absolute;
   left: 0px;
   top: 3px;
   font-size: 14px;
 }

 .location-section .feature-block-one .inner-box .lower-content .more-details li:before {
   position: absolute;
   content: '';
   background-color: #e5e7ec;
   width: 1px;
   height: 18px;
   top: 2px;
   right: 12px;
 }

 .location-section .feature-block-one .inner-box .lower-content .more-details li:last-child:before {
   display: none;
 }

 .location-section .feature-block-one .inner-box .lower-content .theme-btn {
   padding: 10.5px 23px;
 }

 .location-section .marker-box {
   background-color: var(--theme-color);
   width: 54px;
   height: 54px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .location-section .feature-section .sec-title {
   margin-bottom: 40px;
 }

 .location-section .feature-section .more-btn {
   position: relative;
   margin-top: 50px;
 }



 /*news-section*/
 .blog__section .inner__content {
   position: relative;
   background: #F2F6F7;
   padding: 140px 0px 140px 50px;
   margin-right: -700px;
   overflow: hidden;
 }

 .blog__section .inner__content .owl-carousel .owl-stage-outer {
   overflow: visible;
 }

 .blog__section .inner__content .owl-carousel .owl-item {
   opacity: 0;
   visibility: hidden;
 }

 .blog__section .inner__content .owl-carousel .owl-item.active {
   visibility: visible;
   opacity: 1;
 }

 .blog__section .news__block__one {
   background: var(--white-color);
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
   border-radius: 20px 20px 0px 0px;
   padding: 20px;
 }

 .blog__content__left {
   padding: 296px 67px 186px 0px;
 }

 .blog__content__left .sec-title {
   padding-bottom: 89px;
 }

 .blog__section .news__btn {
   padding-top: 40px;
   display: flex;
 }

 .blog__section .inner__content .owl-dots {
   display: none;
 }

 .inner-box:hover .image-box img {
   opacity: 0.9;
   transform: scale(1.1) rotate(1deg);
 }

 .news__block__one .author__info {
   padding: 25px 0px 15px;
 }

 .news__block__one .author__info li {
   display: inline-block;
   margin-right: 25px;
 }

 .news__block__one .author__info li:last-child {
   margin-right: 0px;
 }

 .news__block__one .author__info li span {
   font-size: 18px;
   margin-right: 6px;
   color: var(--secondary-color);
 }

 .news__block__one .news__title h3 {
   padding-bottom: 22px;
   font-size: 24px;
 }

 .news__block__one .more__btn {
   padding-bottom: 24px;
   font-weight: 600;
 }

 .news__block__one .more__btn a span {
   margin-left: 9px;
   margin-top: 7px;
   font-size: 18px;
   position: absolute;
   font-weight: 600;
 }

 .blog__section .inner__content .owl-nav {
   display: flex;
   position: absolute;
   top: 50%;
   transform: translate(-50%);
 }

 .blog__section .inner__content .owl-nav {
   display: none;
 }

 .news__block__one .more__btn a:hover {
   letter-spacing: 0.9px;
 }

 .blog__section .anim-icon .icon.layer-bg {
   width: 186px;
   height: 134px;
   left: 76px;
   top: 142px;
 }

 /*news-section end*/




 /* footer one*/


 .main-footer .footer-top {
   background: var(--theme-color);
   padding: 125px 0px 40px;
 }

 .main-footer .footer-column {
   position: relative;
 }

 .main-footer .footer-column .footer-logo img {
   width: 150px;
 }

 .main-footer .footer-column .footer__image {
   display: flex;
   flex-wrap: wrap;
 }

 .main-footer .footer-column .footer__image .lower-content {
   position: absolute;
   left: 0;
   top: 0;
   right: 0;
   bottom: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   transform: scale(0.0);
   background: #004274;
   transition: all 500ms ease;
   opacity: 80%;
 }

 .main-footer .footer-column .footer__image .inner-box:hover .lower-content {
   transform: scale(1.0);
 }

 .footer__image .inner-box:hover .lower-content .view-btn a {
   opacity: 1;
   transform: translateY(0px);
 }

 .footer__image .inner-box .lower-content .view-btn a {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   background: #F2F2F2;
   width: 20px;
   border-radius: 50%;
   opacity: 0;
   height: 20px;
 }

 .main-footer .footer-column .footer__image .inner-box {
   padding: 5px;
   position: relative;
   display: block;
   overflow: hidden;
 }

 .main-footer .footer-column .footer__image .image-box {
   position: relative;
   display: block;
   overflow: hidden;
 }

 .main-footer .icon-layer {
   position: absolute;
   width: 100%;
   height: 100%;
   left: 0;
   bottom: 0;
   background-repeat: repeat-x;
   animation: slide 100s linear infinite;
   -webkit-animation: slide 100s linear infinite;
 }

 .main-footer .footer-bottom {
   background: #00477D;
   /* text-align: center; */
   padding: 35px 0px;
 }

 .footer-widget .widget-content li a {
   color: var(--white-color);
 }

 .footer-widget .widget-title h4 {
   color: var(--white-color);
   margin-bottom: 30px;
 }

 .footer-widget .widget-title p {
   color: var(--white-color);
   margin-bottom: 30px;
 }

 .footer-widget .widget-content li {
   margin-bottom: 20px;
   color: var(--white-color);
 }

 .footer-widget .widget-content li:hover a {
   color: var(--secondary-color);
 }

 .footer-top .widget-content .info-list li {
   color: var(--white-color);
 }

 .footer-widget.left .widget-content {
   padding-top: 26px;
 }

 .footer-widget.left .widget-content li span {
   position: absolute;
   left: 0px;
   top: 7px;
   font-size: 18px;
   color: var(--primary-color);
 }

 .footer-widget.left .widget-content li:last-child span {
   font-size: 15px;
 }

 .footer-widget.left .widget-content li {
   padding-left: 32px;
   position: relative;
   color: white;
 }

 .footer-widget.left .widget-content li a {
   font-weight: 700;
 }

 .main-footer .footer-bottom p {
   color: var(--white-color);
 }

 .main-footer .footer-bottom .copyright a {
   color: #FB8C35;
 }

 .main-footer .footer-bottom .copyright a:hover {
   color: var(--primary-color);
 }



 /*** 

====================================================================
                        Home-Page-Two
====================================================================

***/

 /* header-style-two */

 .main-header.style-two .main-menu .navigation>li>a {
   color: var(--higer-secondary-color);
   text-transform: capitalize;
 }

 .main-header.style-two .header__right__button .header__btn a span {
   color: var(--theme-color);
   font-size: 25px;
 }

 .header__submit__btn a:hover {
   color: var(--white-color) !important;
 }

 .main-header.style-two .main-menu .navigation>li>ul,
 .main-header.style-two .main-menu .navigation>li>.megamenu {
   background: var(--theme-color);
 }

 .main-header.style-two .main-menu .navigation>li>ul>li>a,
 .main-header.style-two .main-menu .navigation>li>.megamenu li>a {
   color: var(--white-color);
 }

 .main-header.style-two .main-menu .navigation>li>ul>li>ul {
   background: var(--theme-color);
 }

 .main-header.style-two .main-menu .navigation>li>ul>li>ul>li>a {
   color: var(--white-color);
 }

 /* banner-style-two */
 .banner__two {
   padding-bottom: 140px;
   max-width: 1920px;
 }

 .banner__two__left {
   padding: 118px 57px 0px 302px;
 }

 .banner__two__left .banner__normal__text {
   padding: 40px 0px;
 }

 .banner__two__left .banner__tab__section {
   padding: 81px 0px 0px;
   margin-right: -143px;
 }

 .banner__two__content .main__title span {
   color: var(--secondary-color);
   font-weight: 300;
 }

 .banner__two__content .main__title span.dots {
   color: var(--theme-color);
 }

 .banner__two__slider .owl-nav {
   display: none;
 }

 .banner__two__left .image-layer-01 {
   position: absolute;
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   width: 1073px;
   height: 956px;
   left: 0;
   bottom: -140px;
 }

 .banner__two__left .icon.icon-02 {
   width: 142px;
   height: 146px;
   top: 17px;
   left: 223px;
 }

 .banner__two__left .icon.icon-01 {
   width: 61px;
   height: 48px;
   left: 554px;
   bottom: 232px;
 }

 /* dream */

 .dream__home {
   z-index: 1;
   position: relative;
 }

 .dream__home__content {
   background: var(--secondary-color);
   border-radius: 10px;
   padding: 77px 80px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: -66px;
 }

 .dream__home__content h2,
 .dream__home__content p {
   color: var(--white-color);
 }

 .dream__home .anim-icon .icon.icon-01 {
   width: 480px;
   height: 225px;
   right: 111px;
 }

 /* blog-two */
 .blog__section__two .sec-title {
   padding-bottom: 106px;
 }

 .blog__section__two .news__block__one .inner-box {
   box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
   border-radius: 10px;
   background: var(--white-color);
   padding: 20px;
 }

 .news__block__one .more__btn a:hover span {
   color: var(--secondary-color);
 }

 .news__block__one .lower__content {
   padding: 0px 10px;
 }

 .blog__section__two .news__two__btn {
   justify-content: center;
   padding-top: 43px;
   display: flex;
 }

 /* testimonial */
 .testimonial__two .inner-box .image-box .image {
   border-radius: 0px;
 }

 .testimonial__two .text p {
   font-family: var(--secondary-font);
   font-style: normal;
   font-size: 20px;
   line-height: 34px;
   color: var(--theme-color);
 }

 .testimonial__two .sec-title {
   padding-bottom: 106px;
 }

 .testimonial__two .icon__outer {
   width: 80px;
   height: 80px;
   background: var(--theme-color);
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
 }

 .testimonial__two .icon__outer span {
   color: var(--white-color);
   font-size: 29px;
 }

 .testimonial__two .review {
   padding: 25px 0px;
 }

 .testimonial__two .review li {
   display: inline-block;
   margin-right: 8px;
 }

 .testimonial__two .review li:last-child {
   margin-right: 0px;
 }

 .testimonial__two .review li span {
   color: var(--secondary-color);
   font-size: 25px;
 }

 .testimonial__two .author__info {
   padding: 33px 0px 21px;
 }

 .testimonial__two .author__info .author__des span {
   color: var(--secondary-color);
 }

 .testimonial__two .anim-icon .icon.icon-01 {
   width: 186px;
   height: 134px;
   top: 134px;
   right: 0px;
 }


 /* brand-section */
 .news__block__one .lower__content .news__text p {
   padding-bottom: 22px;
   color: var(--theme-color);
 }

 .brand__content {
   background: var(--theme-color);
   padding: 133px 0px;
 }

 .brand__section .icon-layer {
   position: absolute;
   width: 1920px;
   height: 238px;
   left: 0;
   bottom: 140px;
   background-position: center;
   background-size: cover;
   background-repeat: repeat-x;
   animation: slide 100s linear infinite;
   -webkit-animation: slide 100s linear infinite;
 }

 .brand__section .image__box {
   margin-right: 10px;
 }

 /* propertiest-section-two */

 .propertiest__section.two {
   margin: 0px;
   padding: 0;
 }

 .propertiest__contents {
   background: #FFF5F5;
 }

 .propertiest__section.two .sec-title .sub__title span,
 .propertiest__section.two .sec-title h2 span,
 .propertiest__section.two .sec-title h2 {
   color: var(--theme-color);
 }

 .propertiest__section.two .sec-title {
   padding: 0px 0px 106px;
 }

 .propertiest__section.two .anim-icon .icon-01 {
   width: 247px;
   height: 238px;
   left: 65px;
   top: 239px;
 }

 /* team-section */


 .our__team .team__block .inner-box .image-box img {
   width: 100%;
 }

 .our__team .team__content {
   padding-right: 73px;
   padding-top: 80px;
 }

 .our__team .sec-title {
   padding-bottom: 106px;
 }

 .our__team .team__content .anim-icon .icon.icon-01 {
   width: 130px;
   height: 115px;
   top: 0;
   right: 0;
 }

 .team__block .lower__content .anim-icon .icon.icon-02 {
   width: 157px;
   height: 116px;
   right: 0px;
   bottom: 0px;
 }

 .our__team .team__content .team__block {
   background: var(--white-color);
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
   border-radius: 20px 20px 0px 0px;
 }

 .team__media ul {
   display: flex;
   justify-content: space-around;
 }

 .team__media ul li:last-child a {
   border-right: none;
 }

 .team__media ul li a {
   padding: 10px 29px;
   cursor: pointer;
   background: #F8F8F8;
   border-right: 1px solid rgba(0, 0, 0, 0.05);
   transition: all 500ms ease;
 }

 .team__media ul li a span {
   color: #ADB5C7;
   font-size: 12px;
   transition: all 500ms ease;
 }

 .team__media ul li a:hover span {
   color: var(--white-color);
 }

 .team__media ul li a:hover {
   background: var(--theme-color);
 }

 .our__team .team__info {
   display: flex;
   align-items: center;
   padding: 22px 35px 35px;
   justify-content: space-between;
   position: relative;
 }

 .our__team .team__media {
   padding: 5px 0px;
 }

 .our__team .team__info .team__right ul {
   display: flex;
 }

 .our__team .team__info .team__right ul li a {
   width: 40px;
   height: 40px;
   background: var(--theme-color);
   border-radius: 50%;
   margin-right: 15px;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 500ms ease;
 }

 .team__content .team__right ul li:hover a {
   background: var(--secondary-color);
 }

 .our__team .team__info .team__right ul li:last-child {
   margin-right: 0px;
 }

 .our__team .team__info .team__right ul li span {
   color: var(--white-color);
 }

 .our__team .team__info p {
   color: var(--secondary-color);
 }

 .our__team .team__info h4 span {
   font-weight: 400;
   transition: all 500ms ease;
 }

 .our__team .anim-icon .icon.icon-03 {
   width: 181px;
   height: 181px;
   right: 87px;
   top: 69px;
 }

 /* service-two */

 .service__two__content {
   /* background: #FFF5F5; */
   padding-top: 100px;
 }

 .service__two__content .sec-title {
   padding-bottom: 106px;
 }

 .service__two__content .inner__content {
   position: relative;
   text-align: center;
   background: var(--white-color);
   box-shadow: 20px 0px 20px rgba(196, 196, 196, 0.1);
   border-radius: 198.5px 198.5px 0px 0px;
   transition: all 500ms ease;
 }

 .service__right.bg__image {
   width: 100%;
   height: 100%;
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   border-radius: 0px 20px 20px 0px;
   position: relative;
 }

 .service__two__content .icon__box {
   padding: 39px 0px 56px;
 }

 .service__two__content .icon__box {
   padding: 75px 0px 26px;
   display: flex;
   justify-content: center;
 }

 .service__two__content .icon__box .icon__outer {
   width: 161px;
   height: 161px;
   background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='100' ry='100' stroke='black' stroke-width='1' stroke-dasharray='5 10' stroke-dashoffset='0' stroke-linecap='round'/%3e%3c/svg%3e");
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
 }

 .service__two__content .icon__box .icon__outer span {
   font-size: 50px;
 }

 .service__two__content .icon__box .icon__outer .icon__bg {
   background: var(--secondary-color);
   position: relative;
   width: 130px;
   height: 130px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
 }

 .service__two__content .inner__content:hover .icon__box .icon__outer .icon__bg span {
   color: var(--theme-color);
 }

 .service__two__content .icon__box .icon__outer .icon__bg span {
   color: var(--white-color);
   z-index: 1;
 }

 .service__two__content .row>*:nth-child(2) .inner__content .icon__bg {
   background: var(--theme-color);
 }

 .service__two__content .row>*:nth-child(3) .inner__content .icon__bg {
   background: var(--primary-color);
 }

 .service__two__content .inner__content .service__text p {
   padding: 18px 0px 82px;
 }

 .service__two__content .inner__content:before {
   position: absolute;
   content: '';
   width: 0%;
   height: 5px;
   left: 50%;
   bottom: 0px;
   transition: all 500ms ease;
 }

 .service__two__content .inner__content:after {
   position: absolute;
   content: '';
   width: 0%;
   height: 5px;
   right: 50%;
   bottom: 0px;
   transition: all 500ms ease;
 }

 .service__two__content .inner__content:hover:before {
   width: 50%;
 }

 .service__two__content .inner__content:hover:after {
   width: 50%;
 }

 .service__two__content .row>*:nth-child(1) .inner__content:before {
   background-color: var(--primary-color);
 }

 .service__two__content .row>*:nth-child(2) .inner__content:before {
   background-color: var(--theme-color);
 }

 .service__two__content .row>*:nth-child(3) .inner__content:before {
   background-color: var(--primary-color);
 }

 .service__two__content .row>*:nth-child(1) .inner__content:after {
   background-color: var(--theme-color);
 }

 .service__two__content .row>*:nth-child(2) .inner__content:after {
   background-color: var(--primary-color);
 }

 .service__two__content .row>*:nth-child(3) .inner__content:after {
   background-color: var(--theme-color);
 }

 .service__two .anim-icon .icon.icon-01 {
   width: 80px;
   height: 152px;
   left: 76px;
   bottom: 188px;
 }

 .service__two .anim-icon .icon.icon-02 {
   width: 228px;
   height: 111px;
   right: 80px;
   top: 274px;
 }


 /* cities__section_two */

 .cities__section.two .cities__block .inner__box .cities__text {
   padding: 20px 0px;
 }

 .cities__section.two .cities__block {
   padding-bottom: 0px;
 }

 .cities__section.two .cities__block .inner__image img {
   border-radius: 20px;
 }

 .cities__section.two .cities__block .inner__box {
   border-radius: 20px;
 }

 .cities__section.two .cities__block.left .cities__text {
   padding: 35px 20px;
 }

 .cities__section.two {
   padding: 0px 0px 140px;
 }

 .cities__section.two .cities__block:hover .inner__box {
   transform: inherit;
 }

 .cities__section.two .cities__block .inner__box .image {
   border-radius: 20px;
 }

 .cities__section.two .image-layer-01 {
   position: absolute;
   background-repeat: no-repeat;
   background-position: center;
   width: 408px;
   height: 296px;
   left: 0;
   bottom: 240px;
 }

 .cities__section.two .city__button {
   display: flex;
   justify-content: center;
 }

 /* about-two-section */

 .about__section.two .image-column {
   position: relative;
 }

 .about__section.two .sell__list .vedio__img img {
   border-radius: 10px;
 }

 .about__section.two .image-column .image-box {
   position: relative;
 }

 .about__section.two .image-column .image-box .image.image-1 {
   position: absolute;
   right: -110px;
 }

 /* .about__section .content-column {
  padding-top: 4px;
} */
 .about__section .content-column .about_left_section {
   background: var(--white-color);
   padding: 10px 5px 35px 60px;
 }

 .about__section.two .image-column .image-box .image.image-2 img {
   justify-content: absolute;
   position: absolute;
   left: 0;
   top: 370px;
   border: 15px solid var(--white-color);
   filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.1));
   border-radius: 10px;
 }

 .about__section.two .image-column .image-box .image.image-1 img {
   position: relative;
 }

 .about__section.two .about_left_section p {
   padding-left: 28px;
 }

 .about__section.two .about_left_section p:after {
   content: "";
   background: var(--secondary-color);
   width: 5px;
   height: 150px;
   position: absolute;
   left: 0;
   top: 86px;
 }

 .video-btn a:before,
 .video-btn a:after {
   width: 100%;
   height: 100%;
   border-radius: 50%;
   background: transparent;
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   -webkit-animation-delay: .9s;
   animation-delay: .9s;
   content: "";
   position: absolute;
   -webkit-box-shadow: 0 0 0 0 var(--theme-color);
   box-shadow: 0 0 0 0 var(--theme-color);
   -webkit-animation: ripple 3s infinite;
   animation: ripple 3s infinite;
   -webkit-transition: all .4s ease;
   transition: all .4s ease;
 }

 .video-btn a:after {
   -webkit-animation-delay: .6s;
   animation-delay: .6s;
 }

 .about__section.two .sell__list .vedio__img a {
   font-size: 42px;
   width: 40px;
   height: 40px;
   position: absolute;
   border-radius: 50%;
   display: flex;
   align-items: center;
   margin: 0 auto 30px;
   justify-content: center;
 }

 .about__section.two .sell__list .vedio__img {
   position: relative;
 }

 .about__section.two .sell__list .vedio__img .video-btn {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
 }

 .about__section.two .anim-icon .icon.icon-1 {
   width: 229px;
   height: 115px;
   bottom: 0px;
   left: 499px;
   z-index: 1;
   animation: zoom-fade 2s infinite linear;
 }

 .about__section.two .anim-icon .icon.icon-2 {
   width: 186px;
   height: 134px;
   top: 0px;
   left: 135px;
 }

 /*** 

====================================================================
                        Home-Page-Three
====================================================================

***/

 /* header-style-three */

 .main-header.style-three .header-lower {
   margin: 0px 100px;
 }

 .main-header.style-three .main-menu .navigation>li>a {
   color: var(--higer-secondary-color);
   text-transform: capitalize;
 }

 .main-header.style-three a.account {
   background: var(--secondary-color);
   width: 49px;
   height: 49px;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
 }

 .main-header.style-three .header__right__button .header__btn:before {
   display: none;
 }

 .header__right__button .form-group input.form-control {
   border-left: none;
   border-right: none;
   border-top: none;
   border-radius: 0px;
   border-color: var(--theme-color) !important;
   width: 338px;
   margin-right: 21px;
   padding-left: 0;
   font-family: var(--primary-font);
   font-style: italic;
   font-weight: 400;
   font-size: 16px;
   line-height: 29px;
   color: rgba(0, 0, 0, 0.3);
 }

 .header__right__button .form-group input.form-control:focus {
   border-color: inherit;
   box-shadow: none;
 }

 .header__right__button .search-form {
   position: relative;
 }

 .header__right__button .search-form span {
   position: absolute;
   top: 50%;
   transform: translate(0%, -50%);
   right: 24px;
   font-size: 17px;
   font-weight: 600;
 }

 .main-header.style-three a.account:hover {
   background: var(--theme-color);
 }

 .main-header.style-three .btn-1 {
   background: var(--theme-color);
 }

 /* propertiest__section__three */
 .propertiest__section.three:after {
   display: none;
 }

 .propertiest__section.three {
   margin: 0px;
   padding: 0px;
 }

 .propertiest__section.three .container {
   overflow: hidden;
 }

 .propertiest-carousel .owl-nav {
   display: none;
 }

 .propertiest__section.three .sec-title .sub__title span,
 .propertiest__section.three .sec-title h2 span,
 .propertiest__section.three .sec-title h2 {
   color: var(--theme-color);
 }

 .propertiest__section.three .owl-carousel .owl-stage-outer {
   overflow: visible;
 }

 .propertiest__section.three .owl-carousel .owl-item {
   opacity: 0;
   visibility: hidden;
 }

 .propertiest__section.three .owl-carousel .owl-item.active {
   visibility: visible;
   opacity: 1;
 }

 .propertiest-carousel .owl-dots {
   padding-top: 60px;
 }

 /* banner-style-three */
 .banner__three {
   padding: 0px 100px;
 }

 .banner__three .banner__three__left__content {
   background: #EAF7F4;
   border-radius: 50px 0px 0px 0px;
   padding: 85px 127px;
 }

 .banner__three .banner__three__right__content {
   background: var(--theme-color);
   border-radius: 0px 50px 0px 0px;
   padding-top: 194px;
   width: 100%;
   height: 100%;
   background-repeat: no-repeat;
   background-size: contain;
   background-position: bottom;
 }

 .banner__three .banner__three__left__content .content {
   border: 1px solid var(--white-color);
   border-radius: 20px;
   background: var(--white-color);
   padding: 58px 56px;
   position: relative;
 }

 .banner__three .banner__three__left__content .anim-icon .icon-01 {
   width: 187px;
   height: 134px;
   left: 0px;
   top: 0px;
 }

 .banner__three .banner__three__left__content .sec-title h2 span {
   color: var(--secondary-color);
 }

 .banner__three .banner__three__left__content .sec-title h2:after {
   display: none;
 }

 .property__form_two .top__title .icon span {
   font-size: 12px;
 }

 .property__form_two .sec-title h2:after {
   display: none;
 }

 .banner__btn {
   display: flex;
   margin-top: 4vw;
 }

 .apartment_number {
   margin-top: 10%;
 }

 .banner__two.four .banner__btn .common-btn.btn__one {
   background-color: var(--secondary-color);
 }

 .property__form_two .top__title .icon {
   position: absolute;
   width: 25px;
   height: 25px;
   background: #F5F5F5;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
 }

 .property__form_two .top__title label {
   padding-left: 34px;
   font-weight: 700;
   color: var(--higer-secondary-color);
 }

 .property__form_two .range-slider {
   padding-top: 37px;
 }

 .property__form_two .top__title {
   padding: 24px 0px 15px;
 }

 .nice-select.wide {
   border-left: none;
   border-right: none;
   border-top: none;
   padding-bottom: 4px;
   border-color: rgba(0, 0, 0, 0.1);
 }

 .nice-select.wide span.current {
   color: rgba(32, 44, 56, 0.5);
 }

 .nice-select .list {
   background-color: var(--theme-color);
   transition: all 500ms ease;
 }

 .nice-select .option.focus,
 .nice-select .option.selected.focus,
 .nice-select .option:hover {
   background-color: var(--secondary-color);
   width: 100%;
 }

 .nice-select .list li {
   color: var(--white-color);
   width: 100%;
 }

 .property__form_two .price-range {
   padding-top: 33px;
 }

 .property__form_two .ui-widget.ui-widget-content {
   height: 5px;
   border: none;
   background: rgb(211, 211, 211);
   margin-bottom: 18px;
 }

 .property__form_two .ui-slider .ui-slider-handle {
   width: 20px;
   margin-left: -1px;
   height: 20px;
   cursor: pointer;
   border-color: var(--secondary-color);
   border: 3px solid var(--white-color);
   box-shadow: 0px 4px 20px rgb(0 0 0 / 20%);
   border-radius: 50%;
   margin-top: -3px;
 }

 .property__form_two .ui-state-default,
 .property__form_two .ui-widget-content .ui-state-default {
   background: var(--secondary-color);
 }

 .property__form_two .filter__box a {
   text-transform: uppercase;
   margin: 0px 0px 40px;
 }

 .property__form_two .price-box {
   display: flex;
   align-items: center;
 }

 .property__form_two p.price-value {
   color: var(--theme-color);
   font-weight: 700;
 }

 .property__form_two .ui-slider .ui-slider-range {
   top: 0px;
   height: 5px;
   background: var(--secondary-color);
 }

 .property__form_two .form-group.message-btn {
   padding-top: 38px;
   display: flex;
   align-items: center;
 }

 .property__form_two .refresh span {
   font-size: 30px;
   margin-left: 33px;
   cursor: pointer;
   vertical-align: middle;
 }

 .banner__three__left__content .icon-layer {
   width: 844px;
   height: 839px;
   top: 56px !important;
   left: 39px !important;
 }

 .banner__three__right__content .icon-layer {
   width: 822px;
   height: 642px;
   left: 33px;
   bottom: 93px;
 }

 .banner__three .banner__three__right__content img {
   width: 100%;
   position: relative;
 }

 .banner__three__right__content .anim-icon .icon.icon-01 {
   width: 226px;
   height: 56px;
   left: 53px;
   top: 97px;
 }

 .banner__three__right__content .anim-icon .icon.icon-02 {
   width: 198px;
   height: 49px;
   top: 37px;
   left: 381px;
 }

 .banner__three__right__content .anim-icon .icon.icon-03 {
   width: 137px;
   height: 34px;
   right: 37px;
   top: 136px;
 }

 .banner__three__right__content .parallax-scene {
   bottom: 0px !important;
   top: 183px !important;
 }

 .banner__three .anim-icon .icon.icon-08 {
   width: 206px;
   height: 206px;
   z-index: 9;
   left: 45%;
   top: 336px;
 }

 /* banner-style-three end */

 /* cities__section */
 .service__two__content.three {
   background: transparent;
   padding-top: 0px;
 }

 .cities__section.three {
   padding: 140px 0px;
   background: #FFF5F5;
 }

 .cities__section__three__data .cities__content {
   padding: 0px 109px;
 }

 .cities__section__three__data .owl-carousel .owl-item.active {
   visibility: inherit;
   opacity: 1;
 }

 .cities__section__three__data .owl-carousel .owl-item {
   opacity: 1;
   visibility: inherit;
   transition: all 500ms ease;
 }

 .cities__section__three__data .owl-carousel .owl-item .cities__block .inner__box {
   background: var(--white-color)8F8;
 }

 .cities__section__three__data .owl-carousel .owl-item.active .cities__block .inner__box {
   background: var(--white-color);
 }

 .cities__section__three__data .owl-carousel .owl-item .cities__block .inner__box:before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
   border-top-left-radius: 6px;
   border-top-right-radius: 6px;
   z-index: 1;
   opacity: 0.9;
   background: var(--white-color)8F8;
 }

 .cities__section__three__data .owl-carousel .owl-item.active .cities__block .inner__box:before {
   opacity: 0;
   z-index: -1;
 }

 .cities__section__three__data .owl-theme .owl-dots {
   display: none;
 }

 .cities__section__three__data .carousel-btn-one .owl-nav {
   justify-content: space-between;
   position: absolute;
   top: 50%;
   transform: translate(0%, -50%);
   width: 100%;
 }

 .cities__section__three__data .carousel-btn-one .owl-nav .owl-prev {
   margin-left: -19px;
 }

 .cities__section__three__data .cities__block:hover .inner__box {
   transform: translateY(0px);
 }

 .cities__section__three__data .carousel-btn-one .owl-nav .owl-next {
   margin-right: -19px;
 }

 .cities__section__three__data .cities__block {
   padding-bottom: 0px;
 }

 .cities__section__three__data .anim-icon .icon-01 {
   width: 200px;
   height: 216px;
   top: 33px;
   right: 39px;
 }

 /* propertiest__content__three */

 .propertiest__content__three .sec-title {
   padding: 0px 0px 87px;
 }

 .propertiest__section.three .icon.icon-01 {
   width: 165px;
   height: 189px;
   top: 154px;
   right: 150px;
 }

 /* service__section__three */

 .service__section .service__left .anim-icon .icon.icon-01 {
   width: 89px;
   height: 70px;
   top: 65px;
   left: 36px;
 }

 .service__section.three:after {
   content: "";
   background: var(--theme-color);
   width: 100%;
   height: 1030px;
   position: absolute;
   display: inline-block;
   top: 0px;
   z-index: -1;
 }

 .service__section.three .anim-icon .icon.layer-bg {
   width: 958px;
   height: 764px;
   top: -50px;
   right: -200px;
 }

 .service__section.three .tabs-box .service__left {
   border-top-right-radius: 0px;
   border-bottom-right-radius: 0px;
   padding: 119px 50px 98px 90px;
 }

 .service__section.three .tabs-box .service__right .image__box img {
   border-top-right-radius: 20px;
   border-bottom-right-radius: 20px;
 }

 .service__section.three .sec-title {
   padding-bottom: 99px;
 }

 .service__section.three .tab-btn-box {
   padding-bottom: 40px;
 }

 .service__section.three h2 {
   color: var(--white-color);
 }

 .service__section.three h2 span {
   color: var(--white-color);
 }

 .service__section.three .sub__title span {
   color: var(--white-color);
 }

 .service__section.three .tab-btn.active-btn {
   background: var(--secondary-color) !important;
 }

 .service__section.three .tab-btn:before {
   background: var(--secondary-color);
 }

 .service__section.three .tab-btns {
   justify-content: center;
 }

 .our__propertiest .sec-title {
   padding-bottom: 96px;
 }

 .propertiest_table {
   width: 100%;
   border-collapse: separate;
   border-spacing: 0 5px;
 }

 .propertiest_table .propertiest_table_header {
   background: var(--theme-color);
   border: 1px solid var(--theme-color);
 }

 .propertiest_table .propertiest_table_header th:first-child {
   text-align: start;
 }

 .propertiest_table .propertiest_table_header th {
   font-family: var(--secondary-font);
   font-style: normal;
   font-weight: 700;
   font-size: 20px;
   line-height: 30px;
   color: var(--white-color);
   padding: 25px 40px;
   text-align: center;
 }

 .propertiest_table_body tr {
   text-align: center;
   transition: all 500ms ease;
 }

 .propertiest_table_body td {
   border: 1px solid rgba(0, 0, 0, 0.2);
   padding: 25px 41px;
   color: var(--higer-secondary-color);
   font-weight: 700;
 }

 .propertiest_table_body tr td:first-child {
   text-align: start;
 }

 .propertiest_table_body td span {
   font-size: 28px;
   transition: all 500ms ease;
 }

 .propertiest_table_body tr:hover td span {
   color: var(--secondary-color);
 }

 .propertiest_table_body tr:hover {
   background: rgba(224, 224, 224, 0.2);
   border: 1px solid rgba(0, 0, 0, 0.2);
 }

 .service__right .lower__image {
   position: absolute;
   bottom: 30px;
   left: 30px;
 }

 .service__right .lower__image .image img {
   border-radius: 20px;
 }

 .our__propertiest .anim-icon .icon.icon-01 {
   width: 165px;
   height: 189px;
   right: 34px;
   bottom: 87px;
 }

 .vedio__two__content .video__left__image {
   width: 100%;
   height: 100%;
   background-repeat: no-repeat;
   background-position-x: left;
   background-size: cover;
 }

 .video__right__image:before {
   position: absolute;
   content: '';
   background: var(--theme-color);
   width: 100%;
   height: 100%;
   left: 0px;
   top: 0px;
   opacity: 0.9;
 }

 .video__right__image {
   padding: 195px 110px;
 }

 .video__right__image .lower__content h1 {
   font-weight: 900;
   font-size: 120px;
   line-height: 120px;
   color: var(--white-color);
 }

 .vedio__section__two .anim-icon .icon.icon-04 {
   width: 206px;
   height: 206px;
   z-index: 1;
   right: 134px;
   bottom: 34px;
 }

 .video__right__image .lower__content h1:before {
   content: attr(data-text);
   position: absolute;
   top: 0;
   left: 10px;
   width: 100%;
   height: 103%;
   color: var(--secondary-color);
   overflow: hidden;
   animation: textanimate 4s linear infinite;

 }

 @keyframes textanimate {

   0%,
   10%,
   50%,
   100% {
     width: 0%;
   }

   50%,
   70%,
   90% {
     width: 100%;
   }
 }

 .vedio__two__content .video__left__image .video-btn {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
 }

 .vedio__two__content .video__left__image .video-btn a {
   font-size: 92px;
   width: 92px;
   height: 92px;
   position: absolute;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .vedio__two__content .video__left__image .video-btn a span {
   color: var(--white-color);
 }

 .vedio__section__two .anim-icon .icon.icon-01 {
   width: 159px;
   height: 161px;
   z-index: 1;
   top: 139px;
   left: 291px;
   animation: zoom-fade 2s infinite linear;
 }

 .vedio__section__two .anim-icon .icon.icon-02 {
   width: 200px;
   height: 261px;
   z-index: 1;
   top: 43px;
   right: 100px;
 }

 .vedio__section__two .anim-icon .icon.icon-03 {
   width: 108px;
   height: 100px;
   z-index: 1;
   right: 282px;
   bottom: 337px;
 }

 /*** 

====================================================================
                        Home-Page-Four
====================================================================

***/

 /* banner-four */

 .banner__two.four {
   padding-bottom: 0px;
 }

 .banner__four__right {
   padding: 86px 0px;
 }

 .banner__four__right h2 span {
   color: #FF8C35;
 }

 .four .banner__two__content:before {
   content: "Houlist";
   font-family: var(--secondary-font);
   font-style: normal;
   font-weight: 900;
   font-size: 300px;
   line-height: 231px;
   color: rgba(0, 0, 0, 0.1);
   position: absolute;
   text-transform: uppercase;
   right: 0;
   bottom: 0;
 }

 .banner__two.four .anim-icon .icon-02 {
   width: 142px;
   height: 146px;
   top: 121px;
   left: 204px;
 }

 .banner__two.four .banner__two__left {
   padding: 220px 51px 76px 0px;
 }

 .banner__two.four .image-layer {
   position: absolute;
   right: 0;
   top: 0;
   width: 100%;
   height: 100%;
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   z-index: -1;
 }

 .banner__two.four:before {
   background: var(--theme-color);
   content: "";
   width: 100%;
   height: 100%;
   position: absolute;
   display: inline-block;
   top: 0;
   left: 0;
   opacity: 0.9;
 }

 .banner__two.four .property__form_two {
   background: var(--white-color);
   border-radius: 20px;
   padding: 60px 56px;
 }

 .banner__two.four .property__form_two {
   background: var(--white-color);
   border-radius: 20px;
   padding: 60px 56px;
 }

 .banner__two.four .banner__two__left h1 {
   color: var(--white-color);
 }

 .banner__two.four .banner__two__left span {
   color: var(--white-color);
 }

 .banner__two.four .banner__two__left h1 span {
   color: var(--secondary-color);
 }

 .banner__two.four .banner__two__left p {
   color: var(--white-color);
 }

 .banner__two.four .property__form_two .sec-title {
   padding-bottom: 6px;
 }

 /* banner-four end*/

 /* welcome-section  */

 .welcome .image.image-1 {
   right: 0px !important;
 }

 .welcome .icon.icon-2 {
   top: 140px !important;
   left: 131px !important;
 }

 .welcome .content-column .about_left_section {
   padding: 0px;
 }

 .welcome .content-column {
   padding-top: 0px;
 }

 .welcome .about_left_section p:after {
   display: none;
 }

 .welcome .about_left_section p {
   padding: 68px 0px 30px 0px !important;
 }

 .welcome .welcome__btn {
   padding-top: 52px;
   display: flex;
 }

 /* welcome-section-end  */

 /* funfact-section  */
 .funfact__section .inner__container {
   display: flex;
   flex-wrap: wrap;
 }

 .funfact__section .inner__container .counter-block-one {
   padding-bottom: 30px;
 }

 .funfact__section {
   overflow: hidden;
 }

 .funfact__section .icon__image img {
   z-index: 1;
 }

 .funfact__section .icon__image {
   width: 120px;
   height: 120px;
   margin: 0 auto;
   background: #F2F2F2;
   border: 4px solid var(--white-color);
   box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   position: relative;
 }

 .funfact__section .inner-box .icon__image:before {
   position: absolute;
   content: '';
   width: 0;
   height: 0;
   background: var(--primary-color);
   border-radius: 50%;
   transition: all 500ms ease;
 }

 .funfact__section .inner-box:hover .icon__image:before {
   width: 100%;
   height: 100%;
 }

 .funfact__section .count-outer span {
   font-family: var(--secondary-font);
   font-style: normal;
   font-weight: 700;
   font-size: 32px;
   line-height: 42px;
 }

 .funfact__section .count-outer {
   padding: 15px 0px;
 }

 .funfact__section .inner-box p {
   font-weight: 700;
 }

 .funfact__content {
   background: #FFF5F5;
   overflow: hidden;
   padding: 90px 0px 60px;
 }

 /* funfact-section-end  */

 /* service-section */
 .service__block__one {
   background: var(--white-color);
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
   border-radius: 20px 20px 0px 0px;
   padding: 20px;
 }

 .service__block__one .image-box img {
   width: 100%;
 }

 .service__block__one .inner-box .lower__content {
   padding: 0px 10px 10px;
 }

 .service__block__one .inner-box .lower__content h4 {
   padding: 20px 0px 10px;
 }

 .service__four .owl-carousel .owl-stage-outer {
   overflow: visible;
 }

 .service__four .owl-carousel .owl-item {
   opacity: 0;
   visibility: hidden;
 }

 .service__four .owl-carousel .owl-item.active {
   visibility: visible;
   opacity: 1;
 }

 .service__four .sec-title {
   padding-bottom: 97px;
 }

 .service__four .owl-dots {
   padding-top: 73px;
 }

 .service__four .owl-carousel .owl-item.center {
   transform: translateY(30px);
   transition: all 500ms ease;
 }

 .service__four .anim-icon .icon.icon-1 {
   width: 175px;
   height: 126px;
   top: 20px;
   left: 102px;
 }

 .service__four .anim-icon .icon.layer-bg {
   width: 642px;
   height: 466px;
   right: -200px;
   bottom: 0px;
 }

 /* service-section-end  */

 /* video__section-two  */
 .video__section.two {
   margin: 0px;
   overflow: hidden;
   padding: 290px 0px;
 }

 .video__section__bg__img {
   position: absolute;
   left: 0px;
   top: -30%;
   width: 100%;
   height: 150%;
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
   background-attachment: fixed;
   z-index: -1;
 }

 .video___block {
   text-align: center;
   position: absolute;
   top: 50%;
   transform: translate(0%, -50%);
   width: 100%;
 }

 .video___block .video__btn .video-btn {
   font-size: 92px;
   width: 110px;
   height: 110px;
   border: 1px solid var(--white-color);
   border-radius: 50%;
   display: flex;
   align-items: center;
   margin: 0 auto;
   justify-content: center;
 }

 .video___block .video__btn .video-btn span {
   color: var(--white-color);
 }

 /* video__section-two  end */

 /* testimonial__section__four */
 .testimonial__section.four:after {
   content: "";
   background: #FFF5F5;
   position: absolute;
   width: 100%;
   height: 690px;
   top: 0;
   left: 0;
   display: inline-block;
   z-index: -1;
 }

 .testimonial__section .anim-icon .icon.icon-01 {
   width: 216px;
   height: 172px;
   left: 60px;
   top: 474px;
 }

 .testimonial__section .anim-icon .icon.icon-02 {
   width: 139px;
   height: 114px;
   top: 142px;
   right: 121px;
 }

 .testimonial__section.four .layer__bg {
   background: transparent;
   padding: 0;
 }

 .testimonial__section.four .layer__bg .sec-title span {
   color: var(--theme-color);
 }

 .testimonial__section.four .layer__bg .sec-title h2 {
   color: var(--theme-color);
 }

 .testimonial__section.four .owl-stage-outer .owl-item.center {
   transform: translateY(0px);
   transition: all 500ms ease;
 }

 .testimonial__section.four .owl-nav {
   display: none;
 }

 .testimonial__block.four .inner__box {
   background: var(--white-color);
   box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
   border-radius: 20px;
 }

 .testimonial__section.four .owl-carousel .owl-stage-outer {
   overflow: visible;
 }

 .testimonial__section.four .owl-carousel .owl-item {
   opacity: 0;
   visibility: hidden;
 }

 .testimonial__section.four .owl-carousel .owl-item.active {
   visibility: visible;
   opacity: 1;
 }

 .testimonial__section.four .owl-carousel .owl-item.center .inner__box {
   background: var(--theme-color);
 }

 .testimonial__block.four .image__box {
   position: inherit;
   transform: inherit;
   margin-right: 18px;
 }

 .testimonial__block.four .test__monial__text p {
   color: var(--higer-secondary-color);
   padding: 27px 0px 47px;
 }

 .testimonial__block.four .review span {
   color: var(--secondary-color);
 }

 .testimonial__block.four .t__title h5 {
   color: var(--theme-color);
 }

 .testimonial__block.four .review li:last-child span {
   color: var(--higer-secondary-color);
 }

 .testimonial__section.four .owl-item.center .t__title h5 {
   color: var(--white-color);
 }

 .testimonial__section.four .owl-item.center .test__monial__text p {
   color: var(--white-color);
 }

 .testimonial__section.four .owl-item.center .review li:last-child span {
   color: var(--white-color);
 }

 .testimonial__block.four .icon__outer span {
   color: var(--theme-color);
 }

 .testimonial__section.four .owl-item.center .icon__outer span {
   color: var(--white-color);
 }

 .testimonial__block.four .author__info {
   display: flex;
   justify-content: center;
 }

 .testimonial__block.four .review {
   padding: 0px;
 }

 .testimonial__block.four .author__info__text {
   text-align: start;
 }

 .testimonial__section.four .sec-title {
   padding-bottom: 106px;
 }

 .testimonial__block.four {
   padding-top: 0px;
 }

 .testimonial__section.four .owl-stage-outer {
   padding-top: 0px;
 }

 .testimonial__block.four .inner__box {
   padding: 50px;
 }

 .testimonial__block.four .icon__outer {
   position: inherit;
 }

 .testimonial__section.four .owl-dots {
   display: flex;
   align-items: center;
   padding-top: 40px;
 }

 /* testimonial__section__four  end */

 /* cities__section__four */
 .cities__section.four {
   padding: 140px 0px;
 }

 .cities__section.four .icon.icon-01 {
   top: 206px;
   right: 103px;
 }

 .cities__btn {
   display: flex;
   justify-content: center;
 }

 /* cities__section__four  end */

 /* propertiest__section__four  end */
 .propertiest__section.four:after {
   display: none;
 }

 .propertiest__section.four .sec-title h2 span,
 .propertiest__section.four .sec-title h2 {
   color: var(--theme-color);
 }

 .propertiest__section.four .sec-title .sub__title span {
   color: var(--theme-color);
 }

 .propertiest__section.four .tabs-box .tab-btns .tab___all {
   color: var(--higer-secondary-color);
 }

 .propertiest__section.four .sec-title {
   padding: 0px 0px 87px;
 }

 /* propertiest__section__four  end */

 /* dream__home__four  */
 .dream__home.four .dream__content {
   display: flex;
   align-items: center;
   justify-content: space-between;
 }

 .dream__home.four .dream__home__content {
   border-radius: 0px;
   padding: 90px 0px;
   margin-bottom: 0px;
 }

 .dream__home.four .anim-icon .icon.icon-01 {
   width: 354px;
   height: 100%;
   right: 200px;
 }

 .dream__home.four .anim-icon .icon.icon-02 {
   width: 268px;
   height: 276px;
   left: 200px;
 }

 /* dream__home__four  end */

 /* team__home__four  end */
 .team__inner__content {
   margin-right: -580px;
   overflow: hidden;
   position: relative;
 }

 .team-carousel .owl-carousel .owl-stage-outer {
   overflow: visible;
 }

 .team-carousel .owl-carousel .owl-item {
   opacity: 0;
   visibility: hidden;
 }

 .team-carousel .owl-carousel .owl-item.active {
   visibility: visible;
   opacity: 1;
 }

 .team__inner__content .owl-dots {
   display: none;
 }

 .our__team.four {
   background: #FFF5F5;
   padding-top: 55px;
 }

 .our__team.four .sec-title {
   padding-bottom: 66px;
 }

 .our__team.four .image-layer-01 {
   position: absolute;
   background-repeat: no-repeat;
   background-position: center;
   width: 408px;
   height: 296px;
   left: -100px;
   bottom: 0;
 }

 .our__team__left__content {
   padding-top: 85px;
 }

 .our__team__left__content .agent__btn {
   padding-top: 40px;
   display: flex;
 }

 .our__team__left__content .normal__text {
   padding-right: 24px;
 }

 /* team__home__four  end */

 /*** 

====================================================================
                        All-page
====================================================================

***/

 /* page__title */

 .page__title {
   padding: 160px 0px;
   margin: 0px 100px;
   overflow: hidden;
 }

 .page__title h1.title {
   font-size: 50px;
   font-weight: 900;
   color: var(--white-color);
 }

 .page__title .bread-crumb {
   display: flex;
   align-items: center;
   padding-top: 10px;
 }

 .page__title .bread-crumb li:first-child a {
   color: var(--secondary-color)
 }

 .page__title .bread-crumb li {
   display: flex;
   align-items: center;
   font-weight: 700;
   padding-top: 5px;
   color: var(--white-color);
 }

 .page__title .bread-crumb li a span {
   margin-right: 10px;
   font-size: 14px;
   color: var(--secondary-color);
   transition: all 500ms ease;
 }

 .page__title .bread-crumb li:last-child span {
   margin: 0px 20px 0px 10px;
   color: var(--white-color);
 }

 .page__title .anim-icon .icon.layer-bg {
   width: 478px;
   height: 409px;
   top: 0px;
   right: 0px;
 }

 .bg-layer.parallax-bg {
   position: absolute;
   left: 0px;
   top: 0px;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
   background-attachment: fixed;
   z-index: -1;
   border-radius: 50px 50px 0px 0px;
 }

 section.page__title:before {
   position: absolute;
   content: '';
   background: #004274;
   width: 100%;
   opacity: 90%;
   height: 100%;
   left: 0px;
   top: 0px;
   border-radius: 50px 50px 0px 0px;
 }

 /* page__title */

 .about__testimonial .anim-icon .icon.icon-03 {
   width: 181px;
   height: 181px;
   left: 0;
   bottom: 103px;
 }

 .testimonial__last__img img {
   position: absolute;
   bottom: 50px;
   left: -90px;
   border: 15px solid #FFFFFF;
   border-radius: 5px;
 }

 .service__page__two .inner__content {
   margin-top: 24px;
   border-radius: 0px 0px 198.5px 198.5px;
 }

 .service__page__two .inner__content:after {
   top: 0px;
 }

 .service__page__two .inner__content:before {
   top: 0px;
 }

 .service__page__two .row>*:nth-child(1) .inner__content:before {
   background-color: var(--theme-color);
 }

 .service__page__two .row>*:nth-child(1) .inner__content:after {
   background-color: var(--theme-color);
 }

 .service__page__two .row>*:nth-child(2) .inner__content:before {
   background-color: var(--secondary-color);
 }

 .service__page__two .row>*:nth-child(2) .inner__content:after {
   background-color: var(--secondary-color);
 }

 .service__page__two .row>*:nth-child(3) .inner__content:before {
   background-color: var(--higer-secondary-color);
 }

 .service__page__two .row>*:nth-child(3) .inner__content:after {
   background-color: var(--higer-secondary-color);
 }

 .service__page .service__two__content {
   padding: 100px 0px 200px;
 }

 .service__page__two .icon__box .icon__outer .icon__bg {
   background: var(--theme-color);
 }

 .service__page__two .row>*:nth-child(2) .inner__content .icon__bg {
   background: var(--secondary-color);
 }

 .service__page__two .row>*:nth-child(3) .inner__content .icon__bg {
   background: var(--higer-secondary-color);
 }

 .service__page .anim-icon .icon.icon-01 {
   width: 80px;
   height: 152px;
   left: 76px;
   bottom: 758px;
 }

 /* service__details */

 .service__details__1__cat li a {
   background: #FBF7F4;
   padding: 10px 10px 10px 30px;
   margin-bottom: 10px;
   display: flex;
   font-weight: 700;
   align-items: center;
   justify-content: space-between;
   color: var(--higer-secondary-color);
   transition: all 500ms ease;
 }

 .service_benifits__right h4 {
   padding-bottom: 20px;
 }

 .service_benifits__right .benifits__list li {
   display: flex;
   align-items: center;
   font-weight: 700;
 }

 .service_benifits__right .benifits__list li span {
   margin-right: 20px;
 }

 .service__details__1__cat li a:hover,
 .service__details__1__cat li.active a {
   background: var(--theme-color);
   color: var(--white-color) !important;
   font-weight: 700;
   transition: all 500ms ease;
 }

 .service__details__1__cat li a:hover span,
 .service__details__1__cat li.active a span {
   color: var(--white-color);
   transition: all 500ms ease;
 }

 .service__details__1__cat li a span {
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--higer-secondary-color);
   transition: all 500ms ease;
 }

 .services__single h3 {
   padding: 40px 0px 20px;
 }

 .services__single p {
   padding-bottom: 20px;
 }

 .services__single p:last-child {
   padding-bottom: 0px;
 }

 .sidebar__widget_network {
   padding: 40px 0px 40px;
   position: relative;
 }

 .sidebar__widget_network .content__box {
   position: absolute;
   left: 44px;
   bottom: 86px;
 }

 .sidebar__widget_network .content__box .text {
   padding-bottom: 20px;
 }

 .sidebar__widget_network .content__box .text h5 {
   color: var(--white-color);
 }

 .sidebar__widget_network .image__box img {
   width: 100%;
   border-radius: 20px 20px 0px 0px;
 }

 .sidebar__widget_network .image__box {
   position: relative;
 }

 .sidebar__widget_network .image__box:after {
   content: "";
   background: var(--theme-color);
   width: 100%;
   height: 100%;
   border-radius: 20px 20px 0px 0px;
   position: absolute;
   top: 0px;
   left: 0px;
   opacity: 0.4;
 }

 .service__news__letter {
   background: var(--theme-color);
   padding: 70px 0px;
 }

 .service__news__letter .icon-layer {
   position: absolute;
   width: 416px;
   height: 301px;
   left: 0;
   bottom: 0;
   background-repeat: repeat-x;
   animation: slide 100s linear infinite;
   -webkit-animation: slide 100s linear infinite;
 }

 .service__news__letter .sub__title span {
   color: var(--white-color);
 }

 .service__news__letter .sec-title h2 {
   color: var(--white-color);
 }

 .service__news__letter .sec-title {
   padding-bottom: 73px;
 }

 .service__news__letter .form-group input {
   display: block;
   width: 332px;
   height: 60px;
   margin: 0 auto;
   background: rgba(255, 255, 255, 0.2);
   padding: 0px 20px;
 }

 .service__news__letter .form-group button {
   width: 332px;
   height: 60px;
   display: block !important;
   margin: 10px auto 0px !important;
   border-radius: 0px;
   background-color: var(--secondary-color);
 }

 .faq__section .sec-title {
   padding-bottom: 106px;
 }

 .faq__section .faq__bottom {
   text-align: center;
 }

 .faq__section .faq__bottom .faq__btn {
   display: flex;
   justify-content: center;
   padding-top: 20px;
 }


 /* team__section */

 .sidebar__page__team .sidebar__side .image__box img {
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
   width: 100%;
   border-radius: 20px 20px 0px 0px;
 }

 .sidebar__widget.team__from {
   background: var(--theme-color);
   padding: 40px;
 }

 .team__from__title h4:after {
   position: absolute;
   content: "";
   width: 156px;
   height: 29px;
   display: block;
   background-image: url(../images/icons/title-icon-two.svg);
   top: 32px;
   transition: all 500ms ease;
   background-repeat: no-repeat;
 }

 .team__from__title h4 {
   color: var(--white-color);
   padding-bottom: 70px;
   position: relative;
 }

 .sidebar__widget.team__from label {
   display: flex;
   color: var(--white-color);
   font-weight: 700;
   padding-bottom: 15px;
 }

 .sidebar__widget.team__from label span {
   color: var(--white-color);
   width: 25px;
   font-size: 12px;
   height: 25px;
   background: #0A4A7A;
   display: flex;
   border-radius: 50%;
   justify-content: center;
   align-items: center;
   margin-right: 10px;
 }

 .sidebar__widget.team__from input {
   background: transparent;
   width: 100%;
   border-bottom: 1px solid rgba(255, 255, 255, 0.4);
   color: rgba(255, 255, 255, 0.4)
 }

 .sidebar__widget.team__from .form-group {
   margin-bottom: 30px;
 }

 .sidebar__widget.team__from textarea {
   background: transparent;
   width: 100%;
   border-bottom: 1px solid rgba(255, 255, 255, 0.4);
   color: rgba(255, 255, 255, 0.4)
 }

 .team__from ::placeholder {
   color: rgba(255, 255, 255, 0.4);
   opacity: 1;
 }

 .team__from :-ms-input-placeholder {
   color: rgba(255, 255, 255, 0.4);
 }

 .team__from ::-ms-input-placeholder {
   color: rgba(255, 255, 255, 0.4);
 }

 .sidebar__widget.team__from .common-btn.btn__one {
   background-color: var(--secondary-color);
 }

 .sidebar__page__team .team__media ul {
   justify-content: start;
 }

 .sidebar__page__team .team__media ul a {
   padding: 10px 32px;
 }

 .sidebar__page__team .team__media ul a span {
   font-size: 14px;
 }

 .sidebar__page__team .team__left p {
   padding: 10px 0px 20px;
   color: var(--secondary-color);
 }

 .sidebar__page__team .team__block__two {
   padding: 30px 0px;
 }

 .team__block__contact__list {
   display: flex;
   justify-content: space-between;
 }

 .team__block__contact__content {
   border: 1px solid #CCCCCC;
   padding: 28px 35px;
   width: 100%;
   margin-right: -1px;
 }

 .team__block__contact__content .text__bold {
   font-weight: 700;
   font-size: 20px;
   line-height: 30px;
   color: var(--theme-color);
 }

 .team__block__contact__content span {
   font-family: var(--secondary-font);
   font-style: normal;
   font-weight: 600;
   color: var(--higer-secondary-color);
 }

 .team__block__contact .team__block__contact__list {
   padding-bottom: 10px;
 }

 .team__block__contact .team__block__contact__list:last-child {
   padding-bottom: 0px;
 }

 .team__block__contact__list a {
   color: var(--higer-secondary-color);
 }

 /*** 

====================================================================
                        Blog-Page
====================================================================

***/

 .blog__sidebar .sidebar__widget.search__widget input {
   padding: 13px 55px;
   background: #EAF7F4;
   border-radius: 10px;
   color: rgba(0, 0, 0, 0.3);
   font-family: 'Roboto';
   font-style: italic;
   position: relative;
 }

 .blog__sidebar .sidebar__widget.search__widget button {
   position: absolute;
   background: transparent;
   left: 21px;
   top: 55%;
   transform: translate(0%, -50%);
 }

 .blog__sidebar .sidebar__widget.search__widget .form-group {
   position: relative;
 }

 .blog__sidebar .sidebar__widget.search__widget button span {
   color: #004274;
   font-size: 20px;
   font-weight: 600;
 }

 .sidebar__blog__container .news__block__one .news__title h3 {
   padding-bottom: 20px;
 }

 .sidebar__blog__container .news__block__one .normal__text {
   padding-bottom: 20px;
 }

 .sidebar__blog__container .news__block__one .more__btn {
   padding-bottom: 40px;
 }

 .sidebar__blog__container .news__block__one .lower__content {
   padding: 0px 0px;
 }

 .sidebar__blog__container .news__block__one .author__info ul {
   display: flex;
 }

 .sidebar__blog__container .news__block__one .author__info li {
   display: flex;
   align-items: center;
 }

 .sidebar__blog__container .inner-box .image-box .image {
   border-radius: 20px;
 }

 .blog__sidebar.default__sidebar {
   background: var(--white-color);
   box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
   border-radius: 30px;
   padding: 40px 40px;
 }

 .sidebar__widget .title {
   position: relative;
   padding-bottom: 40px;
 }

 .sidebar__widget .title:after {
   position: absolute;
   content: "";
   width: 156px;
   height: 29px;
   display: block;
   background-image: url(../images/icons/title-icon-two.svg);
   top: 32px;
   transition: all 500ms ease;
   background-repeat: no-repeat;
 }

 .blog__sidebar.default__sidebar .author__info .team__media ul li a {
   padding: 10px 18px;
 }

 .blog__sidebar.default__sidebar .author__info {
   position: relative;
   padding-left: 120px;
 }

 .blog__sidebar.default__sidebar .author__info .author__thumb img {
   border-radius: 5px;
 }

 .blog__sidebar.default__sidebar .author__info .author__thumb {
   position: absolute;
   left: 0px;
   top: 4px;
   width: 100px;
   height: 100px;
   overflow: hidden;
 }

 .blog__sidebar.default__sidebar .author__info p {
   padding: 0px 0px 8px;
 }

 .blog__sidebar .team__media ul {
   justify-content: start;
 }

 .blog__sidebar.default__sidebar .author__info p a {
   text-decoration: underline;
   font-size: 14px;
 }

 .blog__sidebar .author__text {
   padding: 20px 0px 0px;
 }

 .blog__sidebar .sidebar__widget {
   padding-bottom: 40px;
 }

 .blog__sidebar .sidebar__widget:last-child {
   padding-bottom: 0px;
   position: relative;
 }

 .sidebar__widget .categories__list li {
   padding-bottom: 15px;
 }

 .sidebar__widget .categories__list li:last-child {
   padding-bottom: 0px;
 }

 .sidebar__widget .categories__list li a {
   display: flex;
   justify-content: space-between;
 }

 .sidebar__widget .categories__list li a {
   display: flex;
   justify-content: space-between;
 }

 .blog__sidebar .post__widget .post__thumb {
   position: absolute;
   left: 0px;
   top: 4px;
   width: 100px;
   height: 100px;
   border-radius: 5px;
   overflow: hidden;
 }

 .blog__sidebar .post__widget .post {
   position: relative;
   position: relative;
   display: block;
   padding: 5px 0px 5px 120px;
   margin-bottom: 16px;
   min-height: 105px;
 }

 .blog__sidebar .post__widget .post:last-child {
   margin-bottom: 0px;
 }

 .blog__sidebar .post__widget .post h6 {
   font-weight: 700;
 }

 .blog__sidebar .post__widget .post .location {
   padding: 5px 0px;
 }

 .blog__sidebar .post__widget .post .location span {
   margin-right: 12px;
   font-size: 14px;
 }

 .blog__sidebar .post__widget .post .location p {
   display: flex;
   align-items: center;
   font-size: 14px;
 }

 .blog__sidebar .post__widget .post .price__post p {
   font-weight: 700;
   color: var(--higer-secondary-color);
 }

 .blog__sidebar .post__widget .post .price__post p span {
   color: var(--higer-secondary-color);
   font-weight: 400;
 }

 .blog__sidebar .button__widget .image img {
   border-radius: 10px;
 }

 .blog__sidebar .button__widget .image img {
   position: relative;
 }

 .blog__sidebar .button__widget .image__button {
   position: absolute;
   left: 25px;
   bottom: 24px;
 }

 .blog__sidebar .button__widget .image__button a {
   color: var(--white-color);
   font-weight: 700;
   width: 174px;
   height: 174px;
   background: var(--theme-color);
   border-radius: 50%;
   padding: 45px 38px;
   text-align: center;
   display: block;
 }

 .comment___area .comment {
   position: relative;
   padding-top: 37px;
 }

 .comment___area .comment .thumb-box {
   position: absolute;
   left: 0px;
   top: 37px;
   width: 91px;
   height: 80px;
 }

 .comment___area .comment .comment-inner {
   position: relative;
   padding-left: 110px;
 }

 .comment___area .comment .thumb-box img {
   width: 100px;
   height: 100px;
   border-radius: 50%;
 }

 .comment___area .comment .comment-inner .comment-info {
   display: flex;
   padding-bottom: 12px;
 }

 .comment___area .comment .comment-inner .comment-info span {
   color: #343E61;
 }

 .comment___area .comment .comment-inner a span {
   font-size: 22px;
   color: #FF8C35;
 }

 .comment___area .comment .comment-inner p {
   margin-bottom: 40px;
 }

 .comment___area .replay-comment {
   margin-left: 140px;
 }

 .comment___area .comment .comment-inner .comment-info h6 {
   margin-right: 24px;
   font-size: 18px;
   line-height: 32px;
   font-weight: 700;
 }

 .comment___area {
   background: #FAFAFA;
   border-radius: 30px;
   padding: 60px;
 }

 .comments-form-area .group-title p {
   padding: 30px 0px 20px;
   font-size: 16px;
   font-weight: 300;
   color: #343E61;
 }

 .comments-form-area .group-title h4 {
   font-size: 24px;
   line-height: 34px;
 }

 .comment___area .comments-form-area {
   padding: 60px 0px 0px;
 }

 .comment___area .comments-form-area textarea {
   width: 100%;
   height: 205px;
   background: #F6F7F9;
   padding: 32px 0px 0px 36px;
   color: #343E61;
 }

 .comment___area .comments-form-area input {
   width: 100%;
   padding: 18px 30px;
   background: #F6F7F9;
   color: #343E61;
 }

 .comment___area .comments-form-area .more__buttons {
   padding-top: 40px;
 }

 .news__details__content h3 {
   padding: 40px 0px 20px;
 }

 .news__details__content.two h3 {
   padding-top: 0px;
 }

 .template__path {
   background: #E9F6F6;
   border-radius: 30px;
   padding: 84px 34px;
   text-align: center;
   margin: 20px 0px 40px;
 }

 .template__path .icon__outer {
   position: absolute;
   top: 40px;
   right: 58px;
 }

 .template__path .icon__outer span {
   font-size: 53px;
   color: var(--white-color);
 }

 .template__path h3 {
   color: var(--secondary-color);
 }

 .simple__block img {
   width: 100%;
 }

 .simple__block .normal__text p {
   color: var(--higer-secondary-color);
 }

 .tag__media {
   padding-bottom: 60px;
   padding-top: 20px;
 }

 .tag__media .tag__media__last {
   display: flex;
   justify-content: end;
 }

 .tag__media h3 {
   font-size: 32px;
 }

 .tag__media .btn-1 {
   background-color: #F2F6F7;
 }

 .tag__media .btn-1 a {
   color: var(--higer-secondary-color);
 }

 .tag__media .btn-1:hover a {
   color: var(--white-color) !important;
 }

 .tag__media .btn-1 span {
   background-color: var(--theme-color);
 }

 .tag__media .social__links {
   display: flex;
   padding-top: 25px;
 }

 .tag__media .social__links li {
   margin-right: 30px;
 }

 .tag__media .social__links li:last-child {
   margin-right: 0px;
 }

 .tag__media .social__links li span {
   font-size: 23px;
 }

 .tag__media .tags__list {
   padding-top: 20px;
 }

 /*** 

====================================================================
                        Contact-Page
====================================================================

***/

 .contact__style__one .contact-info {
   position: relative;
   display: block;
 }

 .contact__style__one .contact-info h3 {
   position: relative;
   display: block;
 }

 .contact__icon {
   background: var(--white-color);
   box-shadow: 0px 8px 20px rgb(72 72 72 / 10%);
   width: 80px;
   height: 80px;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   margin-right: 30px;
 }

 .right__site__info.one a {
   color: var(--secondary-color);
 }

 .right__site__info.two a {
   color: #ffa500;
 }

 .google__map__section.contact .map-inner {
   border-radius: 10px;
   overflow: hidden;
 }

 .right__site__info h5 {
   font-size: 22px;
   padding-bottom: 3px;
 }

 .right__site__info a {
   font-style: normal;
   font-weight: 400;
   font-size: 20px;
 }

 .contact__info__block:nth-child(1) a {
   color: var(--secondary-color);
 }

 .contact__info__block:first-child span {
   color: var(--secondary-color);
 }

 .contact__icon span {
   font-size: 54px;
 }

 .contact__info__block {
   display: flex;
   align-items: center;
   padding-bottom: 40px;
 }

 .contact__style__one .contact-info p {
   color: var(--higer-secondary-color);
   padding-bottom: 40px;
 }

 .contact__style__one .contact-info .info-list li {
   position: relative;
   display: inline-block;
   font-size: 16px;
   line-height: 28px;
   margin-bottom: 14px;
 }

 .contact__style__one .contact-info .info-list li:last-child {
   margin-bottom: 0px;
 }

 .contact__style__one .contact-info .info-list li a {
   display: inline-block;
   color: #787878;
 }

 .contact__style__one .contact-info .info-list li:last-child a {
   color: #141417;
   font-size: 16px;
   font-weight: 500;
 }

 .contact__style__one .form-inner .form-group {
   position: relative;
   display: block;
   margin-bottom: 10px;
 }

 .contact__icon.one span {
   color: var(--secondary-color);
 }

 .contact__icon.two span {
   color: var(--primary-color);
 }

 .contact__style__one .form-inner .form-group input,
 .contact__style__one .form-inner .form-group textarea {
   position: relative;
   display: block;
   width: 100%;
   padding: 20px;
   font-size: 16px;
   color: rgba(52, 62, 97, 0.4);
   background: var(--white-color);
   border: 1px solid rgba(0, 0, 0, 0.1);
   transition: all 500ms ease;
 }

 .contact__style__one .form-inner .form-group textarea {
   height: 174px;
   resize: none;
   padding-top: 21px;
 }

 .contact__style__one .form-inner .form-group .check-box label {
   font-size: 18px;
   color: #343E61;
   margin: 18px 0px 40px;
 }

 .contact__style__one h3 {
   font-size: 32px;
   font-weight: 900;
   line-height: 42px;
   padding-bottom: 33px;
 }

 .contact___title p {
   padding-bottom: 46px;
 }

 .contact__style__one .form-inner .form-group .theme-btn {
   padding: 12px 25px;
 }

 .contact__style__one .form-inner .form-group .theme-btn i {
   position: relative;
   font-size: 22px;
   margin-left: 8px;
   top: 2px;
 }

 /*** 

====================================================================
                        Property-Grid-Page
====================================================================

***/

 .propertiest__section.page .propertiest__contents {
   background: transparent;
 }

 .propertiest__section.page:after {
   display: none;
 }

 .propertiest__grid .blog__sidebar.default__sidebar {
   padding: 0px;
   box-shadow: none;
   border-radius: 0px;
 }

 .propertiest__grid .blog__sidebar.default__sidebar .sidebar__widget.post__widget {
   background: var(--white-color);
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
   border-radius: 10px;
   padding: 40px;
   margin-bottom: 40px;
 }

 .propertiest__grid .blog__sidebar.default__sidebar .sidebar__widget.button__widget {
   background: var(--white-color);
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
   border-radius: 10px;
   padding: 30px 20px;
 }

 .propertiest__grid .blog__sidebar.default__sidebar .sidebar__widget.button__widget img {
   width: 100%;
   height: 509px;
 }

 .propertiest__grid .blog__sidebar.default__sidebar .sidebar__widget.button__widget .image__button {
   bottom: 55px;
   left: 45px;
 }

 .propertiest__grid .blog__sidebar.default__sidebar .sidebar__widget.post__widget .post:last-child {
   margin-bottom: 0px;
 }

 .propertiest__grid .sidebar__widget .title:after {
   position: absolute;
   content: "";
   width: 156px;
   height: 29px;
   display: block;
   background-image: url(../images/icons/title-icon-two.svg);
   top: 32px;
   transition: all 500ms ease;
   background-repeat: no-repeat;
 }

 .propertiest__grid .sidebar__widget .title {
   padding-bottom: 40px;
 }

 .propertiest__advanced__search .advance__search__one {
   display: flex;
   justify-content: space-between;
 }

 .propertiest__advanced__search .advance__search__one li {
   width: 24%;
 }

 .propertiest__advanced__search {
   background: var(--white-color);
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
   border-radius: 10px;
   padding: 50px 60px;
 }

 .advance__search__last {
   display: flex;
 }

 .advance__search__last .form-group {
   margin-right: 30px;
 }

 .advance__search.two .search__option {
   display: flex;
   align-items: center;
   justify-content: space-between;
 }

 .propertiest__advanced__search .property__form_two .range-slider {
   padding-top: 0px;
 }

 .propertiest__advanced__search .property__form_two .top__title.slider {
   padding: 24px 0px 5px;
 }

 .propertiest__advanced__search .property__form_two p.price-value {
   text-align: end;
   padding-bottom: 10px;
 }

 .propertiest__advanced__search .check-box label:before {
   width: 20px;
   height: 20px;
   top: 50%;
   transform: translate(0%, -50%);
   border-color: var(--theme-color);
 }

 .propertiest__advanced__search .check-box label:after {
   width: 20px;
   height: 20px;
   top: 50%;
   transform: translate(0%, -50%);
   line-height: 14px;
 }


 /*** 

====================================================================
                        Property-Details-Page
====================================================================

***/

 .image__gallery__content {
   margin: 24px 100px 0px;
 }

 .image__gallery__left .inner__box {
   width: 100%;
   height: 100%;
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
 }

 .property__type__block {
   display: flex;
   width: 100%;
 }

 .image__gallery__feature_image img {
   width: 100%;
 }

 .hidden {
   overflow: hidden;
   display: none;
   visibility: hidden;
 }

 .btn-gallery img {
   max-width: 100%;
   height: auto;
 }

 .image__gallery__right .gallery__bottom .image__box img {
   width: 299px;
   height: 288px;
 }

 .image__gallery__right .gallery__top .image__box img {
   height: 282px;
 }

 .number__of__img {
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
 }

 .number__of__img h2 {
   color: var(--white-color);
   z-index: 1;
 }

 .property__details__content {
   background: var(--white-color);
   box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
   border-radius: 30px;
   padding: 75px 50px;
 }

 .property__details__content .property__one {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding-bottom: 67px;
 }

 .property__one__left ul {
   display: flex;
   align-items: center;
 }

 .property__one__left ul li {
   margin-right: 20px;
   color: var(--higer-secondary-color);
   display: flex;
   align-items: center;
 }

 .property__one__left ul li span {
   margin-right: 10px;
   font-size: 20px;
 }

 .property__one__right ul {
   display: flex;
 }

 .property__one__right ul li a {
   width: 35px;
   height: 35px;
   background: rgba(255, 255, 255, 0.2);
   border: 1px solid rgba(0, 66, 116, 0.2);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: 15px;
   transition: all 500ms ease;
 }

 .property__one__right ul li a span {
   transition: all 500ms ease;
 }

 .property__one__right ul li:hover a span,
 .property__one__right ul li:hover a {
   border-color: var(--secondary-color);
 }

 .property__one__right ul li:last-child a {
   margin-right: 0px;
 }

 .property__one__left ul li:last-child {
   margin-right: 0px;
 }

 .property__one__right .price {
   font-weight: 700;
   font-size: 24px;
   line-height: 29px;
   display: block;
   text-align: end;
   padding-bottom: 15px;
 }

 .property__one__left h3 {
   padding-bottom: 20px;
 }

 .property__type__info__content {
   border: 1px solid #CCCCCC;
   padding: 28px 17px;
   text-align: center;
   width: 100%;
   margin-right: -1px;
 }

 .property__type__info__list {
   display: flex;
   padding-bottom: 10px;
 }

 .property__two__title h4 {
   padding-bottom: 53px;
   position: relative;
 }

 .property__two__title h4:after {
   content: "";
   position: absolute;
   width: 78px;
   height: 1px;
   background: var(--theme-color);
   bottom: 40px;
   left: 0px;
 }

 .property__two__content {
   padding-bottom: 40px;
 }

 .property__type__info__content .text__bold {
   font-family: var(--primary-font);
   font-style: normal;
   font-weight: 700;
   font-size: 16px;
   line-height: 29px;
   color: var(--theme-color);
 }

 .property__type__info__content span {
   font-weight: 700;
   color: var(--higer-secondary-color);
 }

 .property__two__content .amenities {
   display: flex;
   align-items: center;
 }

 .property__two__content .amenities li {
   margin-right: 30px;
   display: flex;
   align-items: center;
 }

 .property__two__content .amenities li span {
   margin-right: 15px;
 }

 .location__icon {
   position: absolute;
   left: 245px;
   top: 50%;
   transform: translate(0%, -50%);
   width: 55px;
   height: 55px;
   background: var(--theme-color);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .location__icon img {
   width: 30px;
 }

 .floor_plans_tab .tab-btns li {
   display: inline-block;
   font-family: var(--secondary-font);
   font-style: normal;
   font-weight: 700;
   font-size: 20px;
   line-height: 30px;
   color: var(--theme-color);
   margin-right: 42px;
   cursor: pointer;
 }

 .floor_plans_tab .tab-btns li:last-child {
   margin-right: 0px;
 }

 .floor_plans_tab .tabs-content .inner-box {
   border: 20px solid #EAF7F4;
   padding-top: 40p;
 }

 .floor_plans_tab .tabs-content .inner-box .floor_plans_content {
   display: flex;
   flex-wrap: wrap;
   padding: 25px 22px;
   justify-content: space-between;
 }

 .floor_plans_left {
   width: 57%;
 }

 .floor_plans_right {
   width: 37%;
 }

 .floor_plans_left .more__details li {
   display: flex;
   margin-right: 23px;
   align-items: center;
 }

 .floor_plans_left .more__details {
   border: 1px solid rgba(0, 0, 0, 0.1);
   padding: 8px 20px;
   display: flex;
   align-items: center;
   margin-bottom: 12px;
 }

 .floor_plans_left .more__details li:last-child {
   margin-right: 0px;
 }

 .floor_plans_left .more__details li span {
   margin-right: 12px;
   font-size: 25px;
 }

 .floor_plans_tab .tabs-content {
   padding-top: 40px;
 }

 .floor_plans_left .image__box img {
   width: 100%;
 }

 .floor_plans_tab .tab-btns .tab-btn.active-btn span {
   color: var(--primary-color) !important;
 }

 .floor_plans_right h6 {
   font-weight: 700;
   padding-bottom: 30px;
 }

 .floor_plans_right h6:after {
   content: "";
   position: absolute;
   width: 78px;
   height: 1px;
   background: var(--theme-color);
   bottom: 17px;
   left: 0px;
 }

 .property__details .comment___area {
   background: transparent;
   padding: 0px;
 }

 .property__details .comment___area .comments-form-area {
   padding: 0px;
 }

 .property__details .comments-form-area .group-title p {
   padding: 0px 0px 20px;
 }

 .property__details .comment___area .rating {
   display: flex;
 }

 .property__details .comment___area .rating .rating__star li {
   display: inline-block;
 }

 .property__details .comment___area .rating .rating__star li span {
   font-size: 20px;
   color: #E0E0E0;
 }

 .property__details .comment___area .rating .rating__star {
   margin-left: 15px;
 }

 .property__details .comment___area .rating span:first-child {
   font-weight: 700;
 }

 .property__two:last-child .property__two__content {
   padding-bottom: 0px;
 }

 .property__details .comment___area .comment {
   padding: 30px 0px 20px;
   font-weight: 700;
 }


 /*** 

====================================================================
                        Portfolio-Page
====================================================================

***/

 .portfolio__content .filters .filter-tabs {
   display: flex;
   justify-content: center;
   padding-bottom: 60px;
 }

 .portfolio__content .filters .filter-tabs li {
   margin-right: 36px;
   background: #F2F2F2;
   font-weight: 500;
   color: #000000;
   padding: 10px 30px;
   cursor: pointer;
   transition: all 500ms ease;
   border-radius: 3px;
 }

 .portfolio__content .filters .filter-tabs li:last-child {
   margin-right: 0px;
 }

 .portfolio__content .filters .filter-tabs li:hover,
 .portfolio__content .filters .filter-tabs li.active {
   background: var(--theme-color);
   color: var(--white-color);
 }

 .portfolio__block__one .inner__box {
   background: var(--white-color);
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
   border-radius: 20px 20px 0px 0px;
   padding: 20px;
 }

 .portfolio__block__one .inner__box .image__box img {
   border-radius: 20px 20px 0px 0px;
 }

 .portfolio__block__one .inner__box:hover .image__box a {
   transform: translate(-50%, -50%) scale(1, 1);
 }

 .portfolio__block__one .inner__box .image__box a {
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%) scale(0, 0);
   font-size: 25px;
   line-height: 60px;
   width: 78px;
   background: var(--secondary-color);
   height: 78px;
   border-radius: 50%;
   justify-content: center;
   display: flex;
   align-items: center;
 }

 .portfolio__block__one .inner__box .image__box a span {
   color: var(--white-color);
 }

 .portfolio__block__one .inner__box .image__box .image {
   position: relative;
   display: block;
   overflow: hidden;
   border-radius: 20px 20px 0px 0px;
   background-color: var(--theme-color);
 }

 .portfolio__block__one .inner__box .image__box {
   position: relative;
   display: block;
   overflow: hidden;
   border-radius: 20px 20px 0px 0px;
 }

 .portfolio__block__one .inner__box {
   position: relative;
   display: block;
   overflow: hidden;
   margin-bottom: 24px;
 }

 .portfolio__block__one .inner__box:hover .image__box .image img {
   opacity: 0.7;
   transform: scale(1.05);
 }

 .portfolio__block__one .inner__box .image__box .image img {
   width: 100%;
   transition: all 500ms ease;
 }

 .portfolio__block__one .lower__content {
   padding: 20px 6px 20px;
 }


 /*** 

====================================================================
                        Compare-Details-Page
====================================================================

***/

 .compare__details__content {
   margin: 0px 120px;
 }

 .compare__details__content .compare__table__content {
   background: var(--white-color);
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
   border-radius: 20px;
   padding: 105px 103px;
 }

 .compare__table__content h3:after {
   position: absolute;
   content: "";
   width: 156px;
   height: 29px;
   display: block;
   background-image: url(../images/icons/title-icon-two.svg);
   top: 40px;
   transition: all 500ms ease;
   background-repeat: no-repeat;
 }

 .compare__table__content h3 {
   padding-bottom: 114px;
 }

 .compare__img__box {
   padding-bottom: 20px;
 }

 .compare__img__box .inner-box {
   background: var(--white-color);
   box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
   border-radius: 20px 20px 0px 0px;
   padding: 20px;
 }

 .compare__img__box .inner-box .price__section {
   left: 43px;
   bottom: 40px;
   justify-content: start;
 }

 .bread__list li:last-child span {
   margin: 0px 20px 0px 10px;
   transition: all 500ms ease;
 }

 .bread__list {
   display: flex;
   align-items: center;
   padding: 0px 0px 82px;
 }

 .bread__list li span {
   margin-right: 10px;
   font-size: 14px;
   transition: all 500ms ease;
 }

 .bread__list li {
   display: flex;
   align-items: center;
   font-weight: 700;
   transition: all 500ms ease;
 }

 .propertiest_table_body td .more__details {
   display: flex;
   justify-content: center;
 }

 .propertiest_table_body td .more__details li {
   margin-right: 47px;
 }

 .propertiest_table_body td .more__details li:last-child {
   margin-right: 0px;
 }

 .compare__details__content .propertiest_table {
   border-spacing: 0 10px;
 }


 @media only screen and (max-width: 992px) {
   .main-footer .footer-bottom .copyright {
     display: flex;
     justify-content: center;
     text-align: center;
   }
 }

 @media only screen and (min-width: 993px) {
   .main-footer .footer-bottom .bottom-inner {
     display: flex;
     justify-content: space-between;
   }
 }

 .policy {
   align-items: center;
   text-align: center;
   justify-content: center;
 }




 /* Services own code */

 .about__section .normal__texts p {
   padding: 35px 1px 32px 10px;
 }


 /* Media query for footer */

 @media only screen and (max-width: 499px) {
   .footer-widget .widget-title h4 {

     margin-bottom: 15px;
     margin-top: 20px;
   }
 }


 /* Blog Images Media  */
 @media only screen and (max-width: 499px) {
   .image-box .image img {
     height: 100%;

   }
 }


 /* Membership Plans Equal Height Layout */
 .row.membership-row {
   display: flex;
   flex-wrap: nowrap;
   /* prevent wrapping */
   gap: 20px;
   justify-content: center;
   /* align center */
   margin-bottom: 3rem;
 }

 .col-lg-4,
 .col-md-4,
 .col-sm-6,
 .col-xs-12 {
   display: flex;
   flex: 1;
   /* equal width */
   max-width: 33.33%;
 }

 .one-blog {
   background: #fff;
   border-radius: 15px;
   overflow: hidden;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease-in-out;
   padding: 20px 15px;
   position: relative;
   display: flex;
   flex-direction: column;
   height: 100%;
   width: 100%;
 }

 .one-blog:hover {
   transform: translateY(-8px);
   box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
 }

 .one-blog .post-img img {
   max-width: 140px;
   margin: 0 auto 20px;
   transition: transform 0.3s ease;
 }

 .one-blog:hover .post-img img {
   transform: scale(1.05);
 }

 .bloginfo {
   flex-grow: 1;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   text-align: center;
 }
 /* .bloginfo .btn-center{
   display: flex;
   justify-content: center;
   text-align: center;
 } */

 .bloginfo .blog-title {
   font-size: 1.3rem;
   font-weight: 700;
   color: #222;
   margin-bottom: 15px;
   text-transform: uppercase;
 }

 .ul-style {
   flex-grow: 1;
   list-style: none;
   padding: 0;
   margin: 0 0 20px;
   font-size: 15px;
 }

 .ul-style li {
   margin: 8px 0;
   padding: 6px 12px;
   background: #f9f9f9;
   border-radius: 8px;
   transition: background 0.3s;
 }

 .ul-style li:hover {
   background: #eef3f8;
 }

 .readmore {
   margin-top: auto;
 }

 .readmore .btn {
   background: linear-gradient(135deg, #ff6f61, #ff944d);
   border: none;
   color: #fff !important;
   font-weight: 600;
   padding: 10px 24px;
   border-radius: 50px;
   transition: all 0.3s ease-in-out;
   text-transform: uppercase;
   font-size: 14px;
   box-shadow: 0 4px 12px rgba(255, 111, 97, 0.3);
 }

 .readmore .btn:hover {
   background: linear-gradient(135deg, #ff944d, #ff6f61);
   transform: translateY(-3px);
   box-shadow: 0 6px 18px rgba(255, 111, 97, 0.4);
 }

 /* Top border color */
 .one-blog:nth-child(1) {
   border-top: 5px solid silver;
 }

 .one-blog:nth-child(2) {
   border-top: 5px solid gold;
 }

 .one-blog:nth-child(3) {
   border-top: 5px solid #e5e4e2;
 }

 /* Responsive: allow wrapping on mobile */
 @media (max-width: 767px) {
   .row.membership-row {
     flex-wrap: wrap;
   }

   .col-lg-4 {
     max-width: 100%;
   }

   .bloginfo .blog-title {
     font-size: 1.1rem;
   }
 }