style.css 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336
  1. /*
  2. * Template Name: Homespace
  3. * Template Author: Untree.co
  4. * Tempalte URI: https://untree.co/
  5. * License: https://creativecommons.org/licenses/by/3.0/
  6. */
  7. body {
  8. font-family: "Lato", sans-serif;
  9. line-height: 1.5;
  10. background: #ffffff;
  11. overflow-x: hidden;
  12. font-size: 14px;
  13. color: #999; }
  14. body:before {
  15. content: "";
  16. position: fixed;
  17. top: 0;
  18. left: 0;
  19. z-index: 99;
  20. right: 0;
  21. bottom: 0;
  22. background: rgba(0, 0, 0, 0.2);
  23. opacity: 0;
  24. visibility: hidden;
  25. -webkit-transition: .3s all ease;
  26. -o-transition: .3s all ease;
  27. transition: .3s all ease; }
  28. body.offcanvas-menu:before {
  29. opacity: 1;
  30. visibility: visible; }
  31. .text-black {
  32. color: #000000 !important; }
  33. .text-secondary {
  34. color: #009ECE !important; }
  35. .bg-primary-light {
  36. background-color: rgba(0, 158, 206, 0.05); }
  37. .bg-secondary-light {
  38. background-color: rgba(0, 158, 206, 0.05); }
  39. a {
  40. color: #009ECE;
  41. -webkit-transition: .3s all ease;
  42. -o-transition: .3s all ease;
  43. transition: .3s all ease; }
  44. a:hover {
  45. color: #009ECE;
  46. text-decoration: none; }
  47. ::-moz-selection {
  48. background: #000000;
  49. color: #ffffff; }
  50. ::selection {
  51. background: #000000;
  52. color: #ffffff; }
  53. .text-primary {
  54. color: #009ECE !important; }
  55. a.text-primary {
  56. color: #009ECE !important; }
  57. a.text-primary:hover {
  58. color: #009ECE !important; }
  59. h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  60. font-family: "Lato", sans-serif;
  61. color: #000000; }
  62. .btn {
  63. padding-top: 12px;
  64. padding-bottom: 12px;
  65. padding-left: 30px;
  66. padding-right: 30px;
  67. border-radius: 30px;
  68. font-size: 14px; }
  69. .btn:active, .btn:focus {
  70. outline: none;
  71. -webkit-box-shadow: none;
  72. box-shadow: none; }
  73. .btn.btn-primary {
  74. background: #009ECE;
  75. border-color: #009ECE; }
  76. .btn.btn-primary:hover {
  77. border-color: #00aee2;
  78. background: #00aee2; }
  79. .form-control, .custom-select {
  80. border: 2px solid #e9ecef;
  81. font-size: 16px;
  82. height: 45px; }
  83. .form-control:active, .form-control:focus, .custom-select:active, .custom-select:focus {
  84. border-color: #009ECE;
  85. -webkit-box-shadow: none;
  86. box-shadow: none; }
  87. .gutter-v1 {
  88. margin-right: -20px;
  89. margin-left: -20px; }
  90. @media (max-width: 991.98px) {
  91. .gutter-v1 {
  92. margin-left: -15px;
  93. margin-right: -15px; } }
  94. .gutter-v1 > .col,
  95. .gutter-v1 > [class*="col-"] {
  96. padding-right: 20px;
  97. padding-left: 20px; }
  98. @media (max-width: 991.98px) {
  99. .gutter-v1 > .col,
  100. .gutter-v1 > [class*="col-"] {
  101. padding-right: 15px;
  102. padding-left: 15px; } }
  103. .gutter-v2 {
  104. margin-right: -5px;
  105. margin-left: -5px; }
  106. @media (max-width: 991.98px) {
  107. .gutter-v2 {
  108. margin-left: -15px;
  109. margin-right: -15px; } }
  110. .gutter-v2 > .col,
  111. .gutter-v2 > [class*="col-"] {
  112. padding-right: 5px;
  113. padding-left: 5px; }
  114. @media (max-width: 991.98px) {
  115. .gutter-v2 > .col,
  116. .gutter-v2 > [class*="col-"] {
  117. padding-right: 15px;
  118. padding-left: 15px; } }
  119. .gutter-v3 {
  120. margin-right: -40px;
  121. margin-left: -40px; }
  122. @media (max-width: 991.98px) {
  123. .gutter-v3 {
  124. margin-left: -15px;
  125. margin-right: -15px; } }
  126. .gutter-v3 > .col,
  127. .gutter-v3 > [class*="col-"] {
  128. padding-right: 40px;
  129. padding-left: 40px; }
  130. @media (max-width: 991.98px) {
  131. .gutter-v3 > .col,
  132. .gutter-v3 > [class*="col-"] {
  133. padding-right: 15px;
  134. padding-left: 15px; } }
  135. .spinner-border {
  136. color: #009ECE; }
  137. /*PRELOADING------------ */
  138. #overlayer {
  139. width: 100%;
  140. height: 100%;
  141. position: fixed;
  142. z-index: 7100;
  143. background: #ffffff;
  144. top: 0;
  145. left: 0;
  146. right: 0;
  147. bottom: 0; }
  148. .loader {
  149. z-index: 7700;
  150. position: fixed;
  151. top: 50%;
  152. left: 50%;
  153. -webkit-transform: translate(-50%, -50%);
  154. -ms-transform: translate(-50%, -50%);
  155. transform: translate(-50%, -50%); }
  156. .position-relative {
  157. position: relative; }
  158. .logo {
  159. font-size: 24px;
  160. color: #000000;
  161. font-weight: 700; }
  162. .logo:hover {
  163. color: #000000; }
  164. .site-nav {
  165. position: relative; }
  166. .site-nav {
  167. padding-top: 20px;
  168. padding-bottom: 20px; }
  169. .site-nav h1 {
  170. margin: 0;
  171. padding: 0;
  172. font-size: 24px; }
  173. .site-nav .site-navigation .site-menu {
  174. margin-bottom: 0; }
  175. .site-nav .site-navigation .site-menu > li {
  176. display: inline-block; }
  177. .site-nav .site-navigation .site-menu > li > a {
  178. font-size: 14px;
  179. padding: 10px 15px;
  180. color: #000000;
  181. display: inline-block;
  182. text-decoration: none !important;
  183. color: #000000; }
  184. .site-nav .site-navigation .site-menu > li > a:hover {
  185. color: #009ECE; }
  186. .site-nav .site-navigation .site-menu > li.cta-button a {
  187. padding: 5px 22px;
  188. border: 1px solid rgba(0, 0, 0, 0.1);
  189. color: #000000;
  190. border-radius: 30px; }
  191. .site-nav .site-navigation .site-menu > li.cta-button a:hover {
  192. color: #ffffff;
  193. background: #009ECE;
  194. border-color: #009ECE; }
  195. .site-nav .site-navigation .site-menu > li.cta-button.active a {
  196. color: #ffffff;
  197. background: #009ECE;
  198. border-color: #009ECE; }
  199. .site-nav .site-navigation .site-menu > li.active > a {
  200. color: #009ECE; }
  201. .site-nav .site-navigation .site-menu .has-children {
  202. position: relative; }
  203. .site-nav .site-navigation .site-menu .has-children > a {
  204. position: relative;
  205. padding-right: 20px; }
  206. .site-nav .site-navigation .site-menu .has-children > a:before {
  207. position: absolute;
  208. content: "\e313";
  209. font-size: 14px;
  210. top: 50%;
  211. right: 0;
  212. -webkit-transform: translateY(-50%);
  213. -ms-transform: translateY(-50%);
  214. transform: translateY(-50%);
  215. font-family: 'icomoon'; }
  216. .site-nav .site-navigation .site-menu .has-children .dropdown {
  217. visibility: hidden;
  218. opacity: 0;
  219. top: 100%;
  220. z-index: 999;
  221. position: absolute;
  222. text-align: left;
  223. -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  224. box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  225. padding: 20px 0;
  226. margin-top: 20px;
  227. margin-left: 0px;
  228. background: #ffffff;
  229. -webkit-transition: 0.2s 0s;
  230. -o-transition: 0.2s 0s;
  231. transition: 0.2s 0s; }
  232. .site-nav .site-navigation .site-menu .has-children .dropdown.arrow-top {
  233. position: absolute; }
  234. .site-nav .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  235. display: none;
  236. bottom: 100%;
  237. left: 20%;
  238. border: solid transparent;
  239. content: " ";
  240. height: 0;
  241. width: 0;
  242. position: absolute;
  243. pointer-events: none; }
  244. .site-nav .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  245. display: none;
  246. border-color: rgba(136, 183, 213, 0);
  247. border-bottom-color: #ffffff;
  248. border-width: 10px;
  249. margin-left: -10px; }
  250. .site-nav .site-navigation .site-menu .has-children .dropdown a {
  251. font-size: 14px;
  252. text-transform: none;
  253. letter-spacing: normal;
  254. -webkit-transition: 0s all;
  255. -o-transition: 0s all;
  256. transition: 0s all;
  257. color: #000000; }
  258. .site-nav .site-navigation .site-menu .has-children .dropdown .active {
  259. color: #009ECE !important; }
  260. .site-nav .site-navigation .site-menu .has-children .dropdown > li {
  261. list-style: none;
  262. padding: 0;
  263. margin: 0;
  264. min-width: 180px; }
  265. .site-nav .site-navigation .site-menu .has-children .dropdown > li > a {
  266. padding: 5px 20px;
  267. display: block; }
  268. .site-nav .site-navigation .site-menu .has-children .dropdown > li > a:hover {
  269. color: #009ECE; }
  270. .site-nav .site-navigation .site-menu .has-children .dropdown > li.active > a {
  271. color: #009ECE; }
  272. .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > a:before {
  273. content: "\e315";
  274. right: 20px; }
  275. .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown, .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {
  276. left: 100%;
  277. top: 0; }
  278. .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown li a:hover, .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > ul li a:hover {
  279. color: #009ECE; }
  280. .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children:hover > a, .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children:active > a, .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children:focus > a {
  281. color: #009ECE; }
  282. .site-nav .site-navigation .site-menu .has-children:hover > a, .site-nav .site-navigation .site-menu .has-children:focus > a, .site-nav .site-navigation .site-menu .has-children:active > a {
  283. color: #009ECE; }
  284. .site-nav .site-navigation .site-menu .has-children:hover, .site-nav .site-navigation .site-menu .has-children:focus, .site-nav .site-navigation .site-menu .has-children:active {
  285. cursor: pointer; }
  286. .site-nav .site-navigation .site-menu .has-children:hover > .dropdown, .site-nav .site-navigation .site-menu .has-children:focus > .dropdown, .site-nav .site-navigation .site-menu .has-children:active > .dropdown {
  287. -webkit-transition-delay: 0s;
  288. -o-transition-delay: 0s;
  289. transition-delay: 0s;
  290. margin-top: 0px;
  291. visibility: visible;
  292. opacity: 1; }
  293. .site-mobile-menu-close {
  294. display: block;
  295. position: relative;
  296. height: 30px;
  297. width: 30px;
  298. z-index: 99;
  299. cursor: pointer;
  300. top: -20px; }
  301. .site-mobile-menu-close > span {
  302. cursor: pointer;
  303. display: block;
  304. position: absolute;
  305. height: 30px;
  306. width: 30px; }
  307. .site-mobile-menu-close > span:before, .site-mobile-menu-close > span:after {
  308. position: absolute;
  309. content: "";
  310. width: 2px;
  311. height: 30px;
  312. background: #000000; }
  313. .site-mobile-menu-close > span:before {
  314. -webkit-transform: rotate(45deg);
  315. -ms-transform: rotate(45deg);
  316. transform: rotate(45deg); }
  317. .site-mobile-menu-close > span:after {
  318. -webkit-transform: rotate(-45deg);
  319. -ms-transform: rotate(-45deg);
  320. transform: rotate(-45deg); }
  321. .site-mobile-menu {
  322. width: 300px;
  323. position: fixed;
  324. right: 0;
  325. z-index: 2000;
  326. padding-top: 20px;
  327. background: #ffffff;
  328. height: calc(100vh);
  329. -webkit-transform: translateX(100%);
  330. -ms-transform: translateX(100%);
  331. transform: translateX(100%);
  332. -webkit-transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
  333. -o-transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
  334. transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1); }
  335. .offcanvas-menu .site-mobile-menu {
  336. -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  337. box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  338. -webkit-transform: translateX(0%);
  339. -ms-transform: translateX(0%);
  340. transform: translateX(0%); }
  341. .site-mobile-menu .site-mobile-menu-header {
  342. width: 100%;
  343. float: left;
  344. padding-left: 20px;
  345. padding-right: 20px; }
  346. .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  347. float: right;
  348. margin-top: 8px; }
  349. .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  350. font-size: 30px;
  351. display: inline-block;
  352. padding-left: 10px;
  353. padding-right: 0px;
  354. line-height: 1;
  355. cursor: pointer;
  356. -webkit-transition: .3s all ease;
  357. -o-transition: .3s all ease;
  358. transition: .3s all ease; }
  359. .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  360. float: left;
  361. margin-top: 10px;
  362. margin-left: 0px; }
  363. .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  364. display: inline-block;
  365. text-transform: uppercase; }
  366. .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  367. max-width: 70px; }
  368. .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  369. text-decoration: none; }
  370. .site-mobile-menu .site-mobile-menu-body {
  371. overflow-y: scroll;
  372. -webkit-overflow-scrolling: touch;
  373. position: relative;
  374. padding: 0 20px 20px 20px;
  375. height: calc(100vh - 52px);
  376. padding-bottom: 150px; }
  377. .site-mobile-menu .site-nav-wrap {
  378. padding: 0;
  379. margin: 0;
  380. list-style: none;
  381. position: relative; }
  382. .site-mobile-menu .site-nav-wrap a {
  383. padding: 5px 20px;
  384. display: block;
  385. position: relative;
  386. color: #000000; }
  387. .site-mobile-menu .site-nav-wrap a:hover {
  388. color: #009ECE; }
  389. .site-mobile-menu .site-nav-wrap li {
  390. position: relative;
  391. display: block; }
  392. .site-mobile-menu .site-nav-wrap li.active > a {
  393. color: #009ECE; }
  394. .site-mobile-menu .site-nav-wrap .arrow-collapse {
  395. position: absolute;
  396. right: 0px;
  397. top: 0px;
  398. z-index: 20;
  399. width: 36px;
  400. height: 36px;
  401. text-align: center;
  402. cursor: pointer;
  403. border-radius: 50%;
  404. border: 1px solid #f8f9fa; }
  405. .site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  406. font-size: 14px;
  407. z-index: 20;
  408. font-family: "icomoon";
  409. content: "\e313";
  410. position: absolute;
  411. top: 50%;
  412. left: 50%;
  413. -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  414. -ms-transform: translate(-50%, -50%) rotate(-180deg);
  415. transform: translate(-50%, -50%) rotate(-180deg);
  416. -webkit-transition: .3s all ease;
  417. -o-transition: .3s all ease;
  418. transition: .3s all ease; }
  419. .site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  420. -webkit-transform: translate(-50%, -50%);
  421. -ms-transform: translate(-50%, -50%);
  422. transform: translate(-50%, -50%); }
  423. .site-mobile-menu .site-nav-wrap > li {
  424. display: block;
  425. position: relative;
  426. float: left;
  427. width: 100%; }
  428. .site-mobile-menu .site-nav-wrap > li > a {
  429. padding-left: 20px;
  430. font-size: 14px; }
  431. .site-mobile-menu .site-nav-wrap > li > ul {
  432. padding: 0;
  433. margin: 0;
  434. list-style: none; }
  435. .site-mobile-menu .site-nav-wrap > li > ul > li {
  436. display: block; }
  437. .site-mobile-menu .site-nav-wrap > li > ul > li > a {
  438. padding-left: 40px;
  439. font-size: 14px; }
  440. .site-mobile-menu .site-nav-wrap > li > ul > li > ul {
  441. padding: 0;
  442. margin: 0; }
  443. .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
  444. display: block; }
  445. .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
  446. font-size: 14px;
  447. padding-left: 60px; }
  448. .sticky-wrapper {
  449. position: absolute;
  450. z-index: 100;
  451. width: 100%; }
  452. .sticky-wrapper .site-navbar {
  453. -webkit-transition: .3s all ease;
  454. -o-transition: .3s all ease;
  455. transition: .3s all ease; }
  456. .sticky-wrapper .site-navbar .site-menu-toggle {
  457. color: #000000; }
  458. .sticky-wrapper .site-navbar .site-logo a {
  459. color: #000000; }
  460. .sticky-wrapper .site-navbar .site-menu > li > a {
  461. color: rgba(0, 0, 0, 0.8) !important; }
  462. .sticky-wrapper .site-navbar .site-menu > li > a:hover, .sticky-wrapper .site-navbar .site-menu > li > a.active {
  463. color: #000000 !important; }
  464. .sticky-wrapper.is-sticky .burger:before, .sticky-wrapper.is-sticky .burger span, .sticky-wrapper.is-sticky .burger:after {
  465. background: #000000;
  466. -webkit-transition: .0s all ease;
  467. -o-transition: .0s all ease;
  468. transition: .0s all ease; }
  469. .sticky-wrapper.is-sticky .site-navbar {
  470. background: #000000;
  471. border-bottom: 1px solid transparent;
  472. -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
  473. box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1); }
  474. .sticky-wrapper.is-sticky .site-navbar .site-logo a {
  475. color: #000000 !important; }
  476. .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a {
  477. color: #000000 !important; }
  478. .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover, .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.active {
  479. color: #009ECE !important; }
  480. .sticky-wrapper.is-sticky .site-navbar .site-menu > li.active a {
  481. color: #009ECE !important; }
  482. .sticky-wrapper .shrink {
  483. padding-top: 0px !important;
  484. padding-bottom: 0px !important; }
  485. /* Burger */
  486. .burger {
  487. width: 28px;
  488. height: 32px;
  489. cursor: pointer;
  490. position: relative; }
  491. .burger.light:before, .burger.light span, .burger.light:after {
  492. background: #ffffff; }
  493. .burger:before, .burger span, .burger:after {
  494. width: 100%;
  495. height: 2px;
  496. display: block;
  497. background: #000;
  498. border-radius: 2px;
  499. position: absolute;
  500. opacity: 1; }
  501. .burger:before, .burger:after {
  502. -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  503. transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  504. -o-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  505. transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  506. transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  507. -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  508. content: ""; }
  509. .burger:before {
  510. top: 4px; }
  511. .burger span {
  512. top: 15px; }
  513. .burger:after {
  514. top: 26px; }
  515. /* Hover */
  516. .burger:hover:before {
  517. top: 7px; }
  518. .burger:hover:after {
  519. top: 23px; }
  520. /* Click */
  521. .burger.active span {
  522. opacity: 0; }
  523. .burger.active:before, .burger.active:after {
  524. top: 40%; }
  525. .burger.active:before {
  526. -webkit-transform: rotate(45deg);
  527. -moz-transform: rotate(45deg);
  528. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5);
  529. /*for IE*/ }
  530. .burger.active:after {
  531. -webkit-transform: rotate(-45deg);
  532. -moz-transform: rotate(-45deg);
  533. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5);
  534. /*for IE*/ }
  535. .burger:focus {
  536. outline: none; }
  537. .untree_co_slider .slick-slide {
  538. margin: 0 5px;
  539. width: 20px;
  540. -webkit-transform: scale(0.9);
  541. -ms-transform: scale(0.9);
  542. transform: scale(0.9);
  543. -webkit-transition: .3s all ease;
  544. -o-transition: .3s all ease;
  545. transition: .3s all ease;
  546. opacity: .4; }
  547. .untree_co_slider .slick-slide:active, .untree_co_slider .slick-slide:focus {
  548. outline: none; }
  549. .untree_co_slider .slick-slide.slick-center {
  550. opacity: 1;
  551. -webkit-transform: scale(1);
  552. -ms-transform: scale(1);
  553. transform: scale(1); }
  554. .untree_co_slider .slick-slide.slick-center > img {
  555. -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  556. box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2); }
  557. .untree_co_slider .slick-list {
  558. margin: 0 -5px;
  559. padding-bottom: 50px !important; }
  560. .untree_co_slider .item {
  561. position: relative; }
  562. .untree_co_slider .item:before {
  563. content: "";
  564. position: absolute;
  565. bottom: 0;
  566. left: 0;
  567. right: 0;
  568. top: 0;
  569. background: black;
  570. background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  571. background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  572. background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  573. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%); }
  574. .untree_co_slider-wrap {
  575. position: relative;
  576. background: #f8f9fa url("../images/subtle_zebra_3d.png") repeat top left;
  577. padding: 7rem 0; }
  578. .untree_co_slider-wrap .nav-direction {
  579. position: absolute;
  580. z-index: 2;
  581. height: 50px;
  582. top: 50%;
  583. width: 100%;
  584. -webkit-transform: translateY(-50%);
  585. -ms-transform: translateY(-50%);
  586. transform: translateY(-50%);
  587. margin-top: -25px; }
  588. .untree_co_slider-wrap .nav-direction .nav-left,
  589. .untree_co_slider-wrap .nav-direction .nav-right {
  590. font-size: 30px;
  591. width: 50px;
  592. height: 50px;
  593. line-height: 50px;
  594. border-radius: 50%;
  595. text-align: center;
  596. position: absolute;
  597. background: #009ECE;
  598. color: #ffffff; }
  599. .untree_co_slider-wrap .nav-direction .nav-left > span,
  600. .untree_co_slider-wrap .nav-direction .nav-right > span {
  601. position: absolute;
  602. top: 50%;
  603. left: 50%;
  604. -webkit-transform: translate(-50%, -50%);
  605. -ms-transform: translate(-50%, -50%);
  606. transform: translate(-50%, -50%); }
  607. .untree_co_slider-wrap .nav-direction .nav-left.slick-disabled,
  608. .untree_co_slider-wrap .nav-direction .nav-right.slick-disabled {
  609. display: none !important; }
  610. .untree_co_slider-wrap .nav-direction .nav-left {
  611. left: 14%; }
  612. @media (max-width: 991.98px) {
  613. .untree_co_slider-wrap .nav-direction .nav-left {
  614. left: 0%; } }
  615. .untree_co_slider-wrap .nav-direction .nav-right {
  616. right: 14%; }
  617. @media (max-width: 991.98px) {
  618. .untree_co_slider-wrap .nav-direction .nav-right {
  619. right: 0%; } }
  620. .untree_co_slider-wrap .property-contents {
  621. position: absolute;
  622. bottom: 20px;
  623. right: 20px;
  624. margin-top: 0px;
  625. width: 300px;
  626. padding: 30px;
  627. z-index: 9; }
  628. @media (max-width: 991.98px) {
  629. .untree_co_slider-wrap .property-contents {
  630. position: absolute;
  631. background: none;
  632. color: #ffffff;
  633. bottom: 20px;
  634. right: 20px;
  635. padding: 0;
  636. width: auto;
  637. padding-left: 10px; } }
  638. .untree_co_slider-wrap .property-contents .current-price {
  639. display: block;
  640. font-size: 30px;
  641. color: #ffffff !important; }
  642. .untree_co_slider-wrap .property-contents .old-price {
  643. text-decoration: line-through;
  644. color: rgba(255, 255, 255, 0.5);
  645. display: block;
  646. margin-bottom: 10px; }
  647. @media (max-width: 991.98px) {
  648. .untree_co_slider-wrap .property-contents .old-price {
  649. color: #ffffff; } }
  650. .untree_co_slider-wrap .property-contents h2 {
  651. font-size: 15px;
  652. font-weight: 400;
  653. margin: 0; }
  654. .untree_co_slider-wrap .property-contents h2 a {
  655. color: #ffffff; }
  656. @media (max-width: 991.98px) {
  657. .untree_co_slider-wrap .property-contents h2 a {
  658. color: #ffffff; } }
  659. .untree_co_slider-wrap .property-contents strong {
  660. color: #000000; }
  661. @media (max-width: 991.98px) {
  662. .untree_co_slider-wrap .property-contents strong {
  663. color: #ffffff !important; } }
  664. .untree_co_slider-wrap .specs li {
  665. padding-right: 20px; }
  666. .untree_co_slider-wrap .specs .icon-wrap {
  667. font-size: 25px;
  668. margin-right: 10px; }
  669. .untree_co_slider-wrap .property_details {
  670. position: absolute;
  671. bottom: 0;
  672. z-index: 9;
  673. left: 0;
  674. right: 0;
  675. color: #ffffff;
  676. padding: 30px 30px 15px 30px; }
  677. .untree_co_slider-wrap .property_details div .caption {
  678. color: #ffffff;
  679. font-size: 12px; }
  680. .untree_co_slider-wrap .property_details div .number {
  681. font-size: 18px; }
  682. .untree_co_slider-wrap .property_details div .icon {
  683. font-size: 20px;
  684. margin-right: 10px; }
  685. .untree_co_slider-wrap .property_details div .icon span {
  686. font-size: 20px; }
  687. .untree_co_slider-wrap .property_details .detail {
  688. position: relative; }
  689. .untree_co_slider-wrap .property_details .detail:after {
  690. content: "";
  691. position: absolute;
  692. height: 20px;
  693. right: 20%;
  694. background: rgba(255, 255, 255, 0.5);
  695. width: 1px;
  696. top: 50%;
  697. -webkit-transform: translateY(-50%);
  698. -ms-transform: translateY(-50%);
  699. transform: translateY(-50%); }
  700. .untree_co_slider-wrap .property_details .detail:last-child:after {
  701. display: none; }
  702. .untree_co-section {
  703. padding: 70px 0; }
  704. .untree_co-section .heading {
  705. font-size: 20px; }
  706. .untree_co-section .heading-2 {
  707. font-size: 30px;
  708. color: #009ECE; }
  709. @media (max-width: 991.98px) {
  710. .untree_co-section .heading-2 {
  711. font-size: 30px; } }
  712. .service {
  713. text-align: center; }
  714. .service .icon-wrap {
  715. position: relative;
  716. margin-bottom: 20px;
  717. display: inline-block; }
  718. .service .icon-wrap span {
  719. font-size: 50px;
  720. color: #009ECE; }
  721. .service .icon-wrap:before {
  722. top: 0;
  723. left: -10px;
  724. width: 55px;
  725. height: 55px;
  726. position: absolute;
  727. content: "";
  728. background: rgba(0, 158, 206, 0.1);
  729. border-radius: 50%; }
  730. .service h3 {
  731. font-size: 16px; }
  732. .service h3 a {
  733. color: #000000; }
  734. .property-entry {
  735. margin-bottom: 30px; }
  736. .property-entry .price {
  737. font-size: 30px;
  738. display: block;
  739. color: #009ECE;
  740. margin-bottom: 15px; }
  741. .property-entry .specs {
  742. padding: 0;
  743. margin: 0 0 15px 0; }
  744. .property-entry .specs li {
  745. display: inline-block;
  746. margin-right: 10px; }
  747. .property-entry .specs li .icon-wrap {
  748. font-size: 26px;
  749. margin-right: 5px; }
  750. .property-entry .property-specs {
  751. position: relative;
  752. background: #ffffff;
  753. padding: 30px;
  754. width: calc(100% - 0px);
  755. margin-left: 0px;
  756. margin-right: 0px;
  757. margin-top: -15px; }
  758. .property-entry .property-specs strong {
  759. color: #000000; }
  760. .property-entry .location h3 {
  761. font-size: 15px; }
  762. .property-entry .location h3 a {
  763. color: #000000; }
  764. .property-entry .more {
  765. position: relative; }
  766. .property-entry .more > a {
  767. position: relative;
  768. display: inline-block;
  769. width: 45px;
  770. height: 40px;
  771. background: #009ECE;
  772. border-radius: 4px; }
  773. .property-entry .more > a span {
  774. color: #ffffff;
  775. font-size: 20px;
  776. display: inline-block;
  777. -webkit-transform: translate(-50%, -50%) rotate(180deg);
  778. -ms-transform: translate(-50%, -50%) rotate(180deg);
  779. transform: translate(-50%, -50%) rotate(180deg);
  780. position: absolute;
  781. top: 50%;
  782. left: 50%; }
  783. .list-icons li {
  784. margin-bottom: 30px; }
  785. .list-icons li a > .icon-wrap {
  786. display: inline-block;
  787. width: 60px;
  788. height: 60px;
  789. -webkit-box-flex: 0;
  790. -ms-flex: 0 0 60px;
  791. flex: 0 0 60px;
  792. border-radius: 50%;
  793. background: #ffffff;
  794. position: relative;
  795. margin-right: 20px;
  796. -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  797. box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05); }
  798. .list-icons li a > .icon-wrap > span {
  799. position: absolute;
  800. top: 50%;
  801. left: 50%;
  802. color: #009ECE;
  803. font-size: 30px;
  804. -webkit-transform: translate(-50%, -50%);
  805. -ms-transform: translate(-50%, -50%);
  806. transform: translate(-50%, -50%); }
  807. .list-icons li a > .text {
  808. color: #000000;
  809. font-size: 16px;
  810. line-height: 1.5; }
  811. .margin-left-offset {
  812. margin-left: -70px;
  813. position: relative; }
  814. @media (max-width: 991.98px) {
  815. .margin-left-offset {
  816. margin-left: 0px; } }
  817. .subtitle {
  818. font-weight: 700;
  819. color: #009ECE;
  820. display: block;
  821. font-size: 16px;
  822. font-weight: 400; }
  823. .untree_co-testimonial {
  824. padding: 30px 30px 30px 30px;
  825. background: #e9ecef;
  826. border-radius: 4px;
  827. color: #000000;
  828. position: relative; }
  829. .untree_co-testimonial blockquote {
  830. font-size: 16px;
  831. margin-bottom: 30px;
  832. font-style: italic; }
  833. .untree_co-testimonial .author .author-name strong {
  834. color: #009ECE; }
  835. .untree_co-testimonial .author .author-name span {
  836. color: #5b6d7f; }
  837. .untree_co-testimonial .author .author-picture {
  838. -webkit-box-flex: 0;
  839. -ms-flex: 0 0 50px;
  840. flex: 0 0 50px; }
  841. .untree_co-testimonial .author .author-picture > img {
  842. width: 50px;
  843. border-radius: 50%; }
  844. .owl-nav {
  845. display: none; }
  846. .owl-3-slider .owl-carousel .owl-stage-outer {
  847. padding-bottom: 40px; }
  848. .properties-nav-direction > a {
  849. display: inline-block;
  850. width: 40px;
  851. height: 40px;
  852. border-radius: 4px;
  853. background: #009ECE;
  854. color: #ffffff;
  855. position: relative; }
  856. .properties-nav-direction > a > span {
  857. position: absolute;
  858. top: 50%;
  859. left: 50%;
  860. -webkit-transform: translate(-50%, -50%);
  861. -ms-transform: translate(-50%, -50%);
  862. transform: translate(-50%, -50%);
  863. font-size: 20px; }
  864. .properties-nav-direction > a.next {
  865. position: relative;
  866. -webkit-transform: rotate(-180deg);
  867. -ms-transform: rotate(-180deg);
  868. transform: rotate(-180deg); }
  869. .properties-nav-direction > a:hover {
  870. background: #009ECE; }
  871. .feature-v2 {
  872. padding: 40px;
  873. border: 1px solid #e9ecef; }
  874. .feature-v2:hover {
  875. border: 1px solid transparent;
  876. -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  877. box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05); }
  878. .feature-v2 .icon-wrap {
  879. width: 50px;
  880. height: 50px;
  881. position: relative;
  882. background: #009ECE;
  883. border-radius: 4px;
  884. -webkit-box-flex: 0;
  885. -ms-flex: 0 0 50px;
  886. flex: 0 0 50px;
  887. margin-right: 40px; }
  888. .feature-v2 .icon-wrap > span {
  889. color: #ffffff;
  890. position: absolute;
  891. top: 50%;
  892. left: 50%;
  893. -webkit-transform: translate(-50%, -50%);
  894. -ms-transform: translate(-50%, -50%);
  895. transform: translate(-50%, -50%);
  896. font-size: 20px; }
  897. .feature-v2 .heading {
  898. font-size: 18px;
  899. color: #000000; }
  900. .feature-v2 p {
  901. color: #999; }
  902. .untree_co-pagination {
  903. text-align: center; }
  904. .untree_co-pagination li {
  905. display: inline-block; }
  906. .untree_co-pagination li a, .untree_co-pagination li span {
  907. width: 40px;
  908. height: 40px;
  909. line-height: 40px;
  910. display: inline-block;
  911. border-radius: 4px;
  912. font-size: 18px; }
  913. .untree_co-pagination li span {
  914. background: #009ECE;
  915. color: #ffffff;
  916. -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  917. box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2); }
  918. .team img {
  919. margin-bottom: 10px; }
  920. .team h3 {
  921. font-size: 16px !important;
  922. margin-bottom: 0; }
  923. .team p {
  924. font-size: 14px; }
  925. .custom-block {
  926. margin-bottom: 30px; }
  927. .custom-block .section-title {
  928. font-size: 18px;
  929. font-weight: 700; }
  930. .custom-accordion .accordion-item {
  931. background-color: #f9f9f9;
  932. margin-bottom: 0px;
  933. position: relative;
  934. border-radius: 0px;
  935. overflow: hidden; }
  936. .custom-accordion .accordion-item .btn-link {
  937. display: block;
  938. width: 100%;
  939. padding: 15px 0;
  940. text-decoration: none;
  941. text-align: left;
  942. color: #999;
  943. border: none;
  944. padding-left: 40px;
  945. border-radius: 0;
  946. position: relative;
  947. background: #ffffff; }
  948. .custom-accordion .accordion-item .btn-link:before {
  949. font-family: 'icomoon';
  950. content: "\f067";
  951. position: absolute;
  952. top: 50%;
  953. -webkit-transform: translateY(-50%);
  954. -ms-transform: translateY(-50%);
  955. transform: translateY(-50%);
  956. left: 15px; }
  957. .custom-accordion .accordion-item .btn-link[aria-expanded="true"] {
  958. font-weight: 700;
  959. color: #009ECE; }
  960. .custom-accordion .accordion-item .btn-link[aria-expanded="true"]:before {
  961. font-family: 'icomoon';
  962. content: "\f068";
  963. position: absolute;
  964. color: #009ECE;
  965. top: 50%;
  966. -webkit-transform: translateY(-50%);
  967. -ms-transform: translateY(-50%);
  968. transform: translateY(-50%);
  969. left: 15px; }
  970. .custom-accordion .accordion-item.active {
  971. z-index: 2; }
  972. .custom-accordion .accordion-item.active .btn-link {
  973. color: #009ECE;
  974. -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
  975. box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1); }
  976. .custom-accordion .accordion-item .accordion-body {
  977. padding: 20px 20px 20px 20px;
  978. color: #888; }
  979. .control {
  980. display: block;
  981. position: relative;
  982. padding-left: 30px;
  983. margin-bottom: 15px;
  984. cursor: pointer;
  985. font-size: 18px; }
  986. .control .caption {
  987. position: relative;
  988. top: -3px;
  989. font-size: 16px; }
  990. .control input {
  991. position: absolute;
  992. z-index: -1;
  993. opacity: 0; }
  994. .control__indicator {
  995. position: absolute;
  996. top: 2px;
  997. left: 0;
  998. height: 20px;
  999. width: 20px;
  1000. background: #e6e6e6;
  1001. border-radius: 4px; }
  1002. .control--radio .control__indicator {
  1003. border-radius: 50%; }
  1004. .control:hover input ~ .control__indicator,
  1005. .control input:focus ~ .control__indicator {
  1006. background: #ccc; }
  1007. .control input:checked ~ .control__indicator {
  1008. background: #009ECE; }
  1009. .control:hover input:not([disabled]):checked ~ .control__indicator,
  1010. .control input:checked:focus ~ .control__indicator {
  1011. background: #00b2e8; }
  1012. .control input:disabled ~ .control__indicator {
  1013. background: #e6e6e6;
  1014. opacity: 0.9;
  1015. pointer-events: none; }
  1016. .control__indicator:after {
  1017. font-family: 'icomoon';
  1018. content: '\e5ca';
  1019. position: absolute;
  1020. display: none;
  1021. font-size: 14px;
  1022. -webkit-transition: .3s all ease;
  1023. -o-transition: .3s all ease;
  1024. transition: .3s all ease; }
  1025. .control input:checked ~ .control__indicator:after {
  1026. display: block;
  1027. color: #fff; }
  1028. .control--checkbox .control__indicator:after {
  1029. top: 50%;
  1030. left: 50%;
  1031. -webkit-transform: translate(-50%, -50%);
  1032. -ms-transform: translate(-50%, -50%);
  1033. transform: translate(-50%, -50%); }
  1034. .control--checkbox input:disabled ~ .control__indicator:after {
  1035. border-color: #7b7b7b; }
  1036. .control--checkbox input:disabled:checked ~ .control__indicator {
  1037. background-color: #009ECE;
  1038. opacity: .2; }
  1039. .gal-item {
  1040. display: block;
  1041. margin-bottom: 8px; }
  1042. .gal-item img {
  1043. border-radius: 4px;
  1044. -webkit-transition: .3s all ease;
  1045. -o-transition: .3s all ease;
  1046. transition: .3s all ease;
  1047. opacity: 1; }
  1048. .gal-item:hover img {
  1049. opacity: .5; }
  1050. .social-icons li {
  1051. display: inline-block; }
  1052. .social-icons li a {
  1053. color: rgba(255, 255, 255, 0.5);
  1054. display: inline-block;
  1055. width: 40px;
  1056. height: 40px;
  1057. position: relative;
  1058. border-radius: 50%;
  1059. background: #303030; }
  1060. .social-icons li a span {
  1061. position: absolute;
  1062. top: 50%;
  1063. left: 50%;
  1064. -webkit-transform: translate(-50%, -50%);
  1065. -ms-transform: translate(-50%, -50%);
  1066. transform: translate(-50%, -50%); }
  1067. .social-icons li a:hover {
  1068. color: #ffffff; }
  1069. .social-icons li:first-child a {
  1070. padding-left: 0; }
  1071. .social-icons.light li a {
  1072. color: #000000;
  1073. display: inline-block;
  1074. width: 40px;
  1075. height: 40px;
  1076. position: relative;
  1077. border-radius: 50%;
  1078. background: #f8f9fa; }
  1079. .video-wrap {
  1080. position: relative;
  1081. display: block; }
  1082. .video-wrap .play-wrap {
  1083. position: absolute;
  1084. top: 50%;
  1085. left: 50%;
  1086. -webkit-transform: translate(-50%, -50%);
  1087. -ms-transform: translate(-50%, -50%);
  1088. transform: translate(-50%, -50%);
  1089. width: 50px;
  1090. height: 50px;
  1091. background: rgba(0, 0, 0, 0.2);
  1092. border-radius: 50%;
  1093. -webkit-transition: .3s all ease;
  1094. -o-transition: .3s all ease;
  1095. transition: .3s all ease; }
  1096. .video-wrap .play-wrap > span {
  1097. position: absolute;
  1098. top: 50%;
  1099. left: 50%;
  1100. color: #ffffff;
  1101. -webkit-transform: translate(-50%, -50%);
  1102. -ms-transform: translate(-50%, -50%);
  1103. transform: translate(-50%, -50%); }
  1104. .video-wrap:hover .play-wrap {
  1105. width: 60px;
  1106. height: 60px; }
  1107. .owl-single.dots-absolute .owl-dots, .owl-carousel.dots-absolute .owl-dots {
  1108. bottom: 40px; }
  1109. .owl-single.dots-absolute .owl-dots .owl-dot span, .owl-carousel.dots-absolute .owl-dots .owl-dot span {
  1110. background: rgba(255, 255, 255, 0.5); }
  1111. .owl-single .owl-dots, .owl-carousel .owl-dots {
  1112. text-align: center;
  1113. position: absolute;
  1114. width: 100%;
  1115. left: 50%;
  1116. -webkit-transform: translateX(-50%);
  1117. -ms-transform: translateX(-50%);
  1118. transform: translateX(-50%); }
  1119. .owl-single .owl-dots .owl-dot, .owl-carousel .owl-dots .owl-dot {
  1120. display: inline-block;
  1121. margin: 5px; }
  1122. .owl-single .owl-dots .owl-dot span, .owl-carousel .owl-dots .owl-dot span {
  1123. display: inline-block;
  1124. width: 8px;
  1125. height: 8px;
  1126. border-radius: 50%;
  1127. background: rgba(0, 0, 0, 0.2); }
  1128. .owl-single .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot.active span {
  1129. background: #009ECE; }
  1130. .owl-single.no-dots .owl-dots, .owl-carousel.no-dots .owl-dots {
  1131. display: none; }
  1132. .owl-single.no-nav .owl-nav, .owl-carousel.no-nav .owl-nav {
  1133. display: none; }
  1134. .testimonial {
  1135. max-width: 500px;
  1136. text-align: center;
  1137. margin-bottom: 30px; }
  1138. .testimonial .name {
  1139. font-size: 18px;
  1140. color: #000000; }
  1141. .testimonial .img-wrap img {
  1142. margin: 0 auto;
  1143. width: 70px;
  1144. border-radius: 50%; }
  1145. .list-check li {
  1146. display: block;
  1147. padding-left: 30px;
  1148. position: relative; }
  1149. .list-check li:before {
  1150. content: "\e5ca";
  1151. font-family: 'icomoon';
  1152. position: absolute;
  1153. top: -.3rem;
  1154. font-size: 20px;
  1155. left: 0; }
  1156. .owl-single .owl-nav {
  1157. position: absolute;
  1158. top: 50%;
  1159. width: 100%;
  1160. -webkit-transform: translateY(-50%);
  1161. -ms-transform: translateY(-50%);
  1162. transform: translateY(-50%); }
  1163. @media (max-width: 767.98px) {
  1164. .owl-single .owl-nav {
  1165. display: none; } }
  1166. .owl-single .owl-nav .owl-prev, .owl-single .owl-nav .owl-next {
  1167. position: absolute;
  1168. top: 0; }
  1169. .owl-single .owl-nav .owl-prev span, .owl-single .owl-nav .owl-next span {
  1170. display: block;
  1171. background: #ffffff;
  1172. padding: 15px; }
  1173. .owl-single .owl-nav .owl-prev {
  1174. left: -30px; }
  1175. .owl-single .owl-nav .owl-next {
  1176. right: -30px; }
  1177. .owl-single .owl-nav .owl-next > span {
  1178. position: relative;
  1179. -webkit-transform: rotate(-180deg);
  1180. -ms-transform: rotate(-180deg);
  1181. transform: rotate(-180deg); }
  1182. .team h3 {
  1183. font-size: 20px; }
  1184. .site-footer {
  1185. font-size: 14px;
  1186. color: #888; }
  1187. .site-footer .inner {
  1188. padding-top: 0px;
  1189. padding-bottom: 70px;
  1190. background: #f8f9fa; }
  1191. .site-footer .inner.first {
  1192. padding-top: 80px; }
  1193. @media (max-width: 991.98px) {
  1194. .site-footer {
  1195. padding-top: 30px; } }
  1196. .site-footer a {
  1197. color: #999; }
  1198. .site-footer a:hover {
  1199. color: #000000; }
  1200. .site-footer .widget {
  1201. margin-bottom: 30px; }
  1202. .site-footer .widget h3 {
  1203. font-size: 14px;
  1204. font-weight: 700;
  1205. margin-bottom: 20px;
  1206. color: #000000;
  1207. font-family: "Lato", sans-serif; }
  1208. .site-footer .widget .social li {
  1209. display: inline-block; }
  1210. .site-footer .widget .social li a {
  1211. width: 30px;
  1212. height: 30px;
  1213. border-radius: 50%;
  1214. background: #009ECE;
  1215. display: inline-block;
  1216. position: relative;
  1217. color: #ffffff;
  1218. -webkit-box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2);
  1219. box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2); }
  1220. .site-footer .widget .social li a span {
  1221. font-size: 16px;
  1222. position: absolute;
  1223. top: 50%;
  1224. left: 50%;
  1225. -webkit-transform: translate(-50%, -50%);
  1226. -ms-transform: translate(-50%, -50%);
  1227. transform: translate(-50%, -50%); }
  1228. .site-footer .widget .social li a:hover {
  1229. background-color: #009ECE;
  1230. color: #ffffff; }
  1231. .site-footer .widget .links li {
  1232. display: block;
  1233. margin-bottom: 10px; }
  1234. .site-footer .widget .links li a {
  1235. color: #999; }
  1236. .site-footer .widget .links li a:hover {
  1237. color: #000000; }
  1238. .site-footer ul.quick-info li {
  1239. position: relative;
  1240. padding-left: 30px; }
  1241. .site-footer ul.quick-info li:before {
  1242. left: 0;
  1243. position: absolute;
  1244. content: "";
  1245. font-family: 'icomoon'; }
  1246. .site-footer ul.quick-info li.email:before {
  1247. content: "\f0e0"; }
  1248. .site-footer ul.quick-info li.phone:before {
  1249. content: "\f095"; }
  1250. .site-footer ul.quick-info li.address:before {
  1251. content: "\e8b4"; }