style.css 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335
  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. color: white;
  644. display: block;
  645. margin-bottom: 10px; }
  646. @media (max-width: 991.98px) {
  647. .untree_co_slider-wrap .property-contents .old-price {
  648. color: #ffffff; } }
  649. .untree_co_slider-wrap .property-contents h2 {
  650. font-size: 15px;
  651. font-weight: 400;
  652. margin: 0; }
  653. .untree_co_slider-wrap .property-contents h2 a {
  654. color: #ffffff; }
  655. @media (max-width: 991.98px) {
  656. .untree_co_slider-wrap .property-contents h2 a {
  657. color: #ffffff; } }
  658. .untree_co_slider-wrap .property-contents strong {
  659. color: #000000; }
  660. @media (max-width: 991.98px) {
  661. .untree_co_slider-wrap .property-contents strong {
  662. color: #ffffff !important; } }
  663. .untree_co_slider-wrap .specs li {
  664. padding-right: 20px; }
  665. .untree_co_slider-wrap .specs .icon-wrap {
  666. font-size: 25px;
  667. margin-right: 10px; }
  668. .untree_co_slider-wrap .property_details {
  669. position: absolute;
  670. bottom: 0;
  671. z-index: 9;
  672. left: 0;
  673. right: 0;
  674. color: #ffffff;
  675. padding: 30px 30px 15px 30px; }
  676. .untree_co_slider-wrap .property_details div .caption {
  677. color: #ffffff;
  678. font-size: 12px; }
  679. .untree_co_slider-wrap .property_details div .number {
  680. font-size: 18px; }
  681. .untree_co_slider-wrap .property_details div .icon {
  682. font-size: 20px;
  683. margin-right: 10px; }
  684. .untree_co_slider-wrap .property_details div .icon span {
  685. font-size: 20px; }
  686. .untree_co_slider-wrap .property_details .detail {
  687. position: relative; }
  688. .untree_co_slider-wrap .property_details .detail:after {
  689. content: "";
  690. position: absolute;
  691. height: 20px;
  692. right: 20%;
  693. background: rgba(255, 255, 255, 0.5);
  694. width: 1px;
  695. top: 50%;
  696. -webkit-transform: translateY(-50%);
  697. -ms-transform: translateY(-50%);
  698. transform: translateY(-50%); }
  699. .untree_co_slider-wrap .property_details .detail:last-child:after {
  700. display: none; }
  701. .untree_co-section {
  702. padding: 70px 0; }
  703. .untree_co-section .heading {
  704. font-size: 20px; }
  705. .untree_co-section .heading-2 {
  706. font-size: 30px;
  707. color: #009ECE; }
  708. @media (max-width: 991.98px) {
  709. .untree_co-section .heading-2 {
  710. font-size: 30px; } }
  711. .service {
  712. text-align: center; }
  713. .service .icon-wrap {
  714. position: relative;
  715. margin-bottom: 20px;
  716. display: inline-block; }
  717. .service .icon-wrap span {
  718. font-size: 50px;
  719. color: #009ECE; }
  720. .service .icon-wrap:before {
  721. top: 0;
  722. left: -10px;
  723. width: 55px;
  724. height: 55px;
  725. position: absolute;
  726. content: "";
  727. background: rgba(0, 158, 206, 0.1);
  728. border-radius: 50%; }
  729. .service h3 {
  730. font-size: 16px; }
  731. .service h3 a {
  732. color: #000000; }
  733. .property-entry {
  734. margin-bottom: 30px; }
  735. .property-entry .price {
  736. font-size: 30px;
  737. display: block;
  738. color: #009ECE;
  739. margin-bottom: 15px; }
  740. .property-entry .specs {
  741. padding: 0;
  742. margin: 0 0 15px 0; }
  743. .property-entry .specs li {
  744. display: inline-block;
  745. margin-right: 10px; }
  746. .property-entry .specs li .icon-wrap {
  747. font-size: 26px;
  748. margin-right: 5px; }
  749. .property-entry .property-specs {
  750. position: relative;
  751. background: #ffffff;
  752. padding: 30px;
  753. width: calc(100% - 0px);
  754. margin-left: 0px;
  755. margin-right: 0px;
  756. margin-top: -15px; }
  757. .property-entry .property-specs strong {
  758. color: #000000; }
  759. .property-entry .location h3 {
  760. font-size: 15px; }
  761. .property-entry .location h3 a {
  762. color: #000000; }
  763. .property-entry .more {
  764. position: relative; }
  765. .property-entry .more > a {
  766. position: relative;
  767. display: inline-block;
  768. width: 45px;
  769. height: 40px;
  770. background: #009ECE;
  771. border-radius: 4px; }
  772. .property-entry .more > a span {
  773. color: #ffffff;
  774. font-size: 20px;
  775. display: inline-block;
  776. -webkit-transform: translate(-50%, -50%) rotate(180deg);
  777. -ms-transform: translate(-50%, -50%) rotate(180deg);
  778. transform: translate(-50%, -50%) rotate(180deg);
  779. position: absolute;
  780. top: 50%;
  781. left: 50%; }
  782. .list-icons li {
  783. margin-bottom: 30px; }
  784. .list-icons li a > .icon-wrap {
  785. display: inline-block;
  786. width: 60px;
  787. height: 60px;
  788. -webkit-box-flex: 0;
  789. -ms-flex: 0 0 60px;
  790. flex: 0 0 60px;
  791. border-radius: 50%;
  792. background: #ffffff;
  793. position: relative;
  794. margin-right: 20px;
  795. -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  796. box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05); }
  797. .list-icons li a > .icon-wrap > span {
  798. position: absolute;
  799. top: 50%;
  800. left: 50%;
  801. color: #009ECE;
  802. font-size: 30px;
  803. -webkit-transform: translate(-50%, -50%);
  804. -ms-transform: translate(-50%, -50%);
  805. transform: translate(-50%, -50%); }
  806. .list-icons li a > .text {
  807. color: #000000;
  808. font-size: 16px;
  809. line-height: 1.5; }
  810. .margin-left-offset {
  811. margin-left: -70px;
  812. position: relative; }
  813. @media (max-width: 991.98px) {
  814. .margin-left-offset {
  815. margin-left: 0px; } }
  816. .subtitle {
  817. font-weight: 700;
  818. color: #009ECE;
  819. display: block;
  820. font-size: 16px;
  821. font-weight: 400; }
  822. .untree_co-testimonial {
  823. padding: 30px 30px 30px 30px;
  824. background: #e9ecef;
  825. border-radius: 4px;
  826. color: #000000;
  827. position: relative; }
  828. .untree_co-testimonial blockquote {
  829. font-size: 16px;
  830. margin-bottom: 30px;
  831. font-style: italic; }
  832. .untree_co-testimonial .author .author-name strong {
  833. color: #009ECE; }
  834. .untree_co-testimonial .author .author-name span {
  835. color: #5b6d7f; }
  836. .untree_co-testimonial .author .author-picture {
  837. -webkit-box-flex: 0;
  838. -ms-flex: 0 0 50px;
  839. flex: 0 0 50px; }
  840. .untree_co-testimonial .author .author-picture > img {
  841. width: 50px;
  842. border-radius: 50%; }
  843. .owl-nav {
  844. display: none; }
  845. .owl-3-slider .owl-carousel .owl-stage-outer {
  846. padding-bottom: 40px; }
  847. .properties-nav-direction > a {
  848. display: inline-block;
  849. width: 40px;
  850. height: 40px;
  851. border-radius: 4px;
  852. background: #009ECE;
  853. color: #ffffff;
  854. position: relative; }
  855. .properties-nav-direction > a > span {
  856. position: absolute;
  857. top: 50%;
  858. left: 50%;
  859. -webkit-transform: translate(-50%, -50%);
  860. -ms-transform: translate(-50%, -50%);
  861. transform: translate(-50%, -50%);
  862. font-size: 20px; }
  863. .properties-nav-direction > a.next {
  864. position: relative;
  865. -webkit-transform: rotate(-180deg);
  866. -ms-transform: rotate(-180deg);
  867. transform: rotate(-180deg); }
  868. .properties-nav-direction > a:hover {
  869. background: #009ECE; }
  870. .feature-v2 {
  871. padding: 40px;
  872. border: 1px solid #e9ecef; }
  873. .feature-v2:hover {
  874. border: 1px solid transparent;
  875. -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  876. box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05); }
  877. .feature-v2 .icon-wrap {
  878. width: 50px;
  879. height: 50px;
  880. position: relative;
  881. background: #009ECE;
  882. border-radius: 4px;
  883. -webkit-box-flex: 0;
  884. -ms-flex: 0 0 50px;
  885. flex: 0 0 50px;
  886. margin-right: 40px; }
  887. .feature-v2 .icon-wrap > span {
  888. color: #ffffff;
  889. position: absolute;
  890. top: 50%;
  891. left: 50%;
  892. -webkit-transform: translate(-50%, -50%);
  893. -ms-transform: translate(-50%, -50%);
  894. transform: translate(-50%, -50%);
  895. font-size: 20px; }
  896. .feature-v2 .heading {
  897. font-size: 18px;
  898. color: #000000; }
  899. .feature-v2 p {
  900. color: #999; }
  901. .untree_co-pagination {
  902. text-align: center; }
  903. .untree_co-pagination li {
  904. display: inline-block; }
  905. .untree_co-pagination li a, .untree_co-pagination li span {
  906. width: 40px;
  907. height: 40px;
  908. line-height: 40px;
  909. display: inline-block;
  910. border-radius: 4px;
  911. font-size: 18px; }
  912. .untree_co-pagination li span {
  913. background: #009ECE;
  914. color: #ffffff;
  915. -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  916. box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2); }
  917. .team img {
  918. margin-bottom: 10px; }
  919. .team h3 {
  920. font-size: 16px !important;
  921. margin-bottom: 0; }
  922. .team p {
  923. font-size: 14px; }
  924. .custom-block {
  925. margin-bottom: 30px; }
  926. .custom-block .section-title {
  927. font-size: 18px;
  928. font-weight: 700; }
  929. .custom-accordion .accordion-item {
  930. background-color: #f9f9f9;
  931. margin-bottom: 0px;
  932. position: relative;
  933. border-radius: 0px;
  934. overflow: hidden; }
  935. .custom-accordion .accordion-item .btn-link {
  936. display: block;
  937. width: 100%;
  938. padding: 15px 0;
  939. text-decoration: none;
  940. text-align: left;
  941. color: #999;
  942. border: none;
  943. padding-left: 40px;
  944. border-radius: 0;
  945. position: relative;
  946. background: #ffffff; }
  947. .custom-accordion .accordion-item .btn-link:before {
  948. font-family: 'icomoon';
  949. content: "\f067";
  950. position: absolute;
  951. top: 50%;
  952. -webkit-transform: translateY(-50%);
  953. -ms-transform: translateY(-50%);
  954. transform: translateY(-50%);
  955. left: 15px; }
  956. .custom-accordion .accordion-item .btn-link[aria-expanded="true"] {
  957. font-weight: 700;
  958. color: #009ECE; }
  959. .custom-accordion .accordion-item .btn-link[aria-expanded="true"]:before {
  960. font-family: 'icomoon';
  961. content: "\f068";
  962. position: absolute;
  963. color: #009ECE;
  964. top: 50%;
  965. -webkit-transform: translateY(-50%);
  966. -ms-transform: translateY(-50%);
  967. transform: translateY(-50%);
  968. left: 15px; }
  969. .custom-accordion .accordion-item.active {
  970. z-index: 2; }
  971. .custom-accordion .accordion-item.active .btn-link {
  972. color: #009ECE;
  973. -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
  974. box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1); }
  975. .custom-accordion .accordion-item .accordion-body {
  976. padding: 20px 20px 20px 20px;
  977. color: #888; }
  978. .control {
  979. display: block;
  980. position: relative;
  981. padding-left: 30px;
  982. margin-bottom: 15px;
  983. cursor: pointer;
  984. font-size: 18px; }
  985. .control .caption {
  986. position: relative;
  987. top: -3px;
  988. font-size: 16px; }
  989. .control input {
  990. position: absolute;
  991. z-index: -1;
  992. opacity: 0; }
  993. .control__indicator {
  994. position: absolute;
  995. top: 2px;
  996. left: 0;
  997. height: 20px;
  998. width: 20px;
  999. background: #e6e6e6;
  1000. border-radius: 4px; }
  1001. .control--radio .control__indicator {
  1002. border-radius: 50%; }
  1003. .control:hover input ~ .control__indicator,
  1004. .control input:focus ~ .control__indicator {
  1005. background: #ccc; }
  1006. .control input:checked ~ .control__indicator {
  1007. background: #009ECE; }
  1008. .control:hover input:not([disabled]):checked ~ .control__indicator,
  1009. .control input:checked:focus ~ .control__indicator {
  1010. background: #00b2e8; }
  1011. .control input:disabled ~ .control__indicator {
  1012. background: #e6e6e6;
  1013. opacity: 0.9;
  1014. pointer-events: none; }
  1015. .control__indicator:after {
  1016. font-family: 'icomoon';
  1017. content: '\e5ca';
  1018. position: absolute;
  1019. display: none;
  1020. font-size: 14px;
  1021. -webkit-transition: .3s all ease;
  1022. -o-transition: .3s all ease;
  1023. transition: .3s all ease; }
  1024. .control input:checked ~ .control__indicator:after {
  1025. display: block;
  1026. color: #fff; }
  1027. .control--checkbox .control__indicator:after {
  1028. top: 50%;
  1029. left: 50%;
  1030. -webkit-transform: translate(-50%, -50%);
  1031. -ms-transform: translate(-50%, -50%);
  1032. transform: translate(-50%, -50%); }
  1033. .control--checkbox input:disabled ~ .control__indicator:after {
  1034. border-color: #7b7b7b; }
  1035. .control--checkbox input:disabled:checked ~ .control__indicator {
  1036. background-color: #009ECE;
  1037. opacity: .2; }
  1038. .gal-item {
  1039. display: block;
  1040. margin-bottom: 8px; }
  1041. .gal-item img {
  1042. border-radius: 4px;
  1043. -webkit-transition: .3s all ease;
  1044. -o-transition: .3s all ease;
  1045. transition: .3s all ease;
  1046. opacity: 1; }
  1047. .gal-item:hover img {
  1048. opacity: .5; }
  1049. .social-icons li {
  1050. display: inline-block; }
  1051. .social-icons li a {
  1052. color: rgba(255, 255, 255, 0.5);
  1053. display: inline-block;
  1054. width: 40px;
  1055. height: 40px;
  1056. position: relative;
  1057. border-radius: 50%;
  1058. background: #303030; }
  1059. .social-icons li a span {
  1060. position: absolute;
  1061. top: 50%;
  1062. left: 50%;
  1063. -webkit-transform: translate(-50%, -50%);
  1064. -ms-transform: translate(-50%, -50%);
  1065. transform: translate(-50%, -50%); }
  1066. .social-icons li a:hover {
  1067. color: #ffffff; }
  1068. .social-icons li:first-child a {
  1069. padding-left: 0; }
  1070. .social-icons.light li a {
  1071. color: #000000;
  1072. display: inline-block;
  1073. width: 40px;
  1074. height: 40px;
  1075. position: relative;
  1076. border-radius: 50%;
  1077. background: #f8f9fa; }
  1078. .video-wrap {
  1079. position: relative;
  1080. display: block; }
  1081. .video-wrap .play-wrap {
  1082. position: absolute;
  1083. top: 50%;
  1084. left: 50%;
  1085. -webkit-transform: translate(-50%, -50%);
  1086. -ms-transform: translate(-50%, -50%);
  1087. transform: translate(-50%, -50%);
  1088. width: 50px;
  1089. height: 50px;
  1090. background: rgba(0, 0, 0, 0.2);
  1091. border-radius: 50%;
  1092. -webkit-transition: .3s all ease;
  1093. -o-transition: .3s all ease;
  1094. transition: .3s all ease; }
  1095. .video-wrap .play-wrap > span {
  1096. position: absolute;
  1097. top: 50%;
  1098. left: 50%;
  1099. color: #ffffff;
  1100. -webkit-transform: translate(-50%, -50%);
  1101. -ms-transform: translate(-50%, -50%);
  1102. transform: translate(-50%, -50%); }
  1103. .video-wrap:hover .play-wrap {
  1104. width: 60px;
  1105. height: 60px; }
  1106. .owl-single.dots-absolute .owl-dots, .owl-carousel.dots-absolute .owl-dots {
  1107. bottom: 40px; }
  1108. .owl-single.dots-absolute .owl-dots .owl-dot span, .owl-carousel.dots-absolute .owl-dots .owl-dot span {
  1109. background: rgba(255, 255, 255, 0.5); }
  1110. .owl-single .owl-dots, .owl-carousel .owl-dots {
  1111. text-align: center;
  1112. position: absolute;
  1113. width: 100%;
  1114. left: 50%;
  1115. -webkit-transform: translateX(-50%);
  1116. -ms-transform: translateX(-50%);
  1117. transform: translateX(-50%); }
  1118. .owl-single .owl-dots .owl-dot, .owl-carousel .owl-dots .owl-dot {
  1119. display: inline-block;
  1120. margin: 5px; }
  1121. .owl-single .owl-dots .owl-dot span, .owl-carousel .owl-dots .owl-dot span {
  1122. display: inline-block;
  1123. width: 8px;
  1124. height: 8px;
  1125. border-radius: 50%;
  1126. background: rgba(0, 0, 0, 0.2); }
  1127. .owl-single .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot.active span {
  1128. background: #009ECE; }
  1129. .owl-single.no-dots .owl-dots, .owl-carousel.no-dots .owl-dots {
  1130. display: none; }
  1131. .owl-single.no-nav .owl-nav, .owl-carousel.no-nav .owl-nav {
  1132. display: none; }
  1133. .testimonial {
  1134. max-width: 500px;
  1135. text-align: center;
  1136. margin-bottom: 30px; }
  1137. .testimonial .name {
  1138. font-size: 18px;
  1139. color: #000000; }
  1140. .testimonial .img-wrap img {
  1141. margin: 0 auto;
  1142. width: 70px;
  1143. border-radius: 50%; }
  1144. .list-check li {
  1145. display: block;
  1146. padding-left: 30px;
  1147. position: relative; }
  1148. .list-check li:before {
  1149. content: "\e5ca";
  1150. font-family: 'icomoon';
  1151. position: absolute;
  1152. top: -.3rem;
  1153. font-size: 20px;
  1154. left: 0; }
  1155. .owl-single .owl-nav {
  1156. position: absolute;
  1157. top: 50%;
  1158. width: 100%;
  1159. -webkit-transform: translateY(-50%);
  1160. -ms-transform: translateY(-50%);
  1161. transform: translateY(-50%); }
  1162. @media (max-width: 767.98px) {
  1163. .owl-single .owl-nav {
  1164. display: none; } }
  1165. .owl-single .owl-nav .owl-prev, .owl-single .owl-nav .owl-next {
  1166. position: absolute;
  1167. top: 0; }
  1168. .owl-single .owl-nav .owl-prev span, .owl-single .owl-nav .owl-next span {
  1169. display: block;
  1170. background: #ffffff;
  1171. padding: 15px; }
  1172. .owl-single .owl-nav .owl-prev {
  1173. left: -30px; }
  1174. .owl-single .owl-nav .owl-next {
  1175. right: -30px; }
  1176. .owl-single .owl-nav .owl-next > span {
  1177. position: relative;
  1178. -webkit-transform: rotate(-180deg);
  1179. -ms-transform: rotate(-180deg);
  1180. transform: rotate(-180deg); }
  1181. .team h3 {
  1182. font-size: 20px; }
  1183. .site-footer {
  1184. font-size: 14px;
  1185. color: #888; }
  1186. .site-footer .inner {
  1187. padding-top: 0px;
  1188. padding-bottom: 70px;
  1189. background: #f8f9fa; }
  1190. .site-footer .inner.first {
  1191. padding-top: 80px; }
  1192. @media (max-width: 991.98px) {
  1193. .site-footer {
  1194. padding-top: 30px; } }
  1195. .site-footer a {
  1196. color: #999; }
  1197. .site-footer a:hover {
  1198. color: #000000; }
  1199. .site-footer .widget {
  1200. margin-bottom: 30px; }
  1201. .site-footer .widget h3 {
  1202. font-size: 14px;
  1203. font-weight: 700;
  1204. margin-bottom: 20px;
  1205. color: #000000;
  1206. font-family: "Lato", sans-serif; }
  1207. .site-footer .widget .social li {
  1208. display: inline-block; }
  1209. .site-footer .widget .social li a {
  1210. width: 30px;
  1211. height: 30px;
  1212. border-radius: 50%;
  1213. background: #009ECE;
  1214. display: inline-block;
  1215. position: relative;
  1216. color: #ffffff;
  1217. -webkit-box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2);
  1218. box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2); }
  1219. .site-footer .widget .social li a span {
  1220. font-size: 16px;
  1221. position: absolute;
  1222. top: 50%;
  1223. left: 50%;
  1224. -webkit-transform: translate(-50%, -50%);
  1225. -ms-transform: translate(-50%, -50%);
  1226. transform: translate(-50%, -50%); }
  1227. .site-footer .widget .social li a:hover {
  1228. background-color: #009ECE;
  1229. color: #ffffff; }
  1230. .site-footer .widget .links li {
  1231. display: block;
  1232. margin-bottom: 10px; }
  1233. .site-footer .widget .links li a {
  1234. color: #999; }
  1235. .site-footer .widget .links li a:hover {
  1236. color: #000000; }
  1237. .site-footer ul.quick-info li {
  1238. position: relative;
  1239. padding-left: 30px; }
  1240. .site-footer ul.quick-info li:before {
  1241. left: 0;
  1242. position: absolute;
  1243. content: "";
  1244. font-family: 'icomoon'; }
  1245. .site-footer ul.quick-info li.email:before {
  1246. content: "\f0e0"; }
  1247. .site-footer ul.quick-info li.phone:before {
  1248. content: "\f095"; }
  1249. .site-footer ul.quick-info li.address:before {
  1250. content: "\e8b4"; }