_components.scss 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  1. // Service Box
  2. #services {
  3. padding: 30px 0;
  4. }
  5. .service-box {
  6. margin-top: 15px;
  7. margin-bottom: 15px;
  8. .service-icon {
  9. float: left;
  10. margin-top: 5px;
  11. i{
  12. font-size: 32px;
  13. color: $preset;
  14. }
  15. }
  16. .service-content {
  17. padding-left: 48px;
  18. h4{
  19. font-size: 18px;
  20. margin-bottom: 10px;
  21. font-weight: 700;
  22. transition: all 0.4s ease-in-out;
  23. -moz-transition: all 0.4s ease-in-out;
  24. -webkit-transition: all 0.4s ease-in-out;
  25. -o-transition: all 0.4s ease-in-out;
  26. a{
  27. color: $title-color;
  28. }
  29. a:hover{
  30. color: $preset;
  31. }
  32. }
  33. }
  34. }
  35. .service-center{
  36. .service-icon{
  37. float: none;
  38. width: 60px;
  39. height: 60px;
  40. margin: 0px auto 20px;
  41. background: #ddd;
  42. line-height: 70px;
  43. border-radius: 4px;
  44. text-align: center;
  45. }
  46. .service-content {
  47. padding-left: 0;
  48. }
  49. }
  50. .sub-title{
  51. margin-bottom: 40px;
  52. }
  53. .sub-title {
  54. color: $sub-title-color;
  55. font-size: 24px;
  56. font-weight: 400;
  57. }
  58. .image-service-box h4{
  59. font-weight: $bold;
  60. font-size: 16px;
  61. a{
  62. color: $title-color;
  63. }
  64. a:hover{
  65. color: $preset;
  66. }
  67. }
  68. .image-service-box .service-text{
  69. background: #f5f5f5;
  70. padding: 15px;
  71. border: 1px solid #e3e3e3;
  72. }
  73. /* Team Item */
  74. .team-item figure {
  75. position: relative;
  76. overflow: hidden;
  77. width: 100%;
  78. margin: 0;
  79. }
  80. .team-item figure img {
  81. width: 100%;
  82. height: auto;
  83. }
  84. .team-item figure figcaption {
  85. height: 100%;
  86. position: absolute;
  87. top: 0;
  88. background: rgba(0, 0, 0, 0.85);
  89. opacity: 0;
  90. width: 100%;
  91. transition: all 0.3s ease-in-out 0s;
  92. -moz-transition: all 0.3s ease-in-out 0s;
  93. -webkit-transition: all 0.3s ease-in-out 0s;
  94. -o-transition: all 0.3s ease-in-out 0s;
  95. }
  96. .team-item figure figcaption .details {
  97. position: absolute;
  98. top: 30%;
  99. }
  100. .team-item figure figcaption .content-white {
  101. font-size: 13px;
  102. text-align: center;
  103. color: #FFF;
  104. margin: 0 auto;
  105. line-height: 18px;
  106. width: 65%;
  107. -webkit-transform: translateY(-50px);
  108. transform: translateY(-50px);
  109. -webkit-transition: all 0.5s ease;
  110. -moz-transition: all 0.5s ease;
  111. transition: all 0.5s ease;
  112. }
  113. .team-item figure figcaption .small-divider {
  114. margin: 12px auto 6px;
  115. width: 0px;
  116. background: #fff;
  117. height: 1px;
  118. -webkit-transition: all 0.5s ease;
  119. -moz-transition: all 0.5s ease;
  120. transition: all 0.5s ease;
  121. }
  122. .team-item figure:hover figcaption {
  123. opacity: 1;
  124. }
  125. .team-item figure:hover .small-divider{
  126. width: 62px;
  127. background: #fff;
  128. }
  129. .team-item figure:hover figcaption .content-white {
  130. -webkit-transform: translateY(0px);
  131. transform: translateY(0px);
  132. }
  133. .team-item figure:hover .social a {
  134. -webkit-transform: translateY(0px);
  135. transform: translateY(0px);
  136. }
  137. .team-item .social {
  138. text-align: center;
  139. margin-top: 15px;
  140. }
  141. .team-item .social .facebook,
  142. .team-item .social .twitter,
  143. .team-item .social .google-plus {
  144. font-size: 24px;
  145. line-height: normal;
  146. outline: none;
  147. border-radius: 50%;
  148. color: #fff;
  149. width: 42px;
  150. height: 42px;
  151. line-height: 42px;
  152. text-align: center;
  153. display: inline-block;
  154. -webkit-transform: translateY(50px);
  155. transform: translateY(50px);
  156. margin-right: 5px;
  157. }
  158. .team-item .social .facebook {
  159. -webkit-transition: all 400ms ease;
  160. transition: all 400ms ease;
  161. }
  162. .team-item .social .twitter {
  163. -webkit-transition: all 500ms ease;
  164. transition: all 500ms ease;
  165. }
  166. .team-item .social .google-plus {
  167. -webkit-transition: all 600ms ease;
  168. transition: all 600ms ease;
  169. }
  170. .team-item .social a:hover {
  171. background: transparent;
  172. }
  173. .social .fa-facebook:hover {
  174. color: #3b5998;
  175. }
  176. .social .fa-twitter:hover {
  177. color: #55acee;
  178. }
  179. .social .fa-instagram:hover {
  180. color: #fb3958;
  181. }
  182. .info {
  183. background: #F6F6F6;
  184. padding: 15px 0 10px;
  185. text-align: center;
  186. }
  187. .info h2 {
  188. color: #000;
  189. font-size: 18px;
  190. }
  191. .info p {
  192. color: #000;
  193. font-size: 12px;
  194. font-weight: 300;
  195. line-height: 22px;
  196. text-transform: uppercase;
  197. }
  198. .members{
  199. text-align: center;
  200. .memeber-img{
  201. margin-bottom: 30px;
  202. }
  203. .member-content{
  204. .member-name{
  205. font-size: 25px;
  206. line-height: 33px;
  207. margin: 0;
  208. }
  209. .member-position{
  210. font-size: 14px;
  211. margin-top: 10px;
  212. }
  213. }
  214. }
  215. /* team members tow */
  216. .team-members-tow{
  217. figure{
  218. position: relative;
  219. cursor: pointer;
  220. }
  221. figure:hover .image-overlay{
  222. opacity: 1;
  223. }
  224. figure:hover .info-text{
  225. -webkit-transform: translateY(0px);
  226. transform: translateY(0px);
  227. }
  228. figure:hover .social-icons{
  229. -webkit-transform: translateY(0px);
  230. transform: translateY(0px);
  231. }
  232. .image-overlay{
  233. height: 100%;
  234. position: absolute;
  235. top: 0;
  236. background: rgba(0, 0, 0, 0.85);
  237. opacity: 0;
  238. width: 100%;
  239. transition: all 0.3s ease-in-out 0s;
  240. -moz-transition: all 0.3s ease-in-out 0s;
  241. -webkit-transition: all 0.3s ease-in-out 0s;
  242. -o-transition: all 0.3s ease-in-out 0s;
  243. }
  244. .overlay-text{
  245. color: #ffffff;
  246. padding-top: 30%;
  247. .info-text{
  248. -webkit-transform: translateY(50px);
  249. transform: translateY(50px);
  250. transition: all 0.3s ease-in-out 0s;
  251. -moz-transition: all 0.3s ease-in-out 0s;
  252. -webkit-transition: all 0.3s ease-in-out 0s;
  253. -o-transition: all 0.3s ease-in-out 0s;
  254. strong{
  255. display: block;
  256. font-size: 22px;
  257. font-weight: 700;
  258. margin-bottom: 5px;
  259. }
  260. span{
  261. font-size: 14px;
  262. font-weight: 400;
  263. font-style: italic;
  264. }
  265. }
  266. .small-divider{
  267. margin-bottom: 30px;
  268. border-color: #fff;
  269. margin-top: 30px;
  270. width: 50px;
  271. }
  272. }
  273. .social-icons{
  274. padding-left: 0;
  275. -webkit-transform: translateY(-50px);
  276. transform: translateY(-50px);
  277. transition: all 0.3s ease-in-out 0s;
  278. -moz-transition: all 0.3s ease-in-out 0s;
  279. -webkit-transition: all 0.3s ease-in-out 0s;
  280. -o-transition: all 0.3s ease-in-out 0s;
  281. li{
  282. display: inline-block;
  283. margin: 0 10px;
  284. a{
  285. i{
  286. font-size: 24px;
  287. color: #fff;
  288. }
  289. }
  290. }
  291. }
  292. .social-icons .fa-facebook:hover {
  293. color: #3b5998;
  294. }
  295. .social-icons .fa-twitter:hover {
  296. color: #55acee;
  297. }
  298. .social-icons .fa-instagram:hover {
  299. color: #fb3958;
  300. }
  301. }
  302. .team-members-three{
  303. img{
  304. box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
  305. }
  306. .team-content{
  307. margin: 30px 0;
  308. h3{
  309. display: block;
  310. font-size: 22px;
  311. font-weight: 700;
  312. margin-bottom: 5px;
  313. }
  314. span{
  315. font-size: 14px;
  316. font-weight: 400;
  317. margin-bottom: 15px;
  318. color: #999;
  319. font-style: italic;
  320. }
  321. p{
  322. color: #999;
  323. }
  324. .info-text{
  325. margin-bottom: 30px;
  326. }
  327. }
  328. .social-icons{
  329. transition: all 0.3s ease-in-out 0s;
  330. -moz-transition: all 0.3s ease-in-out 0s;
  331. -webkit-transition: all 0.3s ease-in-out 0s;
  332. -o-transition: all 0.3s ease-in-out 0s;
  333. li{
  334. display: inline-block;
  335. margin: 0 10px;
  336. a{
  337. i{
  338. font-size: 24px;
  339. color: #999;
  340. }
  341. }
  342. }
  343. }
  344. .social-icons .fa-facebook:hover {
  345. color: #3b5998;
  346. }
  347. .social-icons .fa-twitter:hover {
  348. color: #55acee;
  349. }
  350. .social-icons .fa-instagram:hover {
  351. color: #fb3958;
  352. }
  353. }
  354. /* About */
  355. #about {
  356. padding: 30px 0;
  357. }
  358. .about{
  359. h5{
  360. font-size: 18px;
  361. a{
  362. color: $title-color;
  363. }
  364. a:hover{
  365. color: $preset;
  366. }
  367. }
  368. }
  369. .about.block img {
  370. max-width: 100px;
  371. margin-bottom: 15px;
  372. }
  373. .testimonial {
  374. position: relative;
  375. }
  376. #facts {
  377. padding: 60px 0;
  378. .fact-icon{
  379. color: $primary;
  380. font-size: 46px;
  381. display: block;
  382. margin-top: 0;
  383. margin-bottom: 20px;
  384. }
  385. }
  386. .timer {
  387. color: $title-color;
  388. font-size: 48px;
  389. line-height: 1.2;
  390. margin-top: 0;
  391. margin-bottom: 20px
  392. }
  393. .fact-title {
  394. color: $title-color;
  395. font-size: 18px;
  396. font-weight: $bold;
  397. margin-bottom: 30px;
  398. }
  399. #single-testimonial-item .item {
  400. margin: 10px;
  401. }
  402. #single-testimonial-item .property-main {
  403. margin-bottom: 0;
  404. }
  405. #single-testimonial-item .owl-controls .owl-buttons {
  406. position: relative;
  407. top: -160px;
  408. left: 0;
  409. }
  410. #single-testimonial-item .owl-controls .owl-buttons div.owl-prev {
  411. float: left;
  412. margin-left: -45px;
  413. }
  414. #single-testimonial-item .owl-controls .owl-buttons div.owl-next {
  415. float: right !important;
  416. margin-right: -45px;
  417. }
  418. .owl-theme .owl-buttons div {
  419. width: 40px;
  420. height: 40px;
  421. display: block !important;
  422. background: transparent !important;
  423. text-align: center;
  424. display: inline-block;
  425. opacity: 1!important;
  426. border-radius: 0!important;
  427. transition: all 0.4s ease-in-out;
  428. -moz-transition: all 0.4s ease-in-out;
  429. -webkit-transition: all 0.4s ease-in-out;
  430. -o-transition: all 0.4s ease-in-out;
  431. }
  432. .owl-theme .owl-buttons div:hover {
  433. opacity: 0.8!important;
  434. }
  435. .owl-theme .owl-buttons div i {
  436. color: #fff;
  437. font-size: 16px;
  438. line-height: 32px;
  439. }
  440. /* / End About */
  441. /* Start Tesitmonial */
  442. .single-testimonial-area{
  443. background-image: url(../img/about/testimonial-bg.jpg);
  444. background-size: cover;
  445. padding: 60px 0;
  446. .testimonial-inner{
  447. blockquote{
  448. font-size: 14px;
  449. color: #fff;
  450. text-align: center;
  451. }
  452. .testimonial-images{
  453. text-align: center;
  454. img{
  455. box-shadow: 0 0 3px #ddd;
  456. height: 90px;
  457. margin: 0 auto;
  458. border-radius: 50%;
  459. padding: 5px;
  460. width: 90px;
  461. }
  462. }
  463. .testimonial-footer{
  464. font-size: 16px;
  465. color: #fff;
  466. text-align: center;
  467. margin-top: 20px;
  468. a{
  469. color: $preset;
  470. font-size: 15px;
  471. }
  472. }
  473. }
  474. }
  475. /* End Tesitmonial */
  476. /* List Style */
  477. .list-title{
  478. margin-bottom: 30px;
  479. font-size: 27px;
  480. }
  481. .list-style li{
  482. margin-bottom: 15px;
  483. font-size: 14px;
  484. position: relative;
  485. i{
  486. margin-right: 10px;
  487. color: $preset;
  488. }
  489. }