pwb 1.0.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (367) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/app/assets/javascripts/comfy/admin/cms/custom.js.coffee +1 -0
  4. data/app/assets/stylesheets/comfy/admin/cms/custom.sass +1 -0
  5. data/app/assets/stylesheets/pwb/themes/berlin/inmo.scss +6 -1
  6. data/app/assets/stylesheets/pwb/themes/berlin/main.scss +12 -11
  7. data/app/assets/stylesheets/pwb/themes/default/shame.scss +1 -1
  8. data/app/controllers/pwb/admin_panel_controller.rb +2 -2
  9. data/app/controllers/pwb/api/v1/cms_pages_controller.rb +102 -0
  10. data/app/controllers/pwb/api/v1/website_controller.rb +7 -0
  11. data/app/controllers/pwb/api_public/v1/props_controller.rb +2 -2
  12. data/app/controllers/pwb/application_api_controller.rb +3 -7
  13. data/app/controllers/pwb/application_controller.rb +2 -3
  14. data/app/controllers/pwb/comfy_controller.rb +106 -0
  15. data/app/controllers/pwb/css_controller.rb +1 -2
  16. data/app/controllers/pwb/devise/registrations_controller.rb +2 -5
  17. data/app/controllers/pwb/devise_controller.rb +3 -8
  18. data/app/controllers/pwb/export/properties_controller.rb +5 -6
  19. data/app/controllers/pwb/export/translations_controller.rb +1 -5
  20. data/app/controllers/pwb/export/web_contents_controller.rb +1 -4
  21. data/app/controllers/pwb/export/website_controller.rb +0 -1
  22. data/app/controllers/pwb/import/mls_controller.rb +3 -6
  23. data/app/controllers/pwb/import/properties_controller.rb +2 -4
  24. data/app/controllers/pwb/import/scrapper_controller.rb +6 -9
  25. data/app/controllers/pwb/props_controller.rb +10 -13
  26. data/app/controllers/pwb/search_controller.rb +16 -16
  27. data/app/controllers/pwb/sections_controller.rb +21 -22
  28. data/app/controllers/pwb/welcome_controller.rb +1 -2
  29. data/app/helpers/pwb/application_helper.rb +37 -0
  30. data/app/helpers/pwb/css_helper.rb +9 -0
  31. data/app/models/pwb/cms_page_container.rb +9 -0
  32. data/app/models/pwb/content.rb +10 -6
  33. data/app/models/pwb/prop.rb +12 -4
  34. data/app/models/pwb/section.rb +1 -1
  35. data/app/models/pwb/website.rb +14 -1
  36. data/app/resources/pwb/api/v1/cms_block_resource.rb +11 -0
  37. data/app/resources/pwb/api/v1/cms_page_resource.rb +27 -0
  38. data/app/themes/berlin/views/layouts/pwb/application.html.erb +25 -9
  39. data/app/themes/berlin/views/pwb/props/show.html.erb +5 -5
  40. data/app/themes/berlin/views/pwb/search/_search_results.html.erb +2 -1
  41. data/app/themes/berlin/views/pwb/search/buy.html.erb +1 -1
  42. data/app/themes/berlin/views/pwb/search/rent.html.erb +2 -1
  43. data/app/themes/berlin/views/pwb/sections/about_us.html.erb +3 -2
  44. data/app/themes/berlin/views/pwb/sections/cms.html.erb +34 -0
  45. data/app/themes/berlin/views/pwb/sections/contact_us.html.erb +2 -1
  46. data/app/themes/berlin/views/pwb/welcome/_about_us_to_del.html.erb +35 -0
  47. data/app/themes/berlin/views/pwb/welcome/{_adv_search.html.erb → _adv_search_to_del.html.erb} +0 -0
  48. data/app/themes/berlin/views/pwb/welcome/_landing_carousel.html.erb +1 -1
  49. data/app/themes/berlin/views/pwb/welcome/_latest_properties.html.erb +2 -1
  50. data/app/themes/default/views/layouts/pwb/application.html.erb +24 -3
  51. data/app/themes/default/views/pwb/sections/about_us.html.erb +1 -2
  52. data/app/themes/default/views/pwb/sections/cms.html.erb +30 -0
  53. data/app/themes/default/views/pwb/welcome/_single_property_row.html.erb +2 -1
  54. data/app/themes/default/views/pwb/welcome/index.html.erb +3 -1
  55. data/app/views/layouts/pwb/devise.html.erb +1 -0
  56. data/app/views/pwb/_analytics.html.erb +15 -0
  57. data/app/views/pwb/_footer.html.erb +0 -12
  58. data/app/views/pwb/custom_css/{berlin.css.erb → _berlin.css.erb} +0 -1
  59. data/app/views/pwb/custom_css/{default.css.erb → _default.css.erb} +0 -1
  60. data/app/views/pwb/custom_css/_shared.css.erb +1 -0
  61. data/app/views/pwb/props/_images_section_carousel.html.erb +13 -27
  62. data/app/views/pwb/props/_prop_info_list.html.erb +1 -1
  63. data/app/views/pwb/search/_search_result_item.html.erb +62 -64
  64. data/app/views/pwb/search/_search_result_item_to_del.html.erb +3 -3
  65. data/config/client_setups/default.json +59 -21
  66. data/config/cms_page_containers/about-us.json +18 -0
  67. data/config/cms_page_containers/about.json +107 -0
  68. data/config/cms_page_containers/landing.json +19 -0
  69. data/config/cms_page_containers/legal.json +17 -0
  70. data/config/cms_page_containers/sell.json +96 -0
  71. data/config/initializers/cloudinary.rb +3 -0
  72. data/config/initializers/comfortable_mexican_sofa.rb +142 -0
  73. data/config/locales/admin.en.yml +213 -0
  74. data/config/locales/admin.es.yml +32 -17
  75. data/config/locales/admin.ru.yml +432 -0
  76. data/config/locales/admin.zh.yml.tmp +226 -0
  77. data/config/locales/de.yml +31 -32
  78. data/config/locales/devise.zh-HK.yml +119 -0
  79. data/config/locales/en.yml +3 -0
  80. data/config/locales/es.yml +3 -5
  81. data/config/locales/rails.zh-HK.yml +210 -0
  82. data/config/locales/ru.yml +11 -11
  83. data/config/locales/zh-HK.yml +154 -0
  84. data/config/routes.rb +17 -2
  85. data/db/cms_fixtures/cms/categories/pages.yml +3 -0
  86. data/db/cms_fixtures/cms/files/_rerenting-landing_framed.png.yml +6 -0
  87. data/{spec/dummy/public/system/comfy/cms/files/files/000/000/003/original → db/cms_fixtures/cms/files}/rerenting-landing_framed.png +0 -0
  88. data/db/cms_fixtures/cms/layouts/about-us/attributes.yml +4 -0
  89. data/db/cms_fixtures/cms/layouts/about-us/content.html +0 -0
  90. data/db/cms_fixtures/cms/layouts/about-us/javascript.js +0 -0
  91. data/db/cms_fixtures/cms/layouts/about-us/people/attributes.yml +4 -0
  92. data/db/cms_fixtures/cms/layouts/about-us/people/content.html +55 -0
  93. data/db/cms_fixtures/cms/layouts/about-us/services/attributes.yml +4 -0
  94. data/db/cms_fixtures/cms/layouts/about-us/services/content.html +32 -0
  95. data/db/cms_fixtures/cms/layouts/about-us/services/javascript.js +0 -0
  96. data/db/cms_fixtures/cms/layouts/about-us/services/stylesheet.css +0 -0
  97. data/db/cms_fixtures/cms/layouts/about-us/stylesheet.css +0 -0
  98. data/db/cms_fixtures/cms/layouts/default-layout/attributes.yml +4 -0
  99. data/db/cms_fixtures/cms/layouts/default-layout/content.html +51 -0
  100. data/db/cms_fixtures/cms/layouts/default-layout/javascript.js +0 -0
  101. data/db/cms_fixtures/cms/layouts/default-layout/stylesheet.css +0 -0
  102. data/db/cms_fixtures/cms/pages/index/about-us/attributes.yml +8 -0
  103. data/db/cms_fixtures/cms/pages/index/about-us/people/attributes.yml +8 -0
  104. data/db/cms_fixtures/cms/pages/index/about-us/people/de/attributes.yml +8 -0
  105. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_details_a.html +1 -0
  106. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_details_b.html +1 -0
  107. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_details_c.html +1 -0
  108. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_details_d.html +1 -0
  109. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_img_url_a.html +1 -0
  110. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_img_url_b.html +1 -0
  111. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_img_url_c.html +1 -0
  112. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_img_url_d.html +1 -0
  113. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_name_a.html +1 -0
  114. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_name_b.html +1 -0
  115. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_name_c.html +1 -0
  116. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_name_d.html +1 -0
  117. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_title_a.html +1 -0
  118. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_title_b.html +1 -0
  119. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_title_c.html +1 -0
  120. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_title_d.html +1 -0
  121. data/db/cms_fixtures/cms/pages/index/about-us/people/en/attributes.yml +8 -0
  122. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_details_a.html +1 -0
  123. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_details_b.html +1 -0
  124. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_details_c.html +1 -0
  125. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_details_d.html +1 -0
  126. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_img_url_a.html +1 -0
  127. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_img_url_b.html +1 -0
  128. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_img_url_c.html +1 -0
  129. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_img_url_d.html +1 -0
  130. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_name_a.html +1 -0
  131. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_name_b.html +1 -0
  132. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_name_c.html +1 -0
  133. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_name_d.html +1 -0
  134. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_title_a.html +1 -0
  135. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_title_b.html +1 -0
  136. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_title_c.html +1 -0
  137. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_title_d.html +1 -0
  138. data/db/cms_fixtures/cms/pages/index/about-us/people/es/attributes.yml +8 -0
  139. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_details_a.html +1 -0
  140. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_details_b.html +1 -0
  141. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_details_c.html +1 -0
  142. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_details_d.html +1 -0
  143. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_img_url_a.html +1 -0
  144. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_img_url_b.html +1 -0
  145. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_img_url_c.html +1 -0
  146. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_img_url_d.html +1 -0
  147. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_name_a.html +1 -0
  148. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_name_b.html +1 -0
  149. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_name_c.html +1 -0
  150. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_name_d.html +1 -0
  151. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_title_a.html +1 -0
  152. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_title_b.html +1 -0
  153. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_title_c.html +1 -0
  154. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_title_d.html +1 -0
  155. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/attributes.yml +8 -0
  156. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_details_a.html +1 -0
  157. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_details_b.html +1 -0
  158. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_details_c.html +1 -0
  159. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_details_d.html +1 -0
  160. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_name_a.html +1 -0
  161. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_name_b.html +1 -0
  162. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_name_c.html +1 -0
  163. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_name_d.html +1 -0
  164. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_title_a.html +1 -0
  165. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_title_b.html +1 -0
  166. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_title_c.html +1 -0
  167. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_title_d.html +1 -0
  168. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/attributes.yml +8 -0
  169. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_details_a.html +1 -0
  170. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_details_b.html +1 -0
  171. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_details_c.html +1 -0
  172. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_details_d.html +1 -0
  173. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_img_url_a.html +1 -0
  174. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_img_url_b.html +1 -0
  175. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_img_url_c.html +1 -0
  176. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_img_url_d.html +1 -0
  177. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_name_a.html +1 -0
  178. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_name_b.html +1 -0
  179. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_name_c.html +1 -0
  180. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_name_d.html +1 -0
  181. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_title_a.html +1 -0
  182. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_title_b.html +1 -0
  183. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_title_c.html +1 -0
  184. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_title_d.html +1 -0
  185. data/db/cms_fixtures/cms/pages/index/about-us/services/attributes.yml +8 -0
  186. data/db/cms_fixtures/cms/pages/index/about-us/services/content_a.html +1 -0
  187. data/db/cms_fixtures/cms/pages/index/about-us/services/content_b.html +0 -0
  188. data/db/cms_fixtures/cms/pages/index/about-us/services/content_c.html +0 -0
  189. data/db/cms_fixtures/cms/pages/index/about-us/services/de/attributes.yml +8 -0
  190. data/db/cms_fixtures/cms/pages/index/about-us/services/de/content_a.html +1 -0
  191. data/db/cms_fixtures/cms/pages/index/about-us/services/de/content_b.html +1 -0
  192. data/db/cms_fixtures/cms/pages/index/about-us/services/de/content_c.html +1 -0
  193. data/db/cms_fixtures/cms/pages/index/about-us/services/de/title_a.html +1 -0
  194. data/db/cms_fixtures/cms/pages/index/about-us/services/de/title_b.html +1 -0
  195. data/db/cms_fixtures/cms/pages/index/about-us/services/de/title_c.html +1 -0
  196. data/db/cms_fixtures/cms/pages/index/about-us/services/en/attributes.yml +8 -0
  197. data/db/cms_fixtures/cms/pages/index/about-us/services/en/content_a.html +1 -0
  198. data/db/cms_fixtures/cms/pages/index/about-us/services/en/content_b.html +1 -0
  199. data/db/cms_fixtures/cms/pages/index/about-us/services/en/content_c.html +1 -0
  200. data/db/cms_fixtures/cms/pages/index/about-us/services/en/title_a.html +1 -0
  201. data/db/cms_fixtures/cms/pages/index/about-us/services/en/title_b.html +1 -0
  202. data/db/cms_fixtures/cms/pages/index/about-us/services/en/title_c.html +1 -0
  203. data/db/cms_fixtures/cms/pages/index/about-us/services/es/attributes.yml +8 -0
  204. data/db/cms_fixtures/cms/pages/index/about-us/services/es/content_a.html +1 -0
  205. data/db/cms_fixtures/cms/pages/index/about-us/services/es/content_b.html +1 -0
  206. data/db/cms_fixtures/cms/pages/index/about-us/services/es/content_c.html +1 -0
  207. data/db/cms_fixtures/cms/pages/index/about-us/services/es/title_a.html +1 -0
  208. data/db/cms_fixtures/cms/pages/index/about-us/services/es/title_b.html +1 -0
  209. data/db/cms_fixtures/cms/pages/index/about-us/services/es/title_c.html +1 -0
  210. data/db/cms_fixtures/cms/pages/index/about-us/services/title_a.html +1 -0
  211. data/db/cms_fixtures/cms/pages/index/about-us/services/title_b.html +0 -0
  212. data/db/cms_fixtures/cms/pages/index/about-us/services/title_c.html +0 -0
  213. data/db/cms_fixtures/cms/pages/index/attributes.yml +8 -0
  214. data/db/cms_fixtures/cms/pages/index/content.html +1 -0
  215. data/db/cms_fixtures/cms/pages/index/title.html +0 -0
  216. data/db/cms_fixtures/cms/snippets/snippet1/attributes.yml +3 -0
  217. data/db/cms_fixtures/cms/snippets/snippet1/content.html +1 -0
  218. data/db/cms_fixtures/sample-site/categories/files.yml +1 -0
  219. data/db/cms_fixtures/sample-site/categories/pages.yml +1 -0
  220. data/db/cms_fixtures/sample-site/categories/snippets.yml +1 -0
  221. data/db/cms_fixtures/sample-site/files/_sample.jpg.yml +5 -0
  222. data/db/cms_fixtures/sample-site/files/sample.jpg +0 -0
  223. data/db/cms_fixtures/sample-site/layouts/default/attributes.yml +1 -0
  224. data/db/cms_fixtures/sample-site/layouts/default/content.html +5 -0
  225. data/db/cms_fixtures/sample-site/layouts/default/javascript.js +1 -0
  226. data/db/cms_fixtures/sample-site/layouts/default/nested/attributes.yml +2 -0
  227. data/db/cms_fixtures/sample-site/layouts/default/nested/content.haml +3 -0
  228. data/db/cms_fixtures/sample-site/layouts/default/nested/javascript.js +1 -0
  229. data/db/cms_fixtures/sample-site/layouts/default/nested/stylesheet.css +1 -0
  230. data/db/cms_fixtures/sample-site/layouts/default/stylesheet.css +1 -0
  231. data/db/cms_fixtures/sample-site/pages/index/attributes.yml +6 -0
  232. data/db/cms_fixtures/sample-site/pages/index/child/attributes.yml +3 -0
  233. data/db/cms_fixtures/sample-site/pages/index/child/left.haml +1 -0
  234. data/db/cms_fixtures/sample-site/pages/index/child/right.html +1 -0
  235. data/db/cms_fixtures/sample-site/pages/index/child/thumbnail.png +0 -0
  236. data/db/cms_fixtures/sample-site/pages/index/content.html +2 -0
  237. data/db/cms_fixtures/sample-site/snippets/default/attributes.yml +4 -0
  238. data/db/cms_fixtures/sample-site/snippets/default/content.html +1 -0
  239. data/db/migrate/20170513221300_create_cms.rb +133 -0
  240. data/db/seeds/spain/translations.rb +2 -2
  241. data/db/seeds/translations_ca.rb +92 -0
  242. data/db/seeds/translations_de.rb +86 -85
  243. data/db/seeds/translations_en.rb +73 -73
  244. data/db/seeds/translations_es.rb +79 -78
  245. data/db/seeds/translations_ru.rb +92 -0
  246. data/db/yml_seeds/prop/flat_for_rent.yml +4 -4
  247. data/db/yml_seeds/sections.yml +2 -2
  248. data/db/yml_seeds/website.yml +3 -1
  249. data/lib/pwb/cms_data_loader.rb +38 -0
  250. data/lib/pwb/engine.rb +1 -0
  251. data/lib/pwb/locale_loader.rb +47 -0
  252. data/lib/pwb/seeder.rb +8 -5
  253. data/lib/pwb/version.rb +1 -1
  254. data/lib/tasks/pwb_tasks.rake +1 -0
  255. data/spec/dummy/config/routes.rb +5 -0
  256. data/spec/dummy/config/secrets.yml +5 -0
  257. data/spec/dummy/db/schema.rb +111 -1
  258. data/spec/dummy/log/development.log +0 -0
  259. data/spec/features/pwb/admin_spec.rb +14 -40
  260. data/spec/features/pwb/admin_spec_tmp.rb +54 -0
  261. data/spec/fixtures/to_import/pwb-properties.csv +2 -2
  262. data/spec/views/pwb/application_layout.html.erb_spec.rb +1 -0
  263. metadata +207 -235
  264. data/app/themes/berlin/views/pwb/welcome/_about_us.html.erb +0 -36
  265. data/db/seeds/translations_others.rb +0 -215
  266. data/spec/dummy/public/assets/application-af04b226fd7202dfc532ce7aedb95a0128277937e90d3b3a3d35e1cce9e16886.css +0 -16
  267. data/spec/dummy/public/assets/application-af04b226fd7202dfc532ce7aedb95a0128277937e90d3b3a3d35e1cce9e16886.css.gz +0 -0
  268. data/spec/dummy/public/assets/application-ec8550e416fd8df1557ddb7f132ccd38baaafd36e4c5c9aff8420fbd47c0313f.js +0 -617
  269. data/spec/dummy/public/assets/application-ec8550e416fd8df1557ddb7f132ccd38baaafd36e4c5c9aff8420fbd47c0313f.js.gz +0 -0
  270. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot +0 -0
  271. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot.gz +0 -0
  272. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg +0 -288
  273. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg.gz +0 -0
  274. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742.woff +0 -0
  275. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf +0 -0
  276. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf.gz +0 -0
  277. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2 +0 -0
  278. data/spec/dummy/public/assets/pwb/application-0dc6ff845cde8e032ed365593c17fe09c18a6966d44f551946bf1673d8d1ac51.css +0 -13
  279. data/spec/dummy/public/assets/pwb/application-0dc6ff845cde8e032ed365593c17fe09c18a6966d44f551946bf1673d8d1ac51.css.gz +0 -0
  280. data/spec/dummy/public/assets/pwb/application-b4df8e7ae7700a0d09d88175af77e7f457ca2fbe15ae08450551ebf3bfb0c4d1.js +0 -15656
  281. data/spec/dummy/public/assets/pwb/application-b4df8e7ae7700a0d09d88175af77e7f457ca2fbe15ae08450551ebf3bfb0c4d1.js.gz +0 -0
  282. data/spec/dummy/public/assets/pwb/themes/berlin-279c2e3a7fa11a902fdee83a6819dcc315ff8eb240cfad21b1322cedadb07ea7.js +0 -18690
  283. data/spec/dummy/public/assets/pwb/themes/berlin-279c2e3a7fa11a902fdee83a6819dcc315ff8eb240cfad21b1322cedadb07ea7.js.gz +0 -0
  284. data/spec/dummy/public/assets/pwb/themes/berlin-8038d5cfd670e73fbffb581f6bb8d8c00ac448957945622c5c34438c467d218b.css +0 -8582
  285. data/spec/dummy/public/assets/pwb/themes/berlin-8038d5cfd670e73fbffb581f6bb8d8c00ac448957945622c5c34438c467d218b.css.gz +0 -0
  286. data/spec/dummy/public/assets/pwb/themes/chic-facdff61de4827adfd797b6a36ffd6c8b432072df7190ed722d039f971caa539.css +0 -3500
  287. data/spec/dummy/public/assets/pwb/themes/chic-facdff61de4827adfd797b6a36ffd6c8b432072df7190ed722d039f971caa539.css.gz +0 -0
  288. data/spec/dummy/public/assets/pwb/themes/default-d697fb0c278f500986e614ddd7eb41fd7db502a54f3370b3e8166cc1714509d0.css +0 -8423
  289. data/spec/dummy/public/assets/pwb/themes/default-d697fb0c278f500986e614ddd7eb41fd7db502a54f3370b3e8166cc1714509d0.css.gz +0 -0
  290. data/spec/dummy/public/assets/pwb_admin_panel/application-2d624898965d7a347eb7f365feab34257032c25051633370811ed7dfd24d7c8c.js +0 -61
  291. data/spec/dummy/public/assets/pwb_admin_panel/application-2d624898965d7a347eb7f365feab34257032c25051633370811ed7dfd24d7c8c.js.gz +0 -0
  292. data/spec/dummy/public/assets/pwb_admin_panel/application-f0e38d58d1ce32501b22edd16697f45b561fa44b5be9265398a05e8dee169885.css +0 -17970
  293. data/spec/dummy/public/assets/pwb_admin_panel/application-f0e38d58d1ce32501b22edd16697f45b561fa44b5be9265398a05e8dee169885.css.gz +0 -0
  294. data/spec/dummy/public/img/about-us.png +0 -0
  295. data/spec/dummy/public/img/agents/agent-1.png +0 -0
  296. data/spec/dummy/public/img/agents/agent-3.png +0 -0
  297. data/spec/dummy/public/img/agents/agent-4.png +0 -0
  298. data/spec/dummy/public/img/agents/agent-5.png +0 -0
  299. data/spec/dummy/public/img/banner-ads.jpg +0 -0
  300. data/spec/dummy/public/img/blog-img-1.jpg +0 -0
  301. data/spec/dummy/public/img/blog-img-2.jpg +0 -0
  302. data/spec/dummy/public/img/blog-img-3.jpg +0 -0
  303. data/spec/dummy/public/img/client-brand-1.png +0 -0
  304. data/spec/dummy/public/img/client-brand-2.png +0 -0
  305. data/spec/dummy/public/img/client-brand-3.png +0 -0
  306. data/spec/dummy/public/img/client-brand-4.png +0 -0
  307. data/spec/dummy/public/img/client-brand-5.png +0 -0
  308. data/spec/dummy/public/img/favicon.ico +0 -0
  309. data/spec/dummy/public/img/gallery/big/1.jpg +0 -0
  310. data/spec/dummy/public/img/gallery/big/10.jpg +0 -0
  311. data/spec/dummy/public/img/gallery/big/11 - Copy.jpg +0 -0
  312. data/spec/dummy/public/img/gallery/big/12.jpg +0 -0
  313. data/spec/dummy/public/img/gallery/big/2.jpg +0 -0
  314. data/spec/dummy/public/img/gallery/big/3.jpg +0 -0
  315. data/spec/dummy/public/img/gallery/big/4.jpg +0 -0
  316. data/spec/dummy/public/img/gallery/big/5.jpg +0 -0
  317. data/spec/dummy/public/img/gallery/big/6.jpg +0 -0
  318. data/spec/dummy/public/img/gallery/big/7.jpg +0 -0
  319. data/spec/dummy/public/img/gallery/big/8.jpg +0 -0
  320. data/spec/dummy/public/img/gallery/big/9.jpg +0 -0
  321. data/spec/dummy/public/img/gallery/fancybox_buttons.png +0 -0
  322. data/spec/dummy/public/img/gallery/fancybox_loading.gif +0 -0
  323. data/spec/dummy/public/img/gallery/fancybox_loading@2x.gif +0 -0
  324. data/spec/dummy/public/img/gallery/fancybox_overlay.png +0 -0
  325. data/spec/dummy/public/img/gallery/fancybox_sprite.png +0 -0
  326. data/spec/dummy/public/img/gallery/fancybox_sprite@2x.png +0 -0
  327. data/spec/dummy/public/img/gallery/small/1.jpg +0 -0
  328. data/spec/dummy/public/img/gallery/small/10.jpg +0 -0
  329. data/spec/dummy/public/img/gallery/small/11.jpg +0 -0
  330. data/spec/dummy/public/img/gallery/small/12.jpg +0 -0
  331. data/spec/dummy/public/img/gallery/small/2.jpg +0 -0
  332. data/spec/dummy/public/img/gallery/small/3.jpg +0 -0
  333. data/spec/dummy/public/img/gallery/small/4.jpg +0 -0
  334. data/spec/dummy/public/img/gallery/small/5.jpg +0 -0
  335. data/spec/dummy/public/img/gallery/small/6.jpg +0 -0
  336. data/spec/dummy/public/img/gallery/small/7.jpg +0 -0
  337. data/spec/dummy/public/img/gallery/small/8.jpg +0 -0
  338. data/spec/dummy/public/img/gallery/small/9.jpg +0 -0
  339. data/spec/dummy/public/img/item/1.jpg +0 -0
  340. data/spec/dummy/public/img/item/2.jpg +0 -0
  341. data/spec/dummy/public/img/item/3.jpg +0 -0
  342. data/spec/dummy/public/img/item/4.jpg +0 -0
  343. data/spec/dummy/public/img/item/5.jpg +0 -0
  344. data/spec/dummy/public/img/item/6.jpg +0 -0
  345. data/spec/dummy/public/img/logo.png +0 -0
  346. data/spec/dummy/public/img/promo-banner.jpg +0 -0
  347. data/spec/dummy/public/img/property-header-bg.jpg +0 -0
  348. data/spec/dummy/public/img/property-view-2.jpg +0 -0
  349. data/spec/dummy/public/img/signin-bg.jpg +0 -0
  350. data/spec/dummy/public/img/slider/1.jpg +0 -0
  351. data/spec/dummy/public/img/slider/2.jpg +0 -0
  352. data/spec/dummy/public/img/slider/3.jpg +0 -0
  353. data/spec/dummy/public/img/slider/4.jpg +0 -0
  354. data/spec/dummy/public/img/slider/5.jpg +0 -0
  355. data/spec/dummy/public/img/slider/6.jpg +0 -0
  356. data/spec/dummy/public/img/testimonial-1.png +0 -0
  357. data/spec/dummy/public/img/testimonial-2.png +0 -0
  358. data/spec/dummy/public/img/testimonial-3.png +0 -0
  359. data/spec/dummy/public/img/testimonial-bg.jpg +0 -0
  360. data/spec/dummy/public/js/bootstrap.js +0 -2363
  361. data/spec/dummy/public/js/custom.js +0 -355
  362. data/spec/dummy/public/js/jquery.fancybox.pack.js +0 -46
  363. data/spec/dummy/public/js/jquery.min.js +0 -5
  364. data/spec/dummy/public/js/jquery.mixitup.js +0 -2098
  365. data/spec/dummy/public/js/nouislider.js +0 -1899
  366. data/spec/dummy/public/js/slick.js +0 -2670
  367. data/spec/dummy/public/system/comfy/cms/files/files/000/000/003/cms_thumb/rerenting-landing_framed.png +0 -0
@@ -1,3500 +0,0 @@
1
- @charset "UTF-8";
2
- /*have to define variables below in other theme stylesheets too
3
- as they are used in shared content_areas code*/
4
- /*below is slightly darker shade of above pale gray*/
5
- /* Table of Content
6
- ==================================================
7
- #BASIC TYPOGRAPHY
8
- #HEADER SECTION
9
- #NAVBAR SECTION
10
- #SLIDER SECTION
11
- #ADVANCE SEARCH SECTION
12
- #ABOUT US SECTION
13
- #LATEST PROPERTY SECTION
14
- #SERVICE SECTION
15
- #PROMO BANNER SECTION
16
- #AGENTS SECTION
17
- #TESTIMONIAL SECTION
18
- #CLIENT BRAND SECTION
19
- #LATEST BLOG SECTION
20
- #PROPERTY PAGE
21
- #PROPERTY DETAILS PAGE
22
- #BLOG PAGE
23
- #BLOG SINGLE PAGE
24
- #CONTACT PAGE
25
- #GALLERY PAGE
26
- #ERROR PAGE
27
- #CONTACT PAGE
28
- #SIGNIN & REGISTER PAGE
29
- #FOOTER SECTION
30
- #RESPONSIVE DESIGN
31
- */
32
- /* BASE - Base tyles, Variables, Mixins, etc. */
33
- body {
34
- background-color: #ffffff;
35
- font-family: "Open Sans", sans-serif;
36
- color: #333333;
37
- font-size: 15px;
38
- overflow-x: hidden; }
39
-
40
- .no-padding {
41
- padding: 0; }
42
-
43
- /* MODULES - Individual site components */
44
- ul {
45
- padding: 0;
46
- margin: 0;
47
- list-style: none; }
48
-
49
- a {
50
- text-decoration: none;
51
- color: #333333; }
52
-
53
- a:hover,
54
- a:focus {
55
- outline: none;
56
- text-decoration: none; }
57
-
58
- h1, h2, h3, h4, h5, h6 {
59
- font-family: "Poppins", sans-serif; }
60
-
61
- h2 {
62
- font-size: 30px;
63
- font-weight: 700;
64
- line-height: 40px;
65
- margin: 0; }
66
-
67
- img {
68
- border: none; }
69
-
70
- .aa-primary-btn {
71
- font-size: 16px;
72
- padding: 10px 30px;
73
- border: 1px solid #e9e9e9;
74
- margin-top: 10px;
75
- display: inline-block;
76
- -webkit-transition: 0.5s;
77
- -moz-transition: 0.5s;
78
- -ms-transition: 0.5s;
79
- -o-transition: 0.5s;
80
- transition: 0.5s; }
81
-
82
- .aa-primary-btn:hover, .aa-primary-btn:focus {
83
- text-decoration: none; }
84
-
85
- .aa-primary-btn span {
86
- margin-right: 5px; }
87
-
88
- .aa-secondary-btn {
89
- color: #fff;
90
- padding: 5px 10px;
91
- -webkit-transition: all 0.5s;
92
- -moz-transition: all 0.5s;
93
- -ms-transition: all 0.5s;
94
- -o-transition: all 0.5s;
95
- transition: all 0.5s; }
96
-
97
- .aa-secondary-btn:hover, .aa-secondary-btn:focus {
98
- background-color: #000;
99
- color: #fff; }
100
-
101
- .aa-view-btn {
102
- color: #fff;
103
- padding: 10px 15px;
104
- font-size: 16px;
105
- display: inline-block;
106
- -webkit-transition: all 0.5s;
107
- -moz-transition: all 0.5s;
108
- -ms-transition: all 0.5s;
109
- -o-transition: all 0.5s;
110
- transition: all 0.5s; }
111
-
112
- .aa-view-btn:hover, .aa-view-btn:focus {
113
- background-color: #fff; }
114
-
115
- /* LAYOUTS - Page layout styles */
116
- /*==================
117
- HEADER SECTION
118
- ====================*/
119
- #aa-header {
120
- border-bottom: 1px solid #fff;
121
- left: 0;
122
- position: absolute;
123
- right: 0;
124
- top: 0;
125
- width: 100%;
126
- z-index: 99; }
127
-
128
- #aa-header .aa-header-area {
129
- display: inline;
130
- padding: 5px 0;
131
- float: left;
132
- width: 100%; }
133
-
134
- #aa-header .aa-header-area .aa-header-left {
135
- display: inline;
136
- float: left;
137
- width: 100%; }
138
-
139
- #aa-header .aa-header-area .aa-header-left .aa-telephone-no {
140
- color: #fff;
141
- float: left;
142
- font-size: 15px; }
143
-
144
- #aa-header .aa-header-area .aa-header-left .aa-telephone-no span {
145
- margin-right: 5px; }
146
-
147
- #aa-header .aa-header-area .aa-header-left .aa-telephone-no span .skype_c2c_logo_img {
148
- display: none !important; }
149
-
150
- #aa-header .aa-header-area .aa-header-left .aa-telephone-no .skype_c2c_text_span {
151
- color: #fff !important; }
152
-
153
- #aa-header .aa-header-area .aa-header-left .aa-email {
154
- color: #fff;
155
- float: left;
156
- letter-spacing: 0.5px;
157
- margin-left: 20px;
158
- font-size: 15px; }
159
-
160
- #aa-header .aa-header-area .aa-header-left .aa-email span {
161
- margin-right: 5px; }
162
-
163
- #aa-header .aa-header-area .aa-header-right {
164
- display: inline;
165
- float: left;
166
- width: 100%;
167
- text-align: right; }
168
-
169
- #aa-header .aa-header-area .aa-header-right .aa-register {
170
- border-right: 1px solid #f8f8f8;
171
- color: #fff;
172
- margin-right: 5px;
173
- padding-right: 10px;
174
- font-size: 15px; }
175
-
176
- #aa-header .aa-header-area .aa-header-right .aa-login {
177
- color: #fff;
178
- font-size: 15px; }
179
-
180
- /*==================
181
- NAVBAR SECTION
182
- ====================*/
183
- #aa-menu-area {
184
- left: 0;
185
- padding-top: 20px;
186
- position: absolute;
187
- right: 0;
188
- top: 35px;
189
- width: 100%;
190
- z-index: 99; }
191
-
192
- #aa-menu-area .main-navbar {
193
- background-color: transparent;
194
- border: medium none;
195
- border-radius: 0; }
196
-
197
- #aa-menu-area .main-navbar .navbar-header .navbar-brand {
198
- padding: 0; }
199
-
200
- #aa-menu-area .main-navbar .navbar-header .aa-logo {
201
- border: 2px solid #fff;
202
- color: #fff;
203
- font-family: "Poppins", sans-serif;
204
- font-size: 30px;
205
- padding: 15px;
206
- line-height: 13px; }
207
-
208
- #aa-menu-area .main-navbar .navbar-header .aa-logo-img {
209
- border: none;
210
- height: 50px;
211
- width: 235px; }
212
-
213
- #aa-menu-area .main-navbar .navbar-header .aa-logo-img img {
214
- width: 100%;
215
- height: 100%; }
216
-
217
- #aa-menu-area .main-navbar .navbar-nav li a {
218
- color: #fff;
219
- -webkit-transition: all 0.5s;
220
- -moz-transition: all 0.5s;
221
- -ms-transition: all 0.5s;
222
- -o-transition: all 0.5s;
223
- transition: all 0.5s; }
224
-
225
- #aa-menu-area .main-navbar .navbar-nav .active a {
226
- background-color: #FFF; }
227
-
228
- #aa-menu-area .main-navbar .navbar-nav .open a {
229
- background-color: #fff; }
230
-
231
- #aa-menu-area .main-navbar .navbar-nav .dropdown-menu {
232
- border: none;
233
- border-radius: 0;
234
- margin-top: 5px; }
235
-
236
- #aa-menu-area .main-navbar .navbar-nav .dropdown-menu li a {
237
- color: #555;
238
- padding: 8px 10px; }
239
-
240
- #aa-menu-area .main-navbar .navbar-right {
241
- margin-right: -30px; }
242
-
243
- #aa-menu-area .navbar-fixed-top {
244
- background-color: #FFF;
245
- padding: 15px 0;
246
- -webkit-transition: all 0.5s;
247
- -moz-transition: all 0.5s;
248
- -ms-transition: all 0.5s;
249
- -o-transition: all 0.5s;
250
- transition: all 0.5s; }
251
-
252
- #aa-menu-area .navbar-fixed-top .navbar-header .aa-logo {
253
- border: 2px solid #888;
254
- color: #555; }
255
-
256
- #aa-menu-area .navbar-fixed-top .navbar-nav li a {
257
- color: #555; }
258
-
259
- /*scrol to top*/
260
- .scrollToTop {
261
- bottom: 60px;
262
- color: #fff;
263
- display: none;
264
- font-size: 23px;
265
- height: 50px;
266
- line-height: 45px;
267
- position: fixed;
268
- right: 20px;
269
- text-align: center;
270
- text-decoration: none;
271
- -webkit-transition: all 0.5s ease 0s;
272
- -moz-transition: all 0.5s ease 0s;
273
- -ms-transition: all 0.5s ease 0s;
274
- -o-transition: all 0.5s ease 0s;
275
- transition: all 0.5s ease 0s;
276
- width: 50px;
277
- z-index: 999; }
278
-
279
- .scrollToTop:hover,
280
- .scrollToTop:focus {
281
- background-color: #FFF;
282
- text-decoration: none;
283
- outline: none; }
284
-
285
- /*Preloader*/
286
- #aa-preloader-area {
287
- background-color: #F8F8F8;
288
- position: fixed;
289
- left: 0;
290
- right: 0;
291
- top: 0;
292
- bottom: 0;
293
- width: 100%;
294
- height: 100%;
295
- z-index: 9999; }
296
-
297
- .pulse {
298
- left: 47%;
299
- position: relative;
300
- top: 44%; }
301
-
302
- .pulse:before, .pulse:after {
303
- content: '';
304
- width: 80px;
305
- height: 80px;
306
- border-radius: 500px;
307
- position: absolute; }
308
-
309
- .pulse:before {
310
- -webkit-animation: pulse-outer 0.8s ease-in infinite;
311
- -moz-animation: pulse-outer 0.8s ease-in infinite;
312
- animation: pulse-outer 0.8s ease-in infinite; }
313
-
314
- .pulse:after {
315
- -webkit-animation: pulse-inner 0.8s linear infinite;
316
- -moz-animation: pulse-inner 0.8s linear infinite;
317
- animation: pulse-inner 0.8s linear infinite; }
318
-
319
- @-webkit-keyframes pulse-outer {
320
- 0% {
321
- opacity: 1;
322
- filter: alpha(opacity=100); }
323
- 50% {
324
- opacity: 0.5;
325
- filter: alpha(opacity=50); }
326
- 100% {
327
- opacity: 0;
328
- filter: alpha(opacity=0); } }
329
- @-moz-keyframes pulse-outer {
330
- 0% {
331
- opacity: 1;
332
- filter: alpha(opacity=100); }
333
- 50% {
334
- opacity: 0.5;
335
- filter: alpha(opacity=50); }
336
- 100% {
337
- opacity: 0;
338
- filter: alpha(opacity=0); } }
339
- @keyframes pulse-outer {
340
- 0% {
341
- opacity: 1;
342
- filter: alpha(opacity=100); }
343
- 50% {
344
- opacity: 0.5;
345
- filter: alpha(opacity=50); }
346
- 100% {
347
- opacity: 0;
348
- filter: alpha(opacity=0); } }
349
- @-webkit-keyframes pulse-inner {
350
- 0% {
351
- -webkit-transform: scale(0);
352
- opacity: 0;
353
- filter: alpha(opacity=0); }
354
- 100% {
355
- -webkit-transform: scale(1);
356
- opacity: 1;
357
- filter: alpha(opacity=100); } }
358
- @-moz-keyframes pulse-inner {
359
- 0% {
360
- -moz-transform: scale(0);
361
- opacity: 0;
362
- filter: alpha(opacity=0); }
363
- 100% {
364
- -moz-transform: scale(1);
365
- opacity: 1;
366
- filter: alpha(opacity=100); } }
367
- @keyframes pulse-inner {
368
- 0% {
369
- -webkit-transform: scale(0);
370
- -moz-transform: scale(0);
371
- -ms-transform: scale(0);
372
- -o-transform: scale(0);
373
- transform: scale(0);
374
- opacity: 0;
375
- filter: alpha(opacity=0); }
376
- 100% {
377
- -webkit-transform: scale(1);
378
- -moz-transform: scale(1);
379
- -ms-transform: scale(1);
380
- -o-transform: scale(1);
381
- transform: scale(1);
382
- opacity: 1;
383
- filter: alpha(opacity=100); } }
384
- /*==================
385
- SLIDER SECTION
386
- ====================*/
387
- #aa-slider {
388
- float: left;
389
- display: inline;
390
- width: 100%; }
391
-
392
- #aa-slider .aa-slider-area {
393
- display: inline;
394
- float: left;
395
- width: 100%; }
396
-
397
- #aa-slider .aa-slider-area .aa-top-slider {
398
- width: 100%; }
399
-
400
- #aa-slider .aa-slider-area .aa-top-slider .slick-arrow {
401
- height: 80px;
402
- width: 80px; }
403
-
404
- #aa-slider .aa-slider-area .aa-top-slider .slick-prev,
405
- #aa-slider .aa-slider-area .aa-top-slider .slick-next {
406
- background-color: transparent;
407
- border: 1px solid #fff;
408
- -webkit-transition: all 0.5s;
409
- -moz-transition: all 0.5s;
410
- -ms-transition: all 0.5s;
411
- -o-transition: all 0.5s;
412
- transition: all 0.5s; }
413
-
414
- #aa-slider .aa-slider-area .aa-top-slider .slick-prev {
415
- left: 20px; }
416
-
417
- #aa-slider .aa-slider-area .aa-top-slider .slick-next {
418
- right: 20px; }
419
-
420
- #aa-slider .aa-slider-area .aa-top-slider .slick-prev::before, #aa-slider .aa-slider-area .aa-top-slider .slick-next::before {
421
- font-family: "fontAwesome";
422
- font-size: 50px; }
423
-
424
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single {
425
- width: 100%;
426
- position: relative; }
427
-
428
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single img {
429
- width: 100%;
430
- height: 700px; }
431
-
432
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content {
433
- background-color: rgba(255, 255, 255, 0.8);
434
- left: 20%;
435
- padding: 30px;
436
- position: absolute;
437
- top: 40%;
438
- z-index: 999; }
439
-
440
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-catg {
441
- font-family: "Poppins", sans-serif;
442
- font-size: 25px;
443
- font-weight: bold;
444
- letter-spacing: 5px;
445
- text-transform: uppercase;
446
- color: #555;
447
- line-height: 25px; }
448
-
449
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-title {
450
- color: #555;
451
- font-size: 40px;
452
- font-weight: bold;
453
- padding-bottom: 5px;
454
- text-transform: uppercase; }
455
-
456
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-location {
457
- font-size: 14px; }
458
-
459
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-location i {
460
- margin-right: 5px; }
461
-
462
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-off {
463
- font-size: 14px;
464
- font-family: "Poppins", sans-serif;
465
- color: #555;
466
- display: inline-block;
467
- margin-top: 10px;
468
- font-weight: bold; }
469
-
470
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-price {
471
- font-family: "Poppins", sans-serif;
472
- font-size: 30px;
473
- font-weight: bold;
474
- text-transform: uppercase;
475
- margin-top: -5px; }
476
-
477
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-btn {
478
- display: inline-block;
479
- -webkit-transition: all 0.5s;
480
- -moz-transition: all 0.5s;
481
- -ms-transition: all 0.5s;
482
- -o-transition: all 0.5s;
483
- transition: all 0.5s;
484
- text-transform: uppercase;
485
- font-size: 15px; }
486
-
487
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-btn span {
488
- margin-left: 3px; }
489
-
490
- /*==================
491
- ADVANCE SEARCH SECTION
492
- ====================*/
493
- #aa-advance-search {
494
- display: inline;
495
- float: left;
496
- width: 100%; }
497
-
498
- #aa-advance-search .aa-advance-search-area {
499
- background-color: rgba(221, 221, 221, 0.8);
500
- border-radius: 10px 10px 0 0;
501
- display: inline;
502
- float: left;
503
- margin-top: -100px;
504
- min-height: 200px;
505
- padding: 25px 20px;
506
- position: relative;
507
- width: 100%; }
508
-
509
- #aa-advance-search .aa-advance-search-area .aa-advance-search-top {
510
- display: inline;
511
- float: left;
512
- width: 100%; }
513
-
514
- #aa-advance-search .aa-advance-search-area .aa-advance-search-top .aa-single-advance-search {
515
- display: inline;
516
- float: left;
517
- width: 100%; }
518
-
519
- #aa-advance-search .aa-advance-search-area .aa-advance-search-top .aa-single-advance-search input[type="text"] {
520
- border: 1px solid #fff;
521
- border-radius: 2px;
522
- color: #555;
523
- height: 40px;
524
- padding: 5px;
525
- width: 100%;
526
- font-size: 18px; }
527
-
528
- #aa-advance-search .aa-advance-search-area .aa-advance-search-top .aa-single-advance-search select {
529
- border: 1px solid #fff;
530
- border-radius: 2px;
531
- color: #555;
532
- height: 40px;
533
- padding: 5px;
534
- width: 100%; }
535
-
536
- #aa-advance-search .aa-advance-search-area .aa-advance-search-top .aa-single-advance-search .aa-search-btn {
537
- border: medium none;
538
- border-radius: 5px;
539
- color: #fff;
540
- font-size: 18px;
541
- font-weight: bold;
542
- height: 40px;
543
- outline: medium none;
544
- text-transform: uppercase;
545
- width: 100%; }
546
-
547
- #aa-advance-search .aa-advance-search-area .aa-advance-search-bottom {
548
- display: inline;
549
- float: left;
550
- width: 100%;
551
- margin-top: 50px; }
552
-
553
- #aa-advance-search .aa-advance-search-area .aa-advance-search-bottom .aa-single-filter-search {
554
- display: inline;
555
- float: left;
556
- width: 100%;
557
- text-align: center; }
558
-
559
- #aa-advance-search .aa-advance-search-area .aa-advance-search-bottom .aa-single-filter-search span {
560
- display: inline-block;
561
- font-family: "Poppins", sans-serif;
562
- margin: 0 10px; }
563
-
564
- #aa-advance-search .aa-advance-search-area .aa-advance-search-bottom .aa-single-filter-search .noUi-connect {
565
- box-shadow: 0 0 3px rgba(51, 51, 51, 0.45) inset;
566
- transition: background 450ms ease 0s; }
567
-
568
- #aa-advance-search .aa-advance-search-area .aa-advance-search-bottom .aa-single-filter-search .noUi-handle {
569
- border: none;
570
- border-radius: 50%;
571
- box-shadow: none;
572
- height: 25px;
573
- left: -17px;
574
- top: -12px;
575
- width: 25px; }
576
-
577
- #aa-advance-search .aa-advance-search-area .aa-advance-search-bottom .aa-single-filter-search .noUi-handle:after, #aa-advance-search .aa-advance-search-area .aa-advance-search-bottom .aa-single-filter-search .noUi-handle:before {
578
- display: none; }
579
-
580
- /*==================
581
- ABOUT US SECTION
582
- ====================*/
583
- #aa-about-us {
584
- display: inline;
585
- float: left;
586
- width: 100%; }
587
-
588
- #aa-about-us .aa-about-us-area {
589
- display: inline;
590
- float: left;
591
- width: 100%;
592
- padding: 100px 0; }
593
-
594
- #aa-about-us .aa-about-us-area .aa-about-us-left {
595
- display: inline;
596
- float: left;
597
- width: 100%; }
598
-
599
- #aa-about-us .aa-about-us-area .aa-about-us-left img {
600
- width: 100%; }
601
-
602
- #aa-about-us .aa-about-us-area .aa-about-us-right {
603
- display: inline;
604
- float: left;
605
- width: 100%; }
606
-
607
- #aa-about-us .aa-about-us-area .aa-about-us-right ul {
608
- margin-left: 30px; }
609
-
610
- #aa-about-us .aa-about-us-area .aa-about-us-right ul li {
611
- font-style: italic;
612
- list-style: circle;
613
- margin-bottom: 5px; }
614
-
615
- .aa-title {
616
- display: inline;
617
- float: left;
618
- width: 100%;
619
- text-align: center;
620
- margin-bottom: 20px; }
621
-
622
- .aa-title p {
623
- font-size: 18px;
624
- padding: 0 50px; }
625
-
626
- .aa-title span {
627
- width: 2px;
628
- height: 15px;
629
- display: inline-block;
630
- position: relative; }
631
-
632
- .aa-title span:before {
633
- content: '';
634
- right: 4px;
635
- top: 7px;
636
- position: absolute;
637
- width: 100px;
638
- height: 2px; }
639
-
640
- .aa-title span:after {
641
- content: '';
642
- left: 4px;
643
- top: 7px;
644
- position: absolute;
645
- width: 100px;
646
- height: 2px; }
647
-
648
- /*==================
649
- LATEST PROPERTY SECTION
650
- ====================*/
651
- #aa-latest-property {
652
- background-color: #f8f8f8;
653
- display: inline;
654
- float: left;
655
- width: 100%;
656
- padding: 100px 0; }
657
-
658
- #aa-latest-property .aa-latest-property-area {
659
- display: inline;
660
- float: left;
661
- width: 100%; }
662
-
663
- #aa-latest-property .aa-latest-property-area .aa-latest-properties-content {
664
- display: inline;
665
- float: left;
666
- margin-top: 20px;
667
- width: 100%; }
668
-
669
- .aa-properties-item {
670
- display: inline;
671
- float: left;
672
- margin-top: 30px;
673
- width: 100%;
674
- position: relative;
675
- -webkit-transition: all 0.5s;
676
- -moz-transition: all 0.5s;
677
- -ms-transition: all 0.5s;
678
- -o-transition: all 0.5s;
679
- transition: all 0.5s; }
680
-
681
- .aa-properties-item:hover {
682
- box-shadow: 1px 2px 5px 3px #ccc; }
683
-
684
- .aa-properties-item .aa-properties-item-img {
685
- width: 100%; }
686
-
687
- .aa-properties-item .aa-properties-item-img img {
688
- width: 100%; }
689
-
690
- .aa-properties-item .aa-tag {
691
- color: #fff;
692
- padding: 6px 10px;
693
- position: absolute;
694
- left: 15px;
695
- top: -15px; }
696
-
697
- .aa-properties-item .for-rent {
698
- background-color: #20ceb3; }
699
-
700
- .aa-properties-item .sold-out {
701
- background-color: #ff0000; }
702
-
703
- .aa-properties-item .aa-properties-item-content {
704
- background-color: #fff;
705
- border: 1px solid #ddd;
706
- border-top: none;
707
- display: inline;
708
- float: left;
709
- width: 100%; }
710
-
711
- .aa-properties-item .aa-properties-item-content .aa-properties-info {
712
- border-bottom: 1px solid #ddd;
713
- display: inline;
714
- float: left;
715
- padding: 10px;
716
- width: 100%;
717
- text-align: left; }
718
-
719
- .aa-properties-item .aa-properties-item-content .aa-properties-info span {
720
- margin: 0px 5px;
721
- font-size: 14px; }
722
-
723
- .aa-properties-item .aa-properties-item-content .aa-properties-about {
724
- display: inline;
725
- float: left;
726
- width: 100%;
727
- padding: 10px; }
728
-
729
- .aa-properties-item .aa-properties-item-content .aa-properties-about h3 {
730
- margin-top: 0px; }
731
-
732
- .aa-properties-item .aa-properties-item-content .aa-properties-about p {
733
- font-size: 14px; }
734
-
735
- .aa-properties-item .aa-properties-item-content .aa-properties-detial {
736
- border-top: 1px solid #ddd;
737
- display: inline;
738
- float: left;
739
- padding: 10px;
740
- width: 100%; }
741
-
742
- .aa-properties-item .aa-properties-item-content .aa-properties-detial .aa-price {
743
- float: left;
744
- font-size: 18px;
745
- padding: 3px 0; }
746
-
747
- .aa-properties-item .aa-properties-item-content .aa-properties-detial a {
748
- float: right; }
749
-
750
- /*==================
751
- SERVICE SECTION
752
- ====================*/
753
- #aa-service {
754
- display: inline;
755
- float: left;
756
- width: 100%;
757
- padding: 100px 0; }
758
-
759
- #aa-service .aa-service-area {
760
- display: inline;
761
- float: left;
762
- width: 100%; }
763
-
764
- #aa-service .aa-service-area .aa-service-content {
765
- display: inline;
766
- float: left;
767
- width: 100%;
768
- margin-top: 40px; }
769
-
770
- #aa-service .aa-service-area .aa-service-content .aa-single-service {
771
- display: inline;
772
- float: left;
773
- text-align: center;
774
- width: 100%; }
775
-
776
- #aa-service .aa-service-area .aa-service-content .aa-single-service:hover .aa-service-icon:before {
777
- border: 2px solid #fff; }
778
-
779
- #aa-service .aa-service-area .aa-service-content .aa-single-service .aa-service-icon {
780
- display: inline;
781
- float: left;
782
- width: 100%;
783
- margin-bottom: 20px;
784
- position: relative; }
785
-
786
- #aa-service .aa-service-area .aa-service-content .aa-single-service .aa-service-icon:before {
787
- border: 2px solid transparent;
788
- border-radius: 50%;
789
- content: "";
790
- height: 100px;
791
- margin-left: 4px;
792
- position: absolute;
793
- width: 92px;
794
- -webkit-transition: all 0.5s;
795
- -moz-transition: all 0.5s;
796
- -ms-transition: all 0.5s;
797
- -o-transition: all 0.5s;
798
- transition: all 0.5s; }
799
-
800
- #aa-service .aa-service-area .aa-service-content .aa-single-service .aa-service-icon span {
801
- border-radius: 50%;
802
- color: #fff;
803
- font-size: 40px;
804
- height: 100px;
805
- line-height: 100px;
806
- width: 100px; }
807
-
808
- #aa-service .aa-service-area .aa-service-content .aa-single-service .aa-single-service-content {
809
- display: inline;
810
- float: left;
811
- width: 100%; }
812
-
813
- #aa-service .aa-service-area .aa-service-content .aa-single-service .aa-single-service-content h4 {
814
- font-size: 20px; }
815
-
816
- #aa-service .aa-service-area .aa-service-content .aa-single-service .aa-single-service-content h4 a {
817
- -webkit-transition: all 0.5s;
818
- -moz-transition: all 0.5s;
819
- -ms-transition: all 0.5s;
820
- -o-transition: all 0.5s;
821
- transition: all 0.5s; }
822
-
823
- #aa-service .aa-service-area .aa-service-content .aa-single-service .aa-single-service-content p {
824
- font-size: 13px; }
825
-
826
- /*==================
827
- PROMO BANNER SECTION
828
- ====================*/
829
- #aa-promo-banner {
830
- background-image: url("../img/promo-banner.jpg");
831
- background-attachment: fixed;
832
- background-position: center center;
833
- background-size: cover;
834
- display: inline;
835
- float: left;
836
- width: 100%;
837
- padding: 100px 0;
838
- position: relative; }
839
-
840
- #aa-promo-banner:before {
841
- background-color: rgba(0, 0, 0, 0.6);
842
- content: '';
843
- position: absolute;
844
- left: 0;
845
- top: 0;
846
- right: 0;
847
- bottom: 0; }
848
-
849
- #aa-promo-banner .aa-promo-banner-area {
850
- display: inline;
851
- float: left;
852
- width: 100%;
853
- padding: 0 150px;
854
- text-align: center; }
855
-
856
- #aa-promo-banner .aa-promo-banner-area h3 {
857
- color: #fff;
858
- font-size: 40px;
859
- font-weight: 700;
860
- margin-bottom: 20px;
861
- text-transform: capitalize; }
862
-
863
- #aa-promo-banner .aa-promo-banner-area p {
864
- color: #fff;
865
- display: inline-block;
866
- font-size: 16px;
867
- margin-top: 10px; }
868
-
869
- #aa-promo-banner .aa-promo-banner-area a {
870
- font-weight: bold;
871
- margin-top: 50px;
872
- text-transform: uppercase; }
873
-
874
- /*==================
875
- AGENTS SECTION
876
- ====================*/
877
- #aa-agents {
878
- display: inline;
879
- float: left;
880
- width: 100%;
881
- padding: 100px 0; }
882
-
883
- #aa-agents .aa-agents-area {
884
- display: inline;
885
- float: left;
886
- width: 100%; }
887
-
888
- #aa-agents .aa-agents-area .aa-agents-content {
889
- display: inline;
890
- float: left;
891
- width: 100%;
892
- margin-top: 50px; }
893
-
894
- #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider {
895
- margin-left: -30px; }
896
-
897
- #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider li {
898
- float: left;
899
- margin-left: 30px;
900
- width: 22.42%; }
901
-
902
- #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider li .aa-single-agents {
903
- display: inline;
904
- float: left;
905
- width: 100%; }
906
-
907
- #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider li .aa-single-agents .aa-agents-img {
908
- display: inline;
909
- float: left;
910
- width: 100%; }
911
-
912
- #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider li .aa-single-agents .aa-agents-img img {
913
- width: 100%; }
914
-
915
- #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider li .aa-single-agents .aa-agetns-info {
916
- display: inline;
917
- float: left;
918
- padding: 10px;
919
- width: 100%;
920
- text-align: center;
921
- color: #fff; }
922
-
923
- #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider li .aa-single-agents .aa-agetns-info h4 {
924
- color: #fff;
925
- margin-bottom: 5px;
926
- font-weight: bold; }
927
-
928
- #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider li .aa-single-agents .aa-agetns-info h4 a {
929
- color: #fff; }
930
-
931
- #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider li .aa-single-agents .aa-agetns-info span {
932
- display: block;
933
- margin-bottom: 5px;
934
- font-size: 16px; }
935
-
936
- #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider li .aa-single-agents .aa-agetns-info .aa-agent-social {
937
- display: inline;
938
- float: left;
939
- width: 100%; }
940
-
941
- #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider li .aa-single-agents .aa-agetns-info .aa-agent-social a {
942
- border: 1px solid #fff;
943
- color: #fff;
944
- display: inline-block;
945
- margin: 10px 5px;
946
- min-width: 40px;
947
- padding: 5px 0;
948
- text-align: center;
949
- -webkit-transition: all 0.5s;
950
- -moz-transition: all 0.5s;
951
- -ms-transition: all 0.5s;
952
- -o-transition: all 0.5s;
953
- transition: all 0.5s; }
954
-
955
- #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider li .aa-single-agents .aa-agetns-info .aa-agent-social a:hover, #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider li .aa-single-agents .aa-agetns-info .aa-agent-social a:focus {
956
- background-color: #FFF; }
957
-
958
- /*==================
959
- TESTIMONIAL SECTION
960
- ====================*/
961
- #aa-client-testimonial {
962
- background-attachment: fixed;
963
- background-image: url("../img/testimonial-bg.jpg");
964
- background-position: center center;
965
- background-repeat: no-repeat;
966
- background-size: cover;
967
- display: inline;
968
- float: left;
969
- padding: 100px 0;
970
- width: 100%;
971
- position: relative; }
972
-
973
- #aa-client-testimonial:before {
974
- background-color: rgba(0, 0, 0, 0.8);
975
- bottom: 0;
976
- content: "";
977
- left: 0;
978
- position: absolute;
979
- right: 0;
980
- top: 0; }
981
-
982
- #aa-client-testimonial .aa-client-testimonial-area {
983
- display: inline;
984
- float: left;
985
- width: 100%; }
986
-
987
- #aa-client-testimonial .aa-client-testimonial-area .aa-title p {
988
- color: #fff; }
989
-
990
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content {
991
- display: inline;
992
- float: left;
993
- width: 100%; }
994
-
995
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider {
996
- display: inline;
997
- float: left;
998
- margin-top: 50px;
999
- width: 100%; }
1000
-
1001
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider .slick-prev {
1002
- background: none;
1003
- left: 10%; }
1004
-
1005
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider .slick-prev::before {
1006
- content: "\f177"; }
1007
-
1008
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider .slick-next {
1009
- background: none;
1010
- right: 10%; }
1011
-
1012
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider .slick-next::before {
1013
- content: "\f178"; }
1014
-
1015
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li {
1016
- display: inline;
1017
- float: left;
1018
- width: 100%; }
1019
-
1020
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single {
1021
- display: inline;
1022
- float: left;
1023
- padding: 0 150px;
1024
- position: relative;
1025
- width: 100%; }
1026
-
1027
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single:after {
1028
- background-color: rgba(50, 59, 64, 0.8);
1029
- content: "";
1030
- height: 370px;
1031
- top: 0;
1032
- left: 30%;
1033
- position: absolute;
1034
- width: 40%; }
1035
-
1036
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single .aa-testimonial-img {
1037
- display: inline;
1038
- float: left;
1039
- width: 100%;
1040
- text-align: center;
1041
- position: relative;
1042
- z-index: 10; }
1043
-
1044
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single .aa-testimonial-img img {
1045
- background-color: #FFF;
1046
- display: inline-block;
1047
- width: 100px;
1048
- height: 100px;
1049
- margin-top: 24px;
1050
- border-radius: 50%; }
1051
-
1052
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single .aa-testimonial-info {
1053
- display: inline;
1054
- float: left;
1055
- width: 100%;
1056
- text-align: center; }
1057
-
1058
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single .aa-testimonial-info p {
1059
- color: #fff;
1060
- font-size: 18px;
1061
- margin-top: 30px;
1062
- padding: 0 100px;
1063
- position: relative;
1064
- z-index: 20; }
1065
-
1066
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single .aa-testimonial-info p:before {
1067
- content: '\f10e';
1068
- font-family: fontAwesome;
1069
- font-size: 50px;
1070
- left: 1%;
1071
- position: absolute;
1072
- text-align: center;
1073
- top: 20%;
1074
- opacity: 0.6;
1075
- width: 100%;
1076
- z-index: -10; }
1077
-
1078
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single .aa-testimonial-bio {
1079
- color: #fff;
1080
- display: inline-block;
1081
- float: left;
1082
- margin-top: 20px;
1083
- margin-bottom: 25px;
1084
- position: relative;
1085
- text-align: center;
1086
- width: 100%;
1087
- z-index: 30; }
1088
-
1089
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single .aa-testimonial-bio p {
1090
- border-top: 1px solid #f8f8f8;
1091
- display: inline-block;
1092
- font-size: 18px;
1093
- font-weight: bold;
1094
- margin-bottom: 0;
1095
- min-width: 175px;
1096
- padding-top: 10px; }
1097
-
1098
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single .aa-testimonial-bio span {
1099
- display: block; }
1100
-
1101
- /*==================
1102
- CLIENT BRAND SECTION
1103
- ====================*/
1104
- #aa-client-brand {
1105
- background-color: #f8f8f8;
1106
- display: inline;
1107
- float: left;
1108
- padding: 50px 0;
1109
- width: 100%; }
1110
-
1111
- #aa-client-brand .aa-client-brand-area {
1112
- display: inline;
1113
- float: left;
1114
- width: 100%; }
1115
-
1116
- #aa-client-brand .aa-client-brand-area .aa-client-brand-slider {
1117
- display: inline-block;
1118
- text-align: center;
1119
- width: 100%; }
1120
-
1121
- #aa-client-brand .aa-client-brand-area .aa-client-brand-slider li {
1122
- display: inline-block;
1123
- margin: 0 36px; }
1124
-
1125
- #aa-client-brand .aa-client-brand-area .aa-client-brand-slider li .aa-client-single-brand {
1126
- opacity: 0.5;
1127
- -webkit-transition: all 0.5s;
1128
- -moz-transition: all 0.5s;
1129
- -ms-transition: all 0.5s;
1130
- -o-transition: all 0.5s;
1131
- transition: all 0.5s; }
1132
-
1133
- #aa-client-brand .aa-client-brand-area .aa-client-brand-slider li .aa-client-single-brand:hover {
1134
- opacity: 1; }
1135
-
1136
- /*==================
1137
- LATEST BLOG SECTION
1138
- ====================*/
1139
- #aa-latest-blog {
1140
- display: inline;
1141
- float: left;
1142
- padding: 100px 0;
1143
- width: 100%; }
1144
-
1145
- #aa-latest-blog .aa-latest-blog-area {
1146
- display: inline;
1147
- float: left;
1148
- width: 100%; }
1149
-
1150
- #aa-latest-blog .aa-latest-blog-area .aa-latest-blog-content {
1151
- display: inline;
1152
- float: left;
1153
- margin-top: 50px;
1154
- width: 100%; }
1155
-
1156
- .aa-blog-single {
1157
- background-color: #f8f8f8;
1158
- display: inline;
1159
- float: left;
1160
- width: 100%; }
1161
-
1162
- .aa-blog-single .aa-blog-img {
1163
- display: inline;
1164
- float: left;
1165
- position: relative;
1166
- width: 100%; }
1167
-
1168
- .aa-blog-single .aa-blog-img img {
1169
- max-width: 100%; }
1170
-
1171
- .aa-blog-single .aa-blog-img .aa-date-tag {
1172
- color: #fff;
1173
- padding: 5px 8px;
1174
- font-weight: bold;
1175
- position: absolute;
1176
- left: 0;
1177
- top: 15px; }
1178
-
1179
- .aa-blog-single .aa-blog-single-content {
1180
- display: inline;
1181
- float: left;
1182
- padding: 10px;
1183
- width: 100%;
1184
- padding-bottom: 20px; }
1185
-
1186
- .aa-blog-single .aa-blog-single-content h3 {
1187
- font-size: 22px;
1188
- margin-bottom: 15px; }
1189
-
1190
- .aa-blog-single .aa-blog-single-content h3 a {
1191
- -webkit-transition: all 0.5s;
1192
- -moz-transition: all 0.5s;
1193
- -ms-transition: all 0.5s;
1194
- -o-transition: all 0.5s;
1195
- transition: all 0.5s; }
1196
-
1197
- .aa-blog-single .aa-blog-single-content p {
1198
- font-size: 14px; }
1199
-
1200
- .aa-blog-single .aa-blog-single-bottom {
1201
- border-top: 1px solid #ccc;
1202
- padding: 10px;
1203
- display: inline;
1204
- margin-top: 10px;
1205
- float: left;
1206
- width: 100%; }
1207
-
1208
- .aa-blog-single .aa-blog-single-bottom .aa-blog-author {
1209
- float: left;
1210
- font-size: 14px;
1211
- font-weight: bold;
1212
- letter-spacing: 0.5px;
1213
- -webkit-transition: all 0.5s;
1214
- -moz-transition: all 0.5s;
1215
- -ms-transition: all 0.5s;
1216
- -o-transition: all 0.5s;
1217
- transition: all 0.5s; }
1218
-
1219
- .aa-blog-single .aa-blog-single-bottom .aa-blog-author i {
1220
- margin-right: 5px; }
1221
-
1222
- .aa-blog-single .aa-blog-single-bottom .aa-blog-comments {
1223
- float: right;
1224
- font-size: 14px;
1225
- font-weight: bold;
1226
- letter-spacing: 0.5px;
1227
- -webkit-transition: all 0.5s;
1228
- -moz-transition: all 0.5s;
1229
- -ms-transition: all 0.5s;
1230
- -o-transition: all 0.5s;
1231
- transition: all 0.5s; }
1232
-
1233
- .aa-blog-single .aa-blog-single-bottom .aa-blog-comments i {
1234
- margin-right: 5px; }
1235
-
1236
- /*==================
1237
- PROPERTY PAGE
1238
- ====================*/
1239
- #aa-property-header {
1240
- background-image: url("../img/property-header-bg.jpg");
1241
- background-attachment: fixed;
1242
- background-position: center center;
1243
- background-size: cover;
1244
- display: inline;
1245
- float: left;
1246
- position: relative;
1247
- min-height: 400px;
1248
- width: 100%; }
1249
-
1250
- #aa-property-header::before {
1251
- background-color: rgba(0, 0, 0, 0.4);
1252
- bottom: 0;
1253
- content: "";
1254
- left: 0;
1255
- position: absolute;
1256
- right: 0;
1257
- top: 0; }
1258
-
1259
- #aa-property-header .aa-property-header-inner {
1260
- display: inline;
1261
- float: left;
1262
- padding: 150px 0 50px;
1263
- text-align: center;
1264
- width: 100%; }
1265
-
1266
- #aa-property-header .aa-property-header-inner h2 {
1267
- color: #fff;
1268
- letter-spacing: 0.5px;
1269
- margin-top: 65px;
1270
- text-transform: uppercase; }
1271
-
1272
- #aa-property-header .aa-property-header-inner .breadcrumb {
1273
- background: none;
1274
- border: none; }
1275
-
1276
- #aa-property-header .aa-property-header-inner .breadcrumb li a {
1277
- color: #fff; }
1278
-
1279
- #aa-property-header .aa-property-header-inner .breadcrumb li.active {
1280
- color: #fff; }
1281
-
1282
- #aa-properties {
1283
- display: inline;
1284
- float: left;
1285
- width: 100%;
1286
- padding: 30px 0 100px; }
1287
-
1288
- #aa-properties .aa-properties-content {
1289
- display: inline;
1290
- float: left;
1291
- width: 100%; }
1292
-
1293
- #aa-properties .aa-properties-content .aa-properties-content-head {
1294
- border: 1px solid #ddd;
1295
- display: inline;
1296
- float: left;
1297
- padding: 10px 15px;
1298
- width: 100%; }
1299
-
1300
- #aa-properties .aa-properties-content .aa-properties-content-head .aa-properties-content-head-left {
1301
- float: left; }
1302
-
1303
- #aa-properties .aa-properties-content .aa-properties-content-head .aa-properties-content-head-left label {
1304
- font-weight: normal;
1305
- margin-bottom: 0;
1306
- font-size: 18px;
1307
- margin-right: 10px; }
1308
-
1309
- #aa-properties .aa-properties-content .aa-properties-content-head .aa-properties-content-head-left .aa-sort-form {
1310
- float: left; }
1311
-
1312
- #aa-properties .aa-properties-content .aa-properties-content-head .aa-properties-content-head-left .aa-show-form {
1313
- float: left;
1314
- margin-left: 25px; }
1315
-
1316
- #aa-properties .aa-properties-content .aa-properties-content-head .aa-properties-content-head-right {
1317
- float: right; }
1318
-
1319
- #aa-properties .aa-properties-content .aa-properties-content-head .aa-properties-content-head-right a {
1320
- border: 1px solid #ccc;
1321
- display: inline-block;
1322
- font-size: 20px;
1323
- padding: 2px 8px;
1324
- -webkit-transition: all 0.5s;
1325
- -moz-transition: all 0.5s;
1326
- -ms-transition: all 0.5s;
1327
- -o-transition: all 0.5s;
1328
- transition: all 0.5s; }
1329
-
1330
- #aa-properties .aa-properties-content .aa-properties-content-head .aa-properties-content-head-right #aa-grid-properties {
1331
- margin-right: 5px; }
1332
-
1333
- #aa-properties .aa-properties-content .aa-properties-content-body {
1334
- display: inline;
1335
- float: left;
1336
- width: 100%; }
1337
-
1338
- #aa-properties .aa-properties-content .aa-properties-content-body .aa-properties-nav {
1339
- margin-left: -30px;
1340
- -webkit-transition: all 0.5s;
1341
- -moz-transition: all 0.5s;
1342
- -ms-transition: all 0.5s;
1343
- -o-transition: all 0.5s;
1344
- transition: all 0.5s; }
1345
-
1346
- #aa-properties .aa-properties-content .aa-properties-content-body .aa-properties-nav li {
1347
- display: block;
1348
- float: left;
1349
- margin: 0 0 20px 30px;
1350
- width: 46.1%; }
1351
-
1352
- #aa-properties .aa-properties-content .aa-properties-content-body .aa-list-view {
1353
- margin-left: 0; }
1354
-
1355
- #aa-properties .aa-properties-content .aa-properties-content-body .aa-list-view li {
1356
- width: 100%;
1357
- margin: 0; }
1358
-
1359
- #aa-properties .aa-properties-content .aa-properties-content-body .aa-list-view li .aa-properties-item .aa-properties-item-img {
1360
- display: block;
1361
- width: 50%;
1362
- float: left; }
1363
-
1364
- #aa-properties .aa-properties-content .aa-properties-content-body .aa-list-view li .aa-properties-item .aa-properties-item-content {
1365
- width: 50%;
1366
- border-top: 1px solid #ddd; }
1367
-
1368
- #aa-properties .aa-properties-content .aa-properties-content-bottom {
1369
- display: inline;
1370
- float: left;
1371
- width: 100%; }
1372
-
1373
- #aa-properties .aa-properties-content .aa-properties-content-bottom .pagination {
1374
- margin-top: 40px; }
1375
-
1376
- #aa-properties .aa-properties-content .aa-properties-content-bottom .pagination li:first-child a {
1377
- border: 1px solid #ccc !important;
1378
- border-radius: 0;
1379
- margin-left: 0;
1380
- margin-right: 1px; }
1381
-
1382
- #aa-properties .aa-properties-content .aa-properties-content-bottom .pagination li:last-child a {
1383
- border: 1px solid #ccc !important;
1384
- border-radius: 0;
1385
- margin-left: 0;
1386
- margin-right: 2px; }
1387
-
1388
- #aa-properties .aa-properties-content .aa-properties-content-bottom .pagination li a {
1389
- border: 1px solid transparent; }
1390
-
1391
- #aa-properties .aa-properties-content .aa-properties-content-bottom .pagination li a:hover, #aa-properties .aa-properties-content .aa-properties-content-bottom .pagination li a:focus {
1392
- color: #fff; }
1393
-
1394
- #aa-properties .aa-properties-content .aa-properties-content-bottom .pagination .active a {
1395
- color: #fff; }
1396
-
1397
- #aa-properties .aa-properties-sidebar {
1398
- background-color: #f8f8f8;
1399
- display: inline;
1400
- float: left;
1401
- padding: 10px 20px;
1402
- width: 100%; }
1403
-
1404
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar {
1405
- display: inline;
1406
- float: left;
1407
- margin-bottom: 20px;
1408
- width: 100%; }
1409
-
1410
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar h3 {
1411
- text-transform: uppercase; }
1412
-
1413
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .aa-single-advance-search {
1414
- display: inline;
1415
- float: left;
1416
- width: 100%;
1417
- margin-top: 15px; }
1418
-
1419
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .aa-single-advance-search input[type="text"] {
1420
- border: 1px solid #fff;
1421
- border-radius: 2px;
1422
- color: #555;
1423
- height: 40px;
1424
- padding: 5px;
1425
- width: 100%;
1426
- font-size: 18px; }
1427
-
1428
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .aa-single-advance-search select {
1429
- border: 1px solid #fff;
1430
- border-radius: 2px;
1431
- color: #555;
1432
- height: 40px;
1433
- padding: 5px;
1434
- width: 100%; }
1435
-
1436
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .aa-single-advance-search .aa-search-btn {
1437
- border: medium none;
1438
- border-radius: 5px;
1439
- color: #fff;
1440
- font-size: 18px;
1441
- font-weight: bold;
1442
- margin-top: 15px;
1443
- height: 50px;
1444
- outline: medium none;
1445
- text-transform: uppercase;
1446
- width: 100%; }
1447
-
1448
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .aa-single-filter-search {
1449
- display: inline;
1450
- float: left;
1451
- width: 100%;
1452
- margin-top: 15px;
1453
- text-align: center; }
1454
-
1455
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .aa-single-filter-search span {
1456
- display: inline-block;
1457
- font-family: "Poppins", sans-serif;
1458
- margin: 0 5px; }
1459
-
1460
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .aa-single-filter-search .noUi-connect {
1461
- box-shadow: 0 0 3px rgba(51, 51, 51, 0.45) inset;
1462
- transition: background 450ms ease 0s; }
1463
-
1464
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .aa-single-filter-search .noUi-handle {
1465
- border: none;
1466
- border-radius: 50%;
1467
- box-shadow: none;
1468
- height: 25px;
1469
- left: -17px;
1470
- top: -12px;
1471
- width: 25px; }
1472
-
1473
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .aa-single-filter-search .noUi-handle:after, #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .aa-single-filter-search .noUi-handle:before {
1474
- display: none; }
1475
-
1476
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .media {
1477
- margin-top: 20px; }
1478
-
1479
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .media .media-object {
1480
- width: 100px;
1481
- height: 90px; }
1482
-
1483
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .media .media-body h4 a {
1484
- -webkit-transition: all 0.5s;
1485
- -moz-transition: all 0.5s;
1486
- -ms-transition: all 0.5s;
1487
- -o-transition: all 0.5s;
1488
- transition: all 0.5s; }
1489
-
1490
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .media .media-body p {
1491
- font-size: 12px; }
1492
-
1493
- .aa-properties-content-bottom {
1494
- display: inline;
1495
- float: left;
1496
- width: 100%; }
1497
-
1498
- .aa-properties-content-bottom .pagination {
1499
- margin-top: 40px; }
1500
-
1501
- .aa-properties-content-bottom .pagination li:first-child a {
1502
- border: 1px solid #ccc !important;
1503
- border-radius: 0;
1504
- margin-left: 0;
1505
- margin-right: 1px; }
1506
-
1507
- .aa-properties-content-bottom .pagination li:last-child a {
1508
- border: 1px solid #ccc !important;
1509
- border-radius: 0;
1510
- margin-left: 0;
1511
- margin-right: 2px; }
1512
-
1513
- .aa-properties-content-bottom .pagination li a {
1514
- border: 1px solid transparent; }
1515
-
1516
- .aa-properties-content-bottom .pagination li a:hover, .aa-properties-content-bottom .pagination li a:focus {
1517
- color: #fff; }
1518
-
1519
- .aa-properties-content-bottom .pagination .active a {
1520
- color: #fff; }
1521
-
1522
- /*==================
1523
- PROPERTY DETAILS PAGE
1524
- ====================*/
1525
- .aa-properties-details {
1526
- display: inline;
1527
- float: left;
1528
- width: 100%; }
1529
-
1530
- .aa-properties-details .aa-properties-details-img {
1531
- display: inline;
1532
- float: left;
1533
- width: 100%; }
1534
-
1535
- .aa-properties-details .aa-properties-details-img img {
1536
- height: 500px;
1537
- width: 100%; }
1538
-
1539
- .aa-properties-details .aa-properties-details-img .slick-prev, .aa-properties-details .aa-properties-details-img .slick-next {
1540
- height: 50px;
1541
- top: 47%;
1542
- width: 50px; }
1543
-
1544
- .aa-properties-details .aa-properties-info {
1545
- display: inline;
1546
- float: left;
1547
- width: 100%; }
1548
-
1549
- .aa-properties-details .aa-properties-info h2 {
1550
- margin-top: 20px; }
1551
-
1552
- .aa-properties-details .aa-properties-info .aa-price {
1553
- color: #000;
1554
- display: inline-block;
1555
- font-size: 30px;
1556
- font-weight: bold;
1557
- margin-bottom: 20px;
1558
- margin-top: 10px; }
1559
-
1560
- .aa-properties-details .aa-properties-info h4 {
1561
- font-size: 22px;
1562
- margin-bottom: 15px;
1563
- margin-top: 20px; }
1564
-
1565
- .aa-properties-details .aa-properties-info ul {
1566
- margin-left: 20px; }
1567
-
1568
- .aa-properties-details .aa-properties-info ul li {
1569
- margin-bottom: 10px; }
1570
-
1571
- .aa-properties-details .aa-properties-info ul li:before {
1572
- content: '\f046';
1573
- font-family: fontAwesome;
1574
- left: 0;
1575
- top: 0;
1576
- margin-right: 10px; }
1577
-
1578
- .aa-properties-details .aa-properties-info iframe {
1579
- margin-top: 15px; }
1580
-
1581
- .aa-properties-details .aa-nearby-properties {
1582
- display: inline;
1583
- float: left;
1584
- margin-top: 50px;
1585
- width: 100%; }
1586
-
1587
- .aa-properties-details .aa-nearby-properties .aa-nearby-properties-area {
1588
- display: inline;
1589
- float: left;
1590
- width: 100%; }
1591
-
1592
- .aa-properties-social {
1593
- border-bottom: 1px solid #ccc;
1594
- border-top: 1px solid #ccc;
1595
- display: inline;
1596
- float: left;
1597
- margin-top: 50px;
1598
- padding: 20px 0;
1599
- width: 100%; }
1600
-
1601
- .aa-properties-social ul {
1602
- display: inline; }
1603
-
1604
- .aa-properties-social ul li {
1605
- display: inline; }
1606
-
1607
- .aa-properties-social ul li:first-child {
1608
- float: left;
1609
- font-size: 20px;
1610
- font-weight: bold;
1611
- line-height: 31px;
1612
- margin-right: 10px;
1613
- text-transform: uppercase; }
1614
-
1615
- .aa-properties-social ul li a {
1616
- border: 1px solid #ccc;
1617
- color: #555;
1618
- display: inline-block;
1619
- margin-left: 10px;
1620
- padding: 5px;
1621
- text-align: center;
1622
- width: 35px;
1623
- -webkit-transition: all 0.5s;
1624
- -moz-transition: all 0.5s;
1625
- -ms-transition: all 0.5s;
1626
- -o-transition: all 0.5s;
1627
- transition: all 0.5s; }
1628
-
1629
- /*==================
1630
- BLOG PAGE
1631
- ====================*/
1632
- #aa-blog {
1633
- display: inline;
1634
- float: left;
1635
- padding: 50px 0 100px;
1636
- width: 100%; }
1637
-
1638
- #aa-blog .aa-blog-area {
1639
- display: inline;
1640
- float: left;
1641
- width: 100%; }
1642
-
1643
- #aa-blog .aa-blog-area .aa-blog-content {
1644
- display: inline;
1645
- float: left;
1646
- width: 100%; }
1647
-
1648
- #aa-blog .aa-blog-area .aa-blog-content .aa-blog-single {
1649
- margin-bottom: 30px; }
1650
-
1651
- #aa-blog .aa-blog-area .aa-blog-sidebar {
1652
- background-color: #f8f8f8;
1653
- display: inline;
1654
- float: left;
1655
- padding: 20px 20px 30px;
1656
- width: 100%; }
1657
-
1658
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single {
1659
- display: inline;
1660
- float: left;
1661
- margin-top: 20px;
1662
- width: 100%; }
1663
-
1664
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-search {
1665
- display: inline;
1666
- float: left;
1667
- width: 100%;
1668
- position: relative; }
1669
-
1670
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-search .aa-search-text {
1671
- border: 1px solid #ccc;
1672
- color: #000;
1673
- display: inline;
1674
- float: left;
1675
- font-size: 16px;
1676
- height: 40px;
1677
- padding: 8px 40px 10px 5px;
1678
- width: 100%; }
1679
-
1680
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-search .aa-search-submit {
1681
- background: transparent none repeat scroll 0 0;
1682
- border: medium none;
1683
- color: #aaa;
1684
- font-size: 18px;
1685
- position: absolute;
1686
- right: 10px;
1687
- top: 7px;
1688
- width: 30px; }
1689
-
1690
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single ul li {
1691
- margin-bottom: 5px; }
1692
-
1693
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-catg li {
1694
- border-bottom: 1px solid #ddd;
1695
- display: block;
1696
- margin-bottom: 0;
1697
- padding: 8px 0; }
1698
-
1699
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-catg li span {
1700
- float: right; }
1701
-
1702
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-catg li ul {
1703
- margin-left: 15px; }
1704
-
1705
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-catg li ul li {
1706
- border-bottom: none; }
1707
-
1708
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .tag-cloud {
1709
- display: inline;
1710
- float: left;
1711
- margin-top: 10px;
1712
- width: 100%; }
1713
-
1714
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .tag-cloud a {
1715
- border: 1px solid #ddd;
1716
- display: inline-block;
1717
- margin-bottom: 10px;
1718
- margin-right: 10px;
1719
- padding: 5px 10px;
1720
- -webkit-transition: all 0.5s;
1721
- -moz-transition: all 0.5s;
1722
- -ms-transition: all 0.5s;
1723
- -o-transition: all 0.5s;
1724
- transition: all 0.5s; }
1725
-
1726
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .tag-cloud a:hover, #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .tag-cloud a:focus {
1727
- color: #fff; }
1728
-
1729
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-recent-post {
1730
- display: inline;
1731
- float: left;
1732
- width: 100%; }
1733
-
1734
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-recent-post .media {
1735
- margin-top: 20px; }
1736
-
1737
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-recent-post .media .media-object {
1738
- height: 90px;
1739
- width: 100px; }
1740
-
1741
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-recent-post .media .media-body .media-heading a {
1742
- -webkit-transition: all 0.5s;
1743
- -moz-transition: all 0.5s;
1744
- -ms-transition: all 0.5s;
1745
- -o-transition: all 0.5s;
1746
- transition: all 0.5s; }
1747
-
1748
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-recent-post .media .media-body p {
1749
- margin-bottom: 5px;
1750
- font-size: 12px; }
1751
-
1752
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-blog-recent-post .media .media-body span {
1753
- font-size: 14px; }
1754
-
1755
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-banner-ads {
1756
- display: inline;
1757
- float: left;
1758
- margin-top: 20px;
1759
- width: 100%; }
1760
-
1761
- #aa-blog .aa-blog-area .aa-blog-sidebar .aa-blog-sidebar-single .aa-banner-ads img {
1762
- max-width: 100%; }
1763
-
1764
- /*==================
1765
- BLOG SINGLE PAGE
1766
- ====================*/
1767
- .aa-blog-details {
1768
- padding: 20px; }
1769
-
1770
- .aa-blog-details .aa-blog-single-content .aa-blog-single-bottom {
1771
- border: medium none;
1772
- margin-bottom: 15px;
1773
- margin-top: 0; }
1774
-
1775
- .aa-blog-details .aa-blog-single-content .aa-blog-single-bottom .aa-blog-comments {
1776
- float: left;
1777
- margin-left: 15px; }
1778
-
1779
- .aa-blog-details .aa-blog-single-content blockquote {
1780
- border-color: #888;
1781
- margin-left: 15px;
1782
- margin-top: 20px; }
1783
-
1784
- .aa-blog-details .aa-blog-single-content blockquote p {
1785
- font-size: 18px;
1786
- margin-bottom: 0px; }
1787
-
1788
- .aa-blog-details .aa-blog-single-content blockquote cite {
1789
- font-size: 14px; }
1790
-
1791
- .aa-blog-post-tag {
1792
- display: inline;
1793
- float: left;
1794
- margin-bottom: 20px;
1795
- width: 100%; }
1796
-
1797
- .aa-blog-post-tag ul {
1798
- display: inline-block; }
1799
-
1800
- .aa-blog-post-tag ul li {
1801
- display: inline-block; }
1802
-
1803
- .aa-blog-post-tag ul li:first-child {
1804
- font-size: 14px; }
1805
-
1806
- .aa-blog-post-tag ul li a {
1807
- display: inline-block;
1808
- margin-left: 3px;
1809
- font-size: 12px; }
1810
-
1811
- .aa-blog-content .aa-properties-social {
1812
- margin-top: 0; }
1813
-
1814
- .aa-blog-related-post {
1815
- display: inline;
1816
- float: left;
1817
- margin-top: 50px;
1818
- width: 100%; }
1819
-
1820
- .aa-blog-navigation {
1821
- display: inline;
1822
- float: left;
1823
- margin-top: 23px;
1824
- width: 100%; }
1825
-
1826
- .aa-blog-navigation .aa-blog-pagination-left {
1827
- display: inline;
1828
- float: left;
1829
- text-align: left;
1830
- width: 50%; }
1831
-
1832
- .aa-blog-navigation .aa-blog-pagination-left .aa-prev {
1833
- border: 1px solid #ddd;
1834
- display: inline-block;
1835
- font-weight: bold;
1836
- letter-spacing: 0.5px;
1837
- padding: 10px 20px;
1838
- -webkit-transition: all 0.5s;
1839
- -moz-transition: all 0.5s;
1840
- -ms-transition: all 0.5s;
1841
- -o-transition: all 0.5s;
1842
- transition: all 0.5s; }
1843
-
1844
- .aa-blog-navigation .aa-blog-pagination-left .aa-prev span {
1845
- margin-right: 10px; }
1846
-
1847
- .aa-blog-navigation .aa-blog-pagination-right {
1848
- display: inline;
1849
- float: right;
1850
- text-align: right;
1851
- width: 50%; }
1852
-
1853
- .aa-blog-navigation .aa-blog-pagination-right .aa-next {
1854
- border: 1px solid #ddd;
1855
- display: inline-block;
1856
- font-weight: bold;
1857
- letter-spacing: 0.5px;
1858
- padding: 10px 20px;
1859
- -webkit-transition: all 0.5s;
1860
- -moz-transition: all 0.5s;
1861
- -ms-transition: all 0.5s;
1862
- -o-transition: all 0.5s;
1863
- transition: all 0.5s; }
1864
-
1865
- .aa-blog-navigation .aa-blog-pagination-right .aa-next span {
1866
- margin-left: 10px; }
1867
-
1868
- .aa-comments-area {
1869
- display: inline;
1870
- float: left;
1871
- width: 100%;
1872
- margin-top: 20px; }
1873
-
1874
- .aa-comments-area h3 {
1875
- margin-bottom: 20px; }
1876
-
1877
- .aa-comments-area .comments {
1878
- float: left;
1879
- display: inline;
1880
- width: 100%; }
1881
-
1882
- .aa-comments-area .comments .commentlist li {
1883
- border-bottom: 1px solid #f8f8f8;
1884
- display: inline;
1885
- float: left;
1886
- margin-bottom: 15px;
1887
- padding: 10px;
1888
- position: relative;
1889
- width: 100%; }
1890
-
1891
- .aa-comments-area .comments .commentlist li .news-img {
1892
- background-color: #ccc;
1893
- border-radius: 50%;
1894
- height: 90px;
1895
- margin-right: 20px;
1896
- width: 90px; }
1897
-
1898
- .aa-comments-area .comments .commentlist li .media-body .author-name {
1899
- margin-bottom: 0px;
1900
- margin-top: 0; }
1901
-
1902
- .aa-comments-area .comments .commentlist li .comments-date {
1903
- color: #888;
1904
- display: block;
1905
- font-size: 14px;
1906
- margin-bottom: 10px; }
1907
-
1908
- .aa-comments-area .comments .commentlist li .reply-btn {
1909
- border-bottom: 1px solid #ccc;
1910
- color: #555;
1911
- display: inline-block;
1912
- font-size: 15px;
1913
- line-height: 13px;
1914
- padding: 8px 0;
1915
- position: absolute;
1916
- right: 0;
1917
- top: 0;
1918
- -webkit-transition: all 0.5s;
1919
- -moz-transition: all 0.5s;
1920
- -ms-transition: all 0.5s;
1921
- -o-transition: all 0.5s;
1922
- transition: all 0.5s; }
1923
-
1924
- .aa-comments-area .comments .commentlist li .reply-btn:hover, .aa-comments-area .comments .commentlist li .reply-btn:focus {
1925
- text-decoration: none;
1926
- outline: none; }
1927
-
1928
- .aa-comments-area .comments .commentlist li .children {
1929
- margin-left: 50px; }
1930
-
1931
- .aa-comments-area .comments .commentlist li .author-tag {
1932
- color: #fff;
1933
- display: inline-block;
1934
- font-size: 12px;
1935
- font-weight: bold;
1936
- margin-bottom: 5px;
1937
- padding: 4px 6px; }
1938
-
1939
- .aa-comments-area .comments .commentlist li .author-comments {
1940
- background-color: #f8f8f8; }
1941
-
1942
- .aa-comments-area .comments .commentlist .children {
1943
- margin-left: 25px; }
1944
-
1945
- .aa-comments-area .comments .comments-pagination {
1946
- display: inline-block;
1947
- text-align: left; }
1948
-
1949
- .aa-comments-area .comments .comments-pagination li {
1950
- display: inline-block; }
1951
-
1952
- .aa-comments-area .comments .comments-pagination li a {
1953
- border: none;
1954
- color: #555;
1955
- display: inline-block;
1956
- font-size: 15px;
1957
- height: 30px;
1958
- line-height: 15px;
1959
- padding: 5px;
1960
- text-align: center;
1961
- width: 30px;
1962
- -webkit-transition: all 0.5s;
1963
- -moz-transition: all 0.5s;
1964
- -ms-transition: all 0.5s;
1965
- -o-transition: all 0.5s;
1966
- transition: all 0.5s; }
1967
-
1968
- .aa-comments-area .comments .comments-pagination li a:hover, .aa-comments-area .comments .comments-pagination li a:focus {
1969
- background-color: transparent;
1970
- text-decoration: none;
1971
- outline: none; }
1972
-
1973
- .aa-comments-area .comments .commentlist > li:last-child {
1974
- margin-bottom: 0px; }
1975
-
1976
- #respond {
1977
- display: inline;
1978
- float: left;
1979
- margin-top: 25px;
1980
- width: 100%; }
1981
-
1982
- #respond .reply-title {
1983
- font-size: 25px;
1984
- margin-top: 0; }
1985
-
1986
- #respond .comment-notes {
1987
- font-size: 15px;
1988
- margin-bottom: 25px; }
1989
-
1990
- #respond .required {
1991
- color: red; }
1992
-
1993
- #respond label {
1994
- display: block; }
1995
-
1996
- #respond input[type="text"],
1997
- #respond input[type="email"],
1998
- #respond input[type="url"] {
1999
- border: none;
2000
- border-bottom: 1px solid #ccc;
2001
- color: #555;
2002
- margin-bottom: 10px;
2003
- height: 35px;
2004
- padding: 5px;
2005
- width: 65%;
2006
- -webkit-transition: all 0.5s;
2007
- -moz-transition: all 0.5s;
2008
- -ms-transition: all 0.5s;
2009
- -o-transition: all 0.5s;
2010
- transition: all 0.5s; }
2011
-
2012
- #respond textarea {
2013
- border: none;
2014
- border-bottom: 1px solid #ccc;
2015
- color: #555;
2016
- margin-bottom: 5px;
2017
- padding: 10px;
2018
- height: 100px;
2019
- width: 100%;
2020
- -webkit-transition: all 0.5s;
2021
- -moz-transition: all 0.5s;
2022
- -ms-transition: all 0.5s;
2023
- -o-transition: all 0.5s;
2024
- transition: all 0.5s; }
2025
-
2026
- #respond .form-submit input {
2027
- background-color: transparent;
2028
- border: 1px solid #ccc;
2029
- color: #555;
2030
- font-size: 16px;
2031
- font-weight: 400;
2032
- margin-top: 10px;
2033
- padding: 6px 12px;
2034
- -webkit-transition: all 0.5s;
2035
- -moz-transition: all 0.5s;
2036
- -ms-transition: all 0.5s;
2037
- -o-transition: all 0.5s;
2038
- transition: all 0.5s; }
2039
-
2040
- /*==================
2041
- CONTACT PAGE
2042
- ====================*/
2043
- #aa-contact {
2044
- display: inline;
2045
- float: left;
2046
- padding: 50px 0 100px;
2047
- width: 100%; }
2048
-
2049
- #aa-contact .aa-contact-area {
2050
- display: inline;
2051
- float: left;
2052
- width: 100%; }
2053
-
2054
- #aa-contact .aa-contact-area .aa-contact-top {
2055
- display: inline;
2056
- float: left;
2057
- width: 100%; }
2058
-
2059
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-left {
2060
- display: inline;
2061
- float: left;
2062
- width: 60%; }
2063
-
2064
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right {
2065
- background-color: #555;
2066
- display: inline;
2067
- float: left;
2068
- height: 450px;
2069
- padding: 50px 30px;
2070
- width: 40%; }
2071
-
2072
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right h2 {
2073
- color: #fff;
2074
- margin-bottom: 20px; }
2075
-
2076
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right p {
2077
- color: #fff;
2078
- line-height: 25px; }
2079
-
2080
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right .contact-info-list {
2081
- margin-top: 30px; }
2082
-
2083
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right .contact-info-list li {
2084
- color: #fff;
2085
- font-size: 14px;
2086
- margin-bottom: 20px; }
2087
-
2088
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right .contact-info-list li i {
2089
- border: 1px solid #ccc;
2090
- margin-right: 10px;
2091
- padding: 5px;
2092
- text-align: center;
2093
- width: 35px; }
2094
-
2095
- #aa-contact .aa-contact-area .aa-contact-bottom {
2096
- display: inline;
2097
- float: left;
2098
- width: 100%;
2099
- margin-top: 50px; }
2100
-
2101
- #aa-contact .aa-contact-area .aa-contact-bottom .required {
2102
- color: red; }
2103
-
2104
- #aa-contact .aa-contact-area .aa-contact-bottom .aa-title p {
2105
- font-size: 16px; }
2106
-
2107
- #aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form {
2108
- display: inline;
2109
- float: left;
2110
- margin-top: 20px;
2111
- width: 100%; }
2112
-
2113
- #aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form .contactform {
2114
- display: block;
2115
- width: 60%;
2116
- margin: 0 auto; }
2117
-
2118
- #aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form .reply-title {
2119
- font-size: 25px;
2120
- margin-top: 0; }
2121
-
2122
- #aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form label {
2123
- display: block; }
2124
-
2125
- #aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form input[type="text"],
2126
- #aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form input[type="email"],
2127
- #aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form input[type="url"] {
2128
- border: none;
2129
- border-bottom: 2px solid #ccc;
2130
- color: #555;
2131
- margin-bottom: 10px;
2132
- height: 35px;
2133
- padding: 5px;
2134
- width: 100%;
2135
- -webkit-transition: all 0.5s;
2136
- -moz-transition: all 0.5s;
2137
- -ms-transition: all 0.5s;
2138
- -o-transition: all 0.5s;
2139
- transition: all 0.5s; }
2140
-
2141
- #aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form textarea {
2142
- border: none;
2143
- border-bottom: 2px solid #ccc;
2144
- color: #555;
2145
- margin-bottom: 5px;
2146
- padding: 10px;
2147
- height: 100px;
2148
- width: 100%;
2149
- -webkit-transition: all 0.5s;
2150
- -moz-transition: all 0.5s;
2151
- -ms-transition: all 0.5s;
2152
- -o-transition: all 0.5s;
2153
- transition: all 0.5s; }
2154
-
2155
- #aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form .form-submit input {
2156
- background-color: transparent;
2157
- color: #555;
2158
- border: 2px solid #ccc;
2159
- font-size: 16px;
2160
- font-weight: 400;
2161
- margin-top: 10px;
2162
- padding: 6px 12px;
2163
- -webkit-transition: all 0.5s;
2164
- -moz-transition: all 0.5s;
2165
- -ms-transition: all 0.5s;
2166
- -o-transition: all 0.5s;
2167
- transition: all 0.5s; }
2168
-
2169
- /*==================
2170
- GALLERY PAGE
2171
- ====================*/
2172
- #aa-gallery {
2173
- display: inline;
2174
- float: left;
2175
- width: 100%;
2176
- padding: 50px 0 100px; }
2177
-
2178
- #aa-gallery .aa-gallery-area {
2179
- display: inline;
2180
- float: left;
2181
- width: 100%; }
2182
-
2183
- #aa-gallery .aa-gallery-area .aa-title p {
2184
- font-size: 16px;
2185
- padding: 0 50px; }
2186
-
2187
- #aa-gallery .aa-gallery-area .aa-gallery-content {
2188
- display: inline;
2189
- float: left;
2190
- width: 100%; }
2191
-
2192
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-top {
2193
- display: inline;
2194
- float: left;
2195
- width: 100%;
2196
- margin-top: 50px; }
2197
-
2198
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-top ul {
2199
- display: inline-block;
2200
- text-align: center;
2201
- width: 100%; }
2202
-
2203
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-top ul li {
2204
- border: 1px solid #ddd;
2205
- cursor: pointer;
2206
- display: inline-block;
2207
- font-size: 14px;
2208
- font-weight: bold;
2209
- margin: 0 13px;
2210
- padding: 6px 10px;
2211
- text-transform: uppercase;
2212
- -webkit-transition: all 0.5s;
2213
- -moz-transition: all 0.5s;
2214
- -ms-transition: all 0.5s;
2215
- -o-transition: all 0.5s;
2216
- transition: all 0.5s; }
2217
-
2218
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-top ul li:hover, #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-top ul li:focus {
2219
- color: #fff; }
2220
-
2221
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-top ul .active {
2222
- color: #fff; }
2223
-
2224
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body {
2225
- display: inline;
2226
- float: left;
2227
- width: 100%;
2228
- margin-top: 50px; }
2229
-
2230
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery {
2231
- display: inline;
2232
- float: left;
2233
- width: 33.33%; }
2234
-
2235
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item {
2236
- display: inline;
2237
- float: left;
2238
- width: 100%;
2239
- position: relative; }
2240
-
2241
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item:hover .aa-single-gallery-img img {
2242
- transform: scale(1.3); }
2243
-
2244
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item:hover .aa-single-gallery-info {
2245
- background-color: rgba(0, 0, 0, 0.8);
2246
- opacity: 1;
2247
- transform: scale(1); }
2248
-
2249
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item .aa-single-gallery-img {
2250
- display: inline;
2251
- float: left;
2252
- height: 220px;
2253
- overflow: hidden;
2254
- width: 100%; }
2255
-
2256
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item .aa-single-gallery-img img {
2257
- width: 100%;
2258
- height: 100%;
2259
- transform: scale(1);
2260
- -webkit-transition: all 0.8s;
2261
- -moz-transition: all 0.8s;
2262
- -ms-transition: all 0.8s;
2263
- -o-transition: all 0.8s;
2264
- transition: all 0.8s; }
2265
-
2266
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item .aa-single-gallery-info {
2267
- background-color: rgba(0, 0, 0, 0.2);
2268
- position: absolute;
2269
- left: 20px;
2270
- top: 20px;
2271
- text-align: center;
2272
- padding-top: 70px;
2273
- height: calc(100% - 40px);
2274
- width: calc(100% - 40px);
2275
- opacity: 0;
2276
- transform: scale(0);
2277
- -webkit-transition: all 0.8s;
2278
- -moz-transition: all 0.8s;
2279
- -ms-transition: all 0.8s;
2280
- -o-transition: all 0.8s;
2281
- transition: all 0.8s; }
2282
-
2283
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item .aa-single-gallery-info a {
2284
- border: 2px solid #ccc;
2285
- color: #fff;
2286
- display: inline-block;
2287
- height: 35px;
2288
- line-height: 30px;
2289
- margin: 0 8px;
2290
- text-align: center;
2291
- width: 35px;
2292
- -webkit-transition: all 0.5s;
2293
- -moz-transition: all 0.5s;
2294
- -ms-transition: all 0.5s;
2295
- -o-transition: all 0.5s;
2296
- transition: all 0.5s; }
2297
-
2298
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item .aa-single-gallery-info a:hover, #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery .aa-single-gallery-item .aa-single-gallery-info a:focus {
2299
- background-color: #fff; }
2300
-
2301
- #aa-gallery .aa-gallery-area #mixit-container .mix {
2302
- display: none; }
2303
-
2304
- /*==================
2305
- ERROR PAGE
2306
- ====================*/
2307
- #aa-error {
2308
- background-color: #F8F8F8;
2309
- display: inline;
2310
- float: left;
2311
- width: 100%;
2312
- padding: 50px 0; }
2313
-
2314
- #aa-error .aa-error-area {
2315
- display: inline;
2316
- float: left;
2317
- margin-top: 50px;
2318
- padding: 100px 100px 130px;
2319
- text-align: center;
2320
- width: 100%; }
2321
-
2322
- #aa-error .aa-error-area h2 {
2323
- display: inline-block;
2324
- font-size: 150px;
2325
- line-height: 150px;
2326
- margin-bottom: 30px;
2327
- padding: 10px 20px;
2328
- text-shadow: 0 2px 2px #ddd;
2329
- position: relative; }
2330
-
2331
- #aa-error .aa-error-area h2:before {
2332
- content: "";
2333
- height: 128px;
2334
- position: absolute;
2335
- right: 21%;
2336
- top: 19px;
2337
- width: 171px; }
2338
-
2339
- #aa-error .aa-error-area p {
2340
- font-size: 18px; }
2341
-
2342
- #aa-error .aa-error-area p span {
2343
- color: #f60000;
2344
- display: inline-block;
2345
- margin-right: 10px; }
2346
-
2347
- #aa-error .aa-error-area a {
2348
- border: 1px solid #ccc;
2349
- display: inline-block;
2350
- font-size: 16px;
2351
- font-weight: bold;
2352
- letter-spacing: 0.5px;
2353
- margin-top: 30px;
2354
- padding: 10px 15px;
2355
- text-transform: uppercase;
2356
- -webkit-transition: all 0.5s;
2357
- -moz-transition: all 0.5s;
2358
- -ms-transition: all 0.5s;
2359
- -o-transition: all 0.5s;
2360
- transition: all 0.5s; }
2361
-
2362
- /*==================
2363
- SIGNIN & REGISTER PAGE
2364
- ====================*/
2365
- #aa-signin {
2366
- background-image: url("../img/signin-bg.jpg");
2367
- background-position: center center;
2368
- background-size: cover;
2369
- bottom: 0;
2370
- height: 100%;
2371
- left: 0;
2372
- position: fixed;
2373
- right: 0;
2374
- top: 0;
2375
- overflow-y: auto;
2376
- width: 100%; }
2377
-
2378
- #aa-signin:before {
2379
- background-color: rgba(0, 0, 0, 0.8);
2380
- content: '';
2381
- position: fixed;
2382
- left: 0;
2383
- top: 0;
2384
- width: 100%;
2385
- height: 100%; }
2386
-
2387
- #aa-signin .aa-signin-area {
2388
- display: inline;
2389
- float: left;
2390
- padding: 4% 20%;
2391
- width: 100%; }
2392
-
2393
- #aa-signin .aa-signin-area .aa-signin-form {
2394
- background-color: rgba(255, 255, 255, 0.6);
2395
- display: inline;
2396
- padding: 50px;
2397
- float: left;
2398
- width: 100%; }
2399
-
2400
- #aa-signin .aa-signin-area .aa-signin-form .aa-signin-form-title {
2401
- display: inline;
2402
- float: left;
2403
- text-align: center;
2404
- width: 100%; }
2405
-
2406
- #aa-signin .aa-signin-area .aa-signin-form .aa-signin-form-title .aa-property-home {
2407
- color: #000;
2408
- display: inline-block;
2409
- font-size: 25px;
2410
- font-weight: bold;
2411
- margin-bottom: 10px;
2412
- text-transform: uppercase; }
2413
-
2414
- #aa-signin .aa-signin-area .aa-signin-form .aa-signin-form-title h4 {
2415
- color: #000;
2416
- font-size: 18px;
2417
- font-weight: bold;
2418
- margin-bottom: 30px;
2419
- text-transform: uppercase; }
2420
-
2421
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-field {
2422
- display: inline;
2423
- float: left;
2424
- width: 100%;
2425
- margin-bottom: 20px; }
2426
-
2427
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-field label {
2428
- color: #000;
2429
- display: inline-block;
2430
- text-align: left; }
2431
-
2432
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-field label .required {
2433
- color: #f60000; }
2434
-
2435
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-field input[type="text"],
2436
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-field input[type="email"],
2437
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-field input[type="password"] {
2438
- border: none;
2439
- color: #555;
2440
- margin-bottom: 10px;
2441
- height: 35px;
2442
- padding: 5px;
2443
- width: 100%;
2444
- -webkit-transition: all 0.5s;
2445
- -moz-transition: all 0.5s;
2446
- -ms-transition: all 0.5s;
2447
- -o-transition: all 0.5s;
2448
- transition: all 0.5s; }
2449
-
2450
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-field label input [type="checkbox"] {
2451
- margin-left: 10px; }
2452
-
2453
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-field textarea {
2454
- border: none;
2455
- border-bottom: 2px solid #ccc;
2456
- color: #555;
2457
- margin-bottom: 5px;
2458
- padding: 10px;
2459
- height: 100px;
2460
- width: 100%;
2461
- -webkit-transition: all 0.5s;
2462
- -moz-transition: all 0.5s;
2463
- -ms-transition: all 0.5s;
2464
- -o-transition: all 0.5s;
2465
- transition: all 0.5s; }
2466
-
2467
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-submit {
2468
- display: inline;
2469
- float: left;
2470
- text-align: center;
2471
- width: 100%; }
2472
-
2473
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-submit input[type="submit"] {
2474
- color: #fff;
2475
- font-size: 16px;
2476
- font-weight: bold;
2477
- height: 50px;
2478
- margin-bottom: 20px;
2479
- margin-top: 10px;
2480
- padding: 6px 12px;
2481
- width: 150px;
2482
- -webkit-transition: all 0.5s;
2483
- -moz-transition: all 0.5s;
2484
- -ms-transition: all 0.5s;
2485
- -o-transition: all 0.5s;
2486
- transition: all 0.5s; }
2487
-
2488
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-submit input[type="submit"]:hover {
2489
- background-color: #FFF; }
2490
-
2491
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-submit p {
2492
- color: #000; }
2493
-
2494
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-submit p a {
2495
- color: #fff;
2496
- font-weight: bold; }
2497
-
2498
- /*==================
2499
- FOOTER SECTION
2500
- ====================*/
2501
- #aa-footer {
2502
- background-color: #444;
2503
- display: inline;
2504
- float: left;
2505
- padding: 30px 0;
2506
- width: 100%; }
2507
-
2508
- #aa-footer .aa-footer-area {
2509
- display: inline;
2510
- float: left;
2511
- width: 100%; }
2512
-
2513
- #aa-footer .aa-footer-area .aa-footer-left {
2514
- display: inline;
2515
- float: left;
2516
- width: 100%; }
2517
-
2518
- #aa-footer .aa-footer-area .aa-footer-left p {
2519
- color: #fff;
2520
- margin-bottom: 0;
2521
- padding-top: 5px; }
2522
-
2523
- #aa-footer .aa-footer-area .aa-footer-left p a {
2524
- color: #fff; }
2525
-
2526
- #aa-footer .aa-footer-area .aa-footer-middle {
2527
- display: inline;
2528
- float: left;
2529
- width: 100%;
2530
- text-align: right; }
2531
-
2532
- #aa-footer .aa-footer-area .aa-footer-middle a {
2533
- border: 1px solid #f8f8f8;
2534
- color: #f8f8f8;
2535
- display: inline-block;
2536
- margin: 0 5px;
2537
- padding: 5px;
2538
- text-align: center;
2539
- width: 40px;
2540
- -webkit-transition: all 0.5s;
2541
- -moz-transition: all 0.5s;
2542
- -ms-transition: all 0.5s;
2543
- -o-transition: all 0.5s;
2544
- transition: all 0.5s; }
2545
-
2546
- #aa-footer .aa-footer-area .aa-footer-right {
2547
- display: inline;
2548
- float: left;
2549
- width: 100%;
2550
- text-align: right; }
2551
-
2552
- #aa-footer .aa-footer-area .aa-footer-right a {
2553
- color: #fff;
2554
- display: inline-block;
2555
- padding: 5px;
2556
- -webkit-transition: all 0.5s;
2557
- -moz-transition: all 0.5s;
2558
- -ms-transition: all 0.5s;
2559
- -o-transition: all 0.5s;
2560
- transition: all 0.5s; }
2561
-
2562
- /*==================
2563
- RESPONSIVE DESIGN
2564
- ====================*/
2565
- @media (max-width: 1199px) {
2566
- #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider li .aa-single-agents .aa-agetns-info .aa-agent-social a {
2567
- margin: 10px 2px; }
2568
-
2569
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single::after {
2570
- height: 420px; }
2571
-
2572
- #aa-properties .aa-properties-content .aa-properties-content-body .aa-properties-nav li {
2573
- width: 45.2%; }
2574
-
2575
- #aa-properties .aa-properties-content .aa-properties-content-body .aa-list-view li {
2576
- width: 100%; }
2577
-
2578
- .aa-properties-item .aa-properties-item-content .aa-properties-info span {
2579
- margin: 0 3px; }
2580
-
2581
- #aa-properties .aa-properties-content .aa-properties-content-body .aa-list-view li .aa-properties-item .aa-properties-item-img {
2582
- height: 223px; }
2583
-
2584
- #aa-properties .aa-properties-content .aa-properties-content-body .aa-list-view li .aa-properties-item .aa-properties-item-img img {
2585
- height: 100%; }
2586
-
2587
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar h3 {
2588
- font-size: 20px; }
2589
-
2590
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .aa-single-filter-search span {
2591
- font-size: 14px;
2592
- margin: 0 1px; }
2593
-
2594
- .aa-properties-details .aa-properties-details-img img {
2595
- height: 450px; }
2596
-
2597
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery {
2598
- width: 33.32%; }
2599
-
2600
- #aa-signin .aa-signin-area {
2601
- padding: 8% 20%; }
2602
-
2603
- .pulse {
2604
- left: 46%; } }
2605
- @media (max-width: 991px) {
2606
- #aa-menu-area .main-navbar .navbar-nav li a {
2607
- padding-left: 8px;
2608
- padding-right: 8px; }
2609
-
2610
- #aa-advance-search .aa-advance-search-area .aa-advance-search-top .aa-single-advance-search {
2611
- margin-bottom: 10px; }
2612
-
2613
- #aa-advance-search .aa-advance-search-area .aa-advance-search-bottom {
2614
- margin-top: 20px; }
2615
-
2616
- #aa-service .aa-service-area .aa-service-content .aa-single-service {
2617
- margin-bottom: 20px;
2618
- padding: 0 40px; }
2619
-
2620
- #aa-promo-banner .aa-promo-banner-area {
2621
- padding: 0 100px; }
2622
-
2623
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single .aa-testimonial-info p {
2624
- padding: 0; }
2625
-
2626
- .aa-latest-blog-content {
2627
- margin-top: 10px; }
2628
-
2629
- .aa-latest-blog-content .aa-blog-single {
2630
- margin-top: 40px; }
2631
-
2632
- .aa-blog-single .aa-blog-img img {
2633
- max-width: 100%;
2634
- width: 100%; }
2635
-
2636
- #aa-footer .aa-footer-area .aa-footer-right {
2637
- margin-top: 20px;
2638
- text-align: center; }
2639
-
2640
- #aa-properties {
2641
- padding: 30px 0 50px; }
2642
-
2643
- #aa-properties .aa-properties-content .aa-properties-content-body .aa-properties-nav li {
2644
- width: 45.9%; }
2645
-
2646
- #aa-properties .aa-properties-content .aa-properties-content-body .aa-list-view li {
2647
- width: 100%; }
2648
-
2649
- #aa-properties .aa-properties-sidebar {
2650
- margin-top: 30px; }
2651
-
2652
- #aa-properties .aa-properties-sidebar .aa-properties-single-sidebar .media .media-body p {
2653
- font-size: 14px; }
2654
-
2655
- #aa-blog .aa-blog-area .aa-blog-sidebar {
2656
- margin-top: 25px; }
2657
-
2658
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-left {
2659
- width: 55%; }
2660
-
2661
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right {
2662
- padding: 22px;
2663
- width: 45%; }
2664
-
2665
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right .contact-info-list li {
2666
- line-height: 25px; }
2667
-
2668
- #aa-error .aa-error-area {
2669
- padding: 50px 100px 80px; }
2670
-
2671
- .pulse {
2672
- left: 44%; } }
2673
- @media (max-width: 767px) {
2674
- .navbar-collapse.in {
2675
- overflow-x: hidden;
2676
- background-color: #ddd; }
2677
-
2678
- .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
2679
- margin-bottom: 10px; }
2680
-
2681
- .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
2682
- background-color: #fff; }
2683
-
2684
- .aa-properties-item {
2685
- margin-top: 50px; }
2686
-
2687
- #aa-footer .aa-footer-area .aa-footer-left {
2688
- text-align: center; }
2689
-
2690
- #aa-footer .aa-footer-area .aa-footer-middle {
2691
- margin-top: 20px;
2692
- text-align: center; }
2693
-
2694
- #aa-menu-area .main-navbar .navbar-header .aa-logo {
2695
- font-size: 18px;
2696
- height: 40px;
2697
- margin-left: 10px;
2698
- margin-top: 3px;
2699
- padding: 10px; }
2700
-
2701
- #aa-menu-area .main-navbar .navbar-header .aa-logo-img img {
2702
- margin-left: 15px; }
2703
-
2704
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content {
2705
- top: 35%; }
2706
-
2707
- #aa-client-brand .aa-client-brand-area .aa-client-brand-slider {
2708
- margin-left: -25px; }
2709
-
2710
- #aa-promo-banner .aa-promo-banner-area {
2711
- padding: 0 50px; }
2712
-
2713
- #aa-agents .aa-agents-area .aa-agents-content .aa-agents-slider li .aa-single-agents .aa-agetns-info .aa-agent-social a {
2714
- min-width: 30px;
2715
- padding: 3px 0; }
2716
-
2717
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single {
2718
- padding: 0 90px; }
2719
-
2720
- #aa-menu-area .navbar-fixed-top {
2721
- padding: 15px 0;
2722
- padding-bottom: 0; }
2723
-
2724
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single img {
2725
- height: 600px; }
2726
-
2727
- #aa-property-header {
2728
- min-height: 320px; }
2729
-
2730
- #aa-property-header .aa-property-header-inner {
2731
- padding: 100px 0 50px; }
2732
-
2733
- #aa-properties .aa-properties-content .aa-properties-content-body .aa-properties-nav {
2734
- margin-left: 0; }
2735
-
2736
- #aa-properties .aa-properties-content .aa-properties-content-body .aa-properties-nav li {
2737
- margin: 0;
2738
- width: 100%; }
2739
-
2740
- .aa-properties-details .aa-properties-details-img img {
2741
- height: 350px; }
2742
-
2743
- .aa-properties-details .aa-properties-info h2 {
2744
- font-size: 25px;
2745
- line-height: 30px; }
2746
-
2747
- .aa-properties-details .aa-properties-info .aa-price {
2748
- font-size: 25px; }
2749
-
2750
- .aa-properties-details .aa-properties-info iframe {
2751
- height: 300px;
2752
- margin-top: 15px; }
2753
-
2754
- #aa-blog {
2755
- padding: 50px 0; }
2756
-
2757
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-left {
2758
- width: 50%; }
2759
-
2760
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right {
2761
- width: 50%; }
2762
-
2763
- #aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form .contactform {
2764
- width: 70%; }
2765
-
2766
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-top ul li {
2767
- margin: 0px 5px; } }
2768
- @media (max-width: 640px) {
2769
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content {
2770
- left: 23%; }
2771
-
2772
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-catg {
2773
- font-size: 20px; }
2774
-
2775
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-title {
2776
- font-size: 30px; }
2777
-
2778
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-price {
2779
- font-size: 25px; }
2780
-
2781
- #aa-about-us .aa-about-us-area .aa-about-us-right {
2782
- margin-top: 20px; }
2783
-
2784
- #aa-menu-area .main-navbar .navbar-header .aa-logo-img {
2785
- height: 45px;
2786
- width: 200px; }
2787
-
2788
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-left {
2789
- width: 100%; }
2790
-
2791
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-left iframe {
2792
- height: 350px; }
2793
-
2794
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right {
2795
- height: auto;
2796
- width: 100%; }
2797
-
2798
- #aa-error .aa-error-area {
2799
- padding: 50px 50px 80px; }
2800
-
2801
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery {
2802
- width: 50%; }
2803
-
2804
- #aa-signin .aa-signin-area {
2805
- padding: 8% 10%; } }
2806
- @media (max-width: 480px) {
2807
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content {
2808
- left: 25%;
2809
- padding: 10px;
2810
- top: 37%; }
2811
-
2812
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-catg {
2813
- font-size: 15px; }
2814
-
2815
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-title {
2816
- font-size: 20px;
2817
- line-height: 25px; }
2818
-
2819
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-location {
2820
- font-size: 12px; }
2821
-
2822
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-price {
2823
- font-size: 18px;
2824
- margin-bottom: 0px; }
2825
-
2826
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-btn {
2827
- font-size: 14px; }
2828
-
2829
- #aa-slider .aa-slider-area .aa-top-slider .slick-arrow {
2830
- height: 60px;
2831
- width: 60px; }
2832
-
2833
- #aa-slider .aa-slider-area .aa-top-slider .slick-prev::before, #aa-slider .aa-slider-area .aa-top-slider .slick-next::before {
2834
- font-size: 40px; }
2835
-
2836
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content .aa-top-slider-off {
2837
- margin-top: 0; }
2838
-
2839
- .aa-title p {
2840
- font-size: 16px;
2841
- padding: 0px; }
2842
-
2843
- #aa-promo-banner .aa-promo-banner-area {
2844
- padding: 0; }
2845
-
2846
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single {
2847
- padding: 0 30px; }
2848
-
2849
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single .aa-testimonial-info p {
2850
- padding: 0;
2851
- font-size: 16px; }
2852
-
2853
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider .slick-prev {
2854
- left: 0; }
2855
-
2856
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider .slick-next {
2857
- right: 0; }
2858
-
2859
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single::after {
2860
- left: 27%;
2861
- width: 50%; }
2862
-
2863
- #aa-about-us .aa-about-us-area {
2864
- padding: 50px 0; }
2865
-
2866
- #aa-latest-property {
2867
- padding: 50px 0; }
2868
-
2869
- #aa-service {
2870
- padding: 50px 0; }
2871
-
2872
- #aa-agents {
2873
- padding: 50px 0; }
2874
-
2875
- #aa-client-testimonial {
2876
- padding: 50px 0; }
2877
-
2878
- #aa-latest-blog {
2879
- padding: 50px 0; }
2880
-
2881
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single img {
2882
- height: 300px; }
2883
-
2884
- #aa-advance-search .aa-advance-search-area {
2885
- border-radius: 0;
2886
- margin-top: 20px; }
2887
-
2888
- #aa-menu-area .main-navbar .navbar-header .aa-logo-img {
2889
- height: 35px;
2890
- margin-top: 5px;
2891
- width: 150px; }
2892
-
2893
- #aa-properties .aa-properties-content .aa-properties-content-body .aa-list-view li .aa-properties-item .aa-properties-item-img {
2894
- width: 100%; }
2895
-
2896
- #aa-properties .aa-properties-content .aa-properties-content-body .aa-list-view li .aa-properties-item .aa-properties-item-content {
2897
- border-top: medium none;
2898
- width: 100%; }
2899
-
2900
- .aa-properties-details .aa-properties-details-img img {
2901
- height: 300px; }
2902
-
2903
- .aa-properties-details .aa-properties-info iframe {
2904
- height: 250px; }
2905
-
2906
- .aa-blog-single .aa-blog-single-content h3 {
2907
- font-size: 18px; }
2908
-
2909
- .aa-blog-details h2 {
2910
- font-size: 25px;
2911
- line-height: 30px; }
2912
-
2913
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-left {
2914
- width: 100%; }
2915
-
2916
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-left iframe {
2917
- height: 300px; }
2918
-
2919
- #aa-contact .aa-contact-area .aa-contact-top .aa-contact-top-right {
2920
- height: auto;
2921
- width: 100%; }
2922
-
2923
- #aa-contact .aa-contact-area .aa-contact-bottom .aa-contact-form .contactform {
2924
- width: 100%; }
2925
-
2926
- #aa-error .aa-error-area {
2927
- padding: 30px 30px 60px; }
2928
-
2929
- #aa-error .aa-error-area h2 {
2930
- font-size: 100px;
2931
- line-height: 120px;
2932
- padding: 10px 15px; }
2933
-
2934
- #aa-error .aa-error-area h2::before {
2935
- height: 115px;
2936
- right: 22%;
2937
- top: 10px;
2938
- width: 115px; }
2939
-
2940
- #aa-error .aa-error-area p {
2941
- font-size: 16px; }
2942
-
2943
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-body .aa-single-gallery {
2944
- width: 100%; }
2945
-
2946
- #aa-gallery .aa-gallery-area .aa-title p {
2947
- font-size: 15px;
2948
- padding: 0; }
2949
-
2950
- #aa-gallery .aa-gallery-area .aa-gallery-content .aa-gallery-top ul li {
2951
- margin: 0 5px 10px; }
2952
-
2953
- #aa-signin .aa-signin-area .aa-signin-form {
2954
- padding: 20px; }
2955
-
2956
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-field {
2957
- margin-bottom: 10px; }
2958
-
2959
- #aa-signin .aa-signin-area .aa-signin-form .aa-signin-form-title h4 {
2960
- margin-bottom: 20px; }
2961
-
2962
- .pulse {
2963
- left: 43%; } }
2964
- @media (max-width: 360px) {
2965
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content {
2966
- left: 20.5%; }
2967
-
2968
- #aa-advance-search .aa-advance-search-area {
2969
- padding: 25px 10px; }
2970
-
2971
- #aa-advance-search .aa-advance-search-area .aa-advance-search-bottom .aa-single-filter-search span {
2972
- margin: 0 3px; }
2973
-
2974
- .aa-title h2 {
2975
- font-size: 25px; }
2976
-
2977
- .aa-title p {
2978
- font-size: 14px; }
2979
-
2980
- .aa-title span {
2981
- height: 10px; }
2982
-
2983
- .aa-title span:before {
2984
- height: 2px;
2985
- top: 3px; }
2986
-
2987
- .aa-title span:after {
2988
- height: 2px;
2989
- top: 3px; }
2990
-
2991
- #aa-promo-banner .aa-promo-banner-area h3 {
2992
- font-size: 25px; }
2993
-
2994
- #aa-promo-banner .aa-promo-banner-area p {
2995
- font-size: 14px;
2996
- margin-top: 0; }
2997
-
2998
- #aa-promo-banner .aa-promo-banner-area a {
2999
- margin-top: 40px; }
3000
-
3001
- #aa-client-testimonial .aa-client-testimonial-area .aa-testimonial-content .aa-testimonial-slider li .aa-testimonial-single .aa-testimonial-info p {
3002
- font-size: 14px; }
3003
-
3004
- #aa-client-brand .aa-client-brand-area .aa-client-brand-slider {
3005
- margin-left: 0; }
3006
-
3007
- #aa-client-brand .aa-client-brand-area .aa-client-brand-slider li .aa-client-single-brand {
3008
- float: left;
3009
- text-align: center;
3010
- width: 100%; }
3011
-
3012
- .slick-slide img {
3013
- display: inline-block; }
3014
-
3015
- #aa-latest-blog .aa-latest-blog-area .aa-latest-blog-content {
3016
- margin-top: 0; }
3017
-
3018
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single img {
3019
- height: 320px; }
3020
-
3021
- #aa-slider .aa-slider-area .aa-top-slider .slick-prev::before, #aa-slider .aa-slider-area .aa-top-slider .slick-next::before {
3022
- font-size: 30px; }
3023
-
3024
- #aa-slider .aa-slider-area .aa-top-slider .slick-arrow {
3025
- height: 40px;
3026
- width: 40px; }
3027
-
3028
- #aa-slider .aa-slider-area .slick-prev, #aa-slider .aa-slider-area .slick-next {
3029
- top: 55%; }
3030
-
3031
- #aa-footer .aa-footer-area .aa-footer-right a {
3032
- font-size: 12px;
3033
- padding: 3px; }
3034
-
3035
- #aa-properties .aa-properties-content .aa-properties-content-head {
3036
- padding: 20px; }
3037
-
3038
- #aa-properties .aa-properties-content .aa-properties-content-head .aa-properties-content-head-right {
3039
- width: 100%;
3040
- text-align: center;
3041
- margin-top: 20px; }
3042
-
3043
- #aa-property-header {
3044
- min-height: 230px; }
3045
-
3046
- #aa-property-header .aa-property-header-inner {
3047
- padding: 100px 0 0; }
3048
-
3049
- #aa-property-header .aa-property-header-inner h2 {
3050
- margin-top: 20px;
3051
- font-size: 25px; }
3052
-
3053
- .aa-properties-details .aa-properties-details-img .slick-prev, .aa-properties-details .aa-properties-details-img .slick-next {
3054
- height: 40px;
3055
- width: 40px; }
3056
-
3057
- .aa-properties-details .aa-properties-details-img img {
3058
- height: 250px; }
3059
-
3060
- .aa-properties-details .aa-properties-info h2 {
3061
- font-size: 18px;
3062
- line-height: 25px; }
3063
-
3064
- .aa-properties-details .aa-properties-info .aa-price {
3065
- font-size: 22px; }
3066
-
3067
- .aa-properties-details .aa-properties-info iframe {
3068
- height: 200px; }
3069
-
3070
- .comments .media-left, .media > .pull-left {
3071
- padding-right: 0; }
3072
-
3073
- .aa-comments-area .comments .commentlist .children {
3074
- margin-left: 10px; }
3075
-
3076
- #respond input[type="text"], #respond input[type="email"], #respond input[type="url"] {
3077
- width: 100%; }
3078
-
3079
- #aa-contact .aa-contact-area .aa-contact-bottom .aa-title p {
3080
- font-size: 14px; }
3081
-
3082
- #aa-error {
3083
- padding: 20px 0; }
3084
-
3085
- #aa-error .aa-error-area {
3086
- padding: 0px 0 10px;
3087
- margin-top: 20px; }
3088
-
3089
- #aa-signin .aa-signin-area {
3090
- padding: 5% 1%; }
3091
-
3092
- #aa-signin .aa-signin-area .aa-signin-form {
3093
- padding: 15px 10px; }
3094
-
3095
- #aa-signin .aa-signin-area .aa-signin-form .aa-signin-form-title .aa-property-home {
3096
- font-size: 20px;
3097
- margin-bottom: 0; }
3098
-
3099
- #aa-signin .aa-signin-area .aa-signin-form .aa-signin-form-title h4 {
3100
- margin-bottom: 15px;
3101
- font-size: 14px; }
3102
-
3103
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-submit p {
3104
- font-size: 12px; }
3105
-
3106
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-submit input[type="submit"] {
3107
- font-size: 15px;
3108
- height: 45px;
3109
- margin-bottom: 15px;
3110
- margin-top: 0;
3111
- padding: 4px 8px;
3112
- width: 140px; }
3113
-
3114
- #aa-signin .aa-signin-area .aa-signin-form .aa-single-field input[type="text"], #aa-signin .aa-signin-area .aa-signin-form .aa-single-field input[type="email"], #aa-signin .aa-signin-area .aa-signin-form .aa-single-field input[type="password"] {
3115
- height: 30px;
3116
- margin-bottom: 5px;
3117
- padding: 5px; }
3118
-
3119
- .pulse {
3120
- left: 39%; } }
3121
- @media (max-width: 320px) {
3122
- #aa-advance-search .aa-advance-search-area .aa-advance-search-bottom .aa-single-filter-search span {
3123
- font-size: 12px; }
3124
-
3125
- #aa-advance-search .aa-advance-search-area .aa-advance-search-bottom .aa-single-filter-search {
3126
- margin-bottom: 20px; }
3127
-
3128
- .noUi-target {
3129
- margin-top: 15px; }
3130
-
3131
- .aa-properties-item .aa-properties-item-content .aa-properties-info span {
3132
- margin: 0 3px; }
3133
-
3134
- #aa-slider .aa-slider-area .aa-top-slider .aa-top-slider-single .aa-top-slider-content {
3135
- left: 17%; }
3136
-
3137
- #aa-header .aa-header-area .aa-header-left .aa-telephone-no {
3138
- font-size: 13px;
3139
- margin-top: 3px; }
3140
-
3141
- #aa-header .aa-header-area .aa-header-right .aa-register {
3142
- font-size: 14px; }
3143
-
3144
- #aa-header .aa-header-area .aa-header-right .aa-login {
3145
- font-size: 14px; }
3146
-
3147
- #aa-properties .aa-properties-content .aa-properties-content-head {
3148
- padding: 20px 10px; }
3149
-
3150
- #aa-properties .aa-properties-content .aa-properties-content-head .aa-properties-content-head-left label {
3151
- font-size: 16px;
3152
- margin-right: 0px; }
3153
-
3154
- .pulse {
3155
- left: 38%; } }
3156
- /* content areas:; */
3157
- .services-section {
3158
- float: left;
3159
- width: 100%;
3160
- padding-bottom: 40px;
3161
- padding-top: 10px;
3162
- border-top: 1px solid #e0eded;
3163
- border-bottom: 1px solid #e0eded;
3164
- background: #fcfcfc; }
3165
-
3166
- .services-section .container .services-wrapper {
3167
- margin-top: 45px;
3168
- /* float: left;
3169
- width: 100%;
3170
- */ }
3171
-
3172
- .services-section .container .services-wrapper .single-service {
3173
- width: 100% !important;
3174
- /* having to use above to override col-md-4 which I foolishly
3175
- include in db content - impossible to add margin between cols the
3176
- way it was structured */
3177
- height: 400px;
3178
- overflow: hidden;
3179
- /*above not the best - have to figure out solution for when users
3180
- enter text that exceeds height */
3181
- border: 1px solid #e0eded;
3182
- background-color: #FFF;
3183
- text-align: center;
3184
- padding: 5;
3185
- transition: all 300ms ease-in-out;
3186
- -o-transition: all 300ms ease-in-out;
3187
- -moz-transition: all 300ms ease-in-out;
3188
- -webkit-transition: all 300ms ease-in-out; }
3189
-
3190
- .services-section .container .services-wrapper .single-service h4 {
3191
- font-size: 20px;
3192
- font-weight: 500;
3193
- margin-top: 30px;
3194
- transition: all 300ms ease-in-out;
3195
- -o-transition: all 300ms ease-in-out;
3196
- -moz-transition: all 300ms ease-in-out;
3197
- -webkit-transition: all 300ms ease-in-out; }
3198
-
3199
- .services-section .container .services-wrapper .single-service p {
3200
- font-size: 15px;
3201
- font-weight: 400;
3202
- /* color:#bababa;
3203
- */ }
3204
-
3205
- .services-section .container .services-wrapper .single-service .icon-service {
3206
- color: #B2B2B2;
3207
- font-size: 45px;
3208
- border: 1px solid #B2B2B2;
3209
- -webkit-border-radius: 100px;
3210
- -moz-border-radius: 100px;
3211
- -ms-border-radius: 100px;
3212
- -o-border-radius: 100px;
3213
- border-radius: 100px;
3214
- transition: all 300ms ease-in-out;
3215
- -o-transition: all 300ms ease-in-out;
3216
- -moz-transition: all 300ms ease-in-out;
3217
- -webkit-transition: all 300ms ease-in-out; }
3218
-
3219
- .services-section .container .services-wrapper .single-service .bordered {
3220
- /*border: 2px solid #0095e6;*/
3221
- width: 25%;
3222
- margin: 13px auto -4px;
3223
- transition: all 300ms ease-in-out;
3224
- -o-transition: all 300ms ease-in-out;
3225
- -moz-transition: all 300ms ease-in-out;
3226
- -webkit-transition: all 300ms ease-in-out; }
3227
-
3228
- .services-section .container .services-wrapper .single-service .top-bordered {
3229
- margin: 0 auto;
3230
- opacity: 0;
3231
- transition: all 300ms ease-in-out;
3232
- -o-transition: all 300ms ease-in-out;
3233
- -moz-transition: all 300ms ease-in-out;
3234
- -webkit-transition: all 300ms ease-in-out; }
3235
-
3236
- /*.services-section .container .services-wrapper .single-service .icon-service {
3237
- color: #0095e6;
3238
- border-color: #0095e6;
3239
- }
3240
- */
3241
- /*.services-section .container .services-wrapper .single-service:hover h4 {
3242
- color: #0095e6;
3243
- }
3244
- */
3245
- .services-section .container .services-wrapper .single-service:hover .top-bordered {
3246
- opacity: 1; }
3247
-
3248
- .services-section .container .services-wrapper .single-service p {
3249
- text-align: left;
3250
- padding: 2%; }
3251
-
3252
- .services-section .container .services-wrapper .single-service h4 {
3253
- text-align: center; }
3254
-
3255
- .services-section .container .services-wrapper .single-service .icon-service {
3256
- text-align: center;
3257
- -webkit-border-radius: 100px;
3258
- -moz-border-radius: 100px;
3259
- -ms-border-radius: 100px;
3260
- -o-border-radius: 100px;
3261
- border-radius: 100px;
3262
- width: 110px;
3263
- padding: 30px;
3264
- margin: 13px 0; }
3265
-
3266
- /* Slider */
3267
- .slick-slider {
3268
- position: relative;
3269
- display: block;
3270
- -moz-box-sizing: border-box;
3271
- box-sizing: border-box;
3272
- -webkit-user-select: none;
3273
- -moz-user-select: none;
3274
- -ms-user-select: none;
3275
- user-select: none;
3276
- -webkit-touch-callout: none;
3277
- -khtml-user-select: none;
3278
- -ms-touch-action: pan-y;
3279
- touch-action: pan-y;
3280
- -webkit-tap-highlight-color: transparent; }
3281
-
3282
- .slick-list {
3283
- position: relative;
3284
- display: block;
3285
- overflow: hidden;
3286
- margin: 0;
3287
- padding: 0; }
3288
-
3289
- .slick-list:focus {
3290
- outline: none; }
3291
-
3292
- .slick-list.dragging {
3293
- cursor: pointer;
3294
- cursor: hand; }
3295
-
3296
- .slick-slider .slick-track,
3297
- .slick-slider .slick-list {
3298
- -webkit-transform: translate3d(0, 0, 0);
3299
- -moz-transform: translate3d(0, 0, 0);
3300
- -ms-transform: translate3d(0, 0, 0);
3301
- -o-transform: translate3d(0, 0, 0);
3302
- transform: translate3d(0, 0, 0); }
3303
-
3304
- .slick-track {
3305
- position: relative;
3306
- top: 0;
3307
- left: 0;
3308
- display: block; }
3309
-
3310
- .slick-track:before,
3311
- .slick-track:after {
3312
- display: table;
3313
- content: ''; }
3314
-
3315
- .slick-track:after {
3316
- clear: both; }
3317
-
3318
- .slick-loading .slick-track {
3319
- visibility: hidden; }
3320
-
3321
- .slick-slide {
3322
- display: none;
3323
- float: left;
3324
- height: 100%;
3325
- min-height: 1px; }
3326
-
3327
- [dir='rtl'] .slick-slide {
3328
- float: right; }
3329
-
3330
- .slick-slide img {
3331
- display: block; }
3332
-
3333
- .slick-slide.slick-loading img {
3334
- display: none; }
3335
-
3336
- .slick-slide.dragging img {
3337
- pointer-events: none; }
3338
-
3339
- .slick-initialized .slick-slide {
3340
- display: block; }
3341
-
3342
- .slick-loading .slick-slide {
3343
- visibility: hidden; }
3344
-
3345
- .slick-vertical .slick-slide {
3346
- display: block;
3347
- height: auto;
3348
- border: 1px solid transparent; }
3349
-
3350
- .slick-arrow.slick-hidden {
3351
- display: none; }
3352
-
3353
- /*=============================================================================*/
3354
- /* Slider */
3355
- .slick-loading .slick-list {
3356
- background: #fff url("/images/themes/chic/slick/ajax-loader.gif") center center no-repeat; }
3357
-
3358
- /* Icons */
3359
- @font-face {
3360
- /* font-family: 'slick';
3361
- font-weight: normal;
3362
- font-style: normal;
3363
-
3364
- src: url('./fonts/slick.eot');
3365
- src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');*/ }
3366
- /* Arrows */
3367
- .slick-prev,
3368
- .slick-next {
3369
- font-size: 0;
3370
- line-height: 0;
3371
- position: absolute;
3372
- top: 50%;
3373
- display: block;
3374
- width: 20px;
3375
- height: 20px;
3376
- margin-top: -10px;
3377
- padding: 0;
3378
- cursor: pointer;
3379
- color: transparent;
3380
- border: none;
3381
- outline: none;
3382
- z-index: 9; }
3383
-
3384
- .slick-prev:hover,
3385
- .slick-prev:focus,
3386
- .slick-next:hover,
3387
- .slick-next:focus {
3388
- /* color: #000;
3389
- outline: none;
3390
- background: transparent;*/ }
3391
-
3392
- .slick-prev:hover:before,
3393
- .slick-prev:focus:before,
3394
- .slick-next:hover:before,
3395
- .slick-next:focus:before {
3396
- opacity: 1; }
3397
-
3398
- .slick-prev.slick-disabled:before,
3399
- .slick-next.slick-disabled:before {
3400
- opacity: .6;
3401
- /*opacity: 1;*/ }
3402
-
3403
- .slick-prev:before,
3404
- .slick-next:before {
3405
- font-family: 'fontAwesome';
3406
- font-size: 20px;
3407
- line-height: 1;
3408
- opacity: 1;
3409
- color: white;
3410
- -webkit-font-smoothing: antialiased;
3411
- -moz-osx-font-smoothing: grayscale; }
3412
-
3413
- .slick-prev {
3414
- left: 0; }
3415
-
3416
- [dir='rtl'] .slick-prev {
3417
- right: -25px;
3418
- left: auto; }
3419
-
3420
- .slick-prev:before {
3421
- content: '\f104'; }
3422
-
3423
- [dir='rtl'] .slick-prev:before {
3424
- content: '\f104'; }
3425
-
3426
- .slick-next {
3427
- right: 0; }
3428
-
3429
- [dir='rtl'] .slick-next {
3430
- right: auto;
3431
- left: -25px; }
3432
-
3433
- .slick-next:before {
3434
- content: '\f105'; }
3435
-
3436
- [dir='rtl'] .slick-next:before {
3437
- content: '\f105'; }
3438
-
3439
- /* Dots */
3440
- .slick-slider {
3441
- /*margin-bottom: 30px;*/ }
3442
-
3443
- .slick-dots {
3444
- position: absolute;
3445
- bottom: -45px;
3446
- display: block;
3447
- width: 100%;
3448
- padding: 0;
3449
- list-style: none;
3450
- text-align: center; }
3451
-
3452
- .slick-dots li {
3453
- position: relative;
3454
- display: inline-block;
3455
- width: 20px;
3456
- height: 20px;
3457
- margin: 0 5px;
3458
- padding: 0;
3459
- cursor: pointer; }
3460
-
3461
- .slick-dots li button {
3462
- font-size: 0;
3463
- line-height: 0;
3464
- display: block;
3465
- width: 20px;
3466
- height: 20px;
3467
- padding: 5px;
3468
- cursor: pointer;
3469
- color: transparent;
3470
- border: 0;
3471
- outline: none;
3472
- background: transparent; }
3473
-
3474
- .slick-dots li button:hover,
3475
- .slick-dots li button:focus {
3476
- outline: none; }
3477
-
3478
- .slick-dots li button:hover:before,
3479
- .slick-dots li button:focus:before {
3480
- opacity: 1; }
3481
-
3482
- .slick-dots li button:before {
3483
- font-family: 'slick';
3484
- font-size: 6px;
3485
- line-height: 20px;
3486
- position: absolute;
3487
- top: 0;
3488
- left: 0;
3489
- width: 20px;
3490
- height: 20px;
3491
- content: '•';
3492
- text-align: center;
3493
- opacity: .25;
3494
- color: black;
3495
- -webkit-font-smoothing: antialiased;
3496
- -moz-osx-font-smoothing: grayscale; }
3497
-
3498
- .slick-dots li.slick-active button:before {
3499
- opacity: .75;
3500
- color: black; }