_site-blocks.scss 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985
  1. .site-blocks-cover {
  2. background-size: cover;
  3. background-repeat: no-repeat;
  4. background-position: top;
  5. background-position: center center;
  6. &.overlay {
  7. position: relative;
  8. &:before {
  9. position: absolute;
  10. content: "";
  11. left: 0;
  12. bottom: 0;
  13. right: 0;
  14. top: 0;
  15. background: rgba($black, .4);
  16. }
  17. }
  18. .player {
  19. position: absolute;
  20. bottom: -250px;
  21. width: 100%;
  22. }
  23. &, .row {
  24. min-height: 600px;
  25. height: calc(100vh);
  26. }
  27. &.inner-page-cover {
  28. &, .row {
  29. min-height: 600px;
  30. height: calc(30vh);
  31. }
  32. }
  33. h1 {
  34. font-size: 4rem;
  35. font-weight: 900;
  36. color: $white;
  37. // line-height: 1.5;
  38. @include media-breakpoint-down(md) {
  39. font-size: 2rem;
  40. }
  41. }
  42. p {
  43. color: rgba($white, .5);
  44. font-size: $font-size-base + .2rem;
  45. line-height: 1.5;
  46. }
  47. .btn {
  48. border: 2px solid transparent;
  49. &:hover {
  50. color: $white!important;
  51. background: none;
  52. border: 2px solid $white;
  53. }
  54. }
  55. .intro-text {
  56. font-size: 16px;
  57. line-height: 1.5;
  58. }
  59. .display-1 {
  60. @include media-breakpoint-down(md) {
  61. font-size: $font-size-base + 2rem;
  62. }
  63. }
  64. }
  65. .site-block-subscribe {
  66. .btn {
  67. padding-left: 20px;
  68. padding-right: 20px;
  69. }
  70. .form-control {
  71. font-weight: 300;
  72. border-color: $white!important;
  73. height: 80px;
  74. font-size: 22px;
  75. color: $white;
  76. padding-left: 30px;
  77. padding-right: 30px;
  78. &::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  79. color: rgba($white, .5);
  80. font-weight: 200;
  81. font-style: italic;
  82. }
  83. &::-moz-placeholder { /* Firefox 19+ */
  84. color: rgba($white, .5);
  85. font-weight: 200;
  86. font-style: italic;
  87. }
  88. &:-ms-input-placeholder { /* IE 10+ */
  89. color: rgba($white, .5);
  90. font-weight: 200;
  91. font-style: italic;
  92. }
  93. &:-moz-placeholder { /* Firefox 18- */
  94. color: rgba($white, .5);
  95. font-weight: 200;
  96. font-style: italic;
  97. }
  98. }
  99. }
  100. .bg-light {
  101. background: #ccc;
  102. }
  103. .team-member {
  104. position: relative;
  105. float: left;
  106. width: 100%;
  107. overflow: hidden;
  108. img {
  109. transition: .3s all ease;
  110. transform: scale(1.0);
  111. }
  112. &:before {
  113. position: absolute;
  114. content: "";
  115. top: 0; left: 0; right: 0; bottom: 0;
  116. background: rgba($primary, .8);
  117. z-index: 2;
  118. height: 100%;
  119. width: 100%;
  120. opacity: 0;
  121. visibility: hidden;
  122. transition: .3s all ease;
  123. }
  124. .text {
  125. top: 50%;
  126. text-align: center;
  127. position: absolute;
  128. // top: 20px;
  129. // bottom: 20px;
  130. // left: 20px;
  131. // right: 20px;
  132. padding: 20px;
  133. transform: translateY(-30%);
  134. transition: .5s all ease;
  135. opacity: 0;
  136. visibility: hidden;
  137. color: $white;
  138. }
  139. &:hover, &:focus, &:active {
  140. &:before {
  141. opacity: 1;
  142. visibility: visible;
  143. }
  144. img {
  145. transform: scale(1.1);
  146. }
  147. .text {
  148. transform: translateY(-50%);
  149. transition-delay: .2s;
  150. opacity: 1;
  151. visibility: visible;
  152. z-index: 4;
  153. }
  154. }
  155. }
  156. .podcast-entry {
  157. box-shadow: 0 5px 40px -10px rgba(0,0,0,.1);
  158. .sep {
  159. margin-left: 5px;
  160. margin-right: 5px;
  161. color: #ccc;
  162. }
  163. .image {
  164. background-size: cover;
  165. background-position: center center;
  166. background-repeat: no-repeat;
  167. height: 300px;
  168. @include media-breakpoint-up(md) {
  169. width: 300px;
  170. height: auto;
  171. }
  172. }
  173. .text {
  174. width: 100%;
  175. padding: 40px;
  176. @include media-breakpoint-up(md) {
  177. width: calc(100% - 300px);
  178. }
  179. }
  180. }
  181. .mejs__container {
  182. width: 100%!important;
  183. }
  184. .display-4 {
  185. @include media-breakpoint-down(md) {
  186. font-size: $font-size-base + .8rem;
  187. }
  188. }
  189. .feature-blocks-1 {
  190. position: relative;
  191. margin-top: -70px;
  192. z-index: 2;
  193. color: darken($white, 40%);
  194. &.no-margin-top {
  195. margin-top: 0px;
  196. }
  197. .feature-block-1 {
  198. position: relative;
  199. top: 0;
  200. transition: .3s all ease;
  201. overflow: hidden;
  202. z-index: 1;
  203. &.bg {
  204. position: relative;
  205. background-size: cover;
  206. transform: scale(1.0);
  207. transition: .3s all ease-in-out;
  208. }
  209. .text {
  210. z-index: 10;
  211. position: relative;
  212. opacity: 0;
  213. visibility: hidden;
  214. transition: .3s all ease-in-out;
  215. }
  216. &:before {
  217. content: "";
  218. position: absolute;
  219. top: 0;
  220. z-index: 1;
  221. bottom: 0;
  222. left: 0;
  223. right: 0;
  224. background: rgba($black, 0);
  225. transition: .3s all ease-in-out;
  226. }
  227. p {
  228. color: lighten($black, 80%);
  229. }
  230. &:hover, &:focus, &:active {
  231. .text {
  232. opacity: 1;
  233. visibility: visible;
  234. }
  235. &.bg {
  236. position: relative;
  237. background-size: cover;
  238. transform: scale(1.1);
  239. z-index: 2;
  240. }
  241. top: -10px;
  242. box-shadow: 0 10px 40px -5px rgba(0,0,0,.4);
  243. &:before {
  244. background: rgba($black, .9);
  245. }
  246. }
  247. }
  248. }
  249. .site-blocks-vs {
  250. .bg-image {
  251. padding-top: 3em;
  252. padding-bottom: 3em;
  253. @include media-breakpoint-up(lg) {
  254. padding-top: 5em;
  255. padding-bottom: 5em;
  256. }
  257. }
  258. .image {
  259. width: 80px;
  260. flex: 0 0 80px;
  261. @include media-breakpoint-down (md) {
  262. margin-left: auto!important;
  263. margin-right: auto!important;
  264. }
  265. img {
  266. border-radius: 50%;
  267. }
  268. &.image-small {
  269. width: 50px;
  270. flex: 0 0 50px;
  271. }
  272. }
  273. .country {
  274. color: rgba($white, .7);
  275. }
  276. }
  277. .match-entry {
  278. position: relative;
  279. transition: .2s all ease-in-out;
  280. border-bottom: 1px solid rgba($black, .05);
  281. .small {
  282. color: #ccc;
  283. font-weight: normal;
  284. letter-spacing: .15em;
  285. }
  286. &:hover {
  287. transform: scale(1.05);
  288. z-index: 90;
  289. box-shadow: 0 5px 40px -5px rgba(0,0,0,.1);
  290. }
  291. }
  292. .post-entry {
  293. position: relative;
  294. overflow: hidden;
  295. border: 1px solid lighten($black, 90% );
  296. &, .text {
  297. border-radius: 4px;
  298. border-top: none!important;
  299. }
  300. .date {
  301. color: #ccc;
  302. font-weight: normal;
  303. letter-spacing: .1em;
  304. }
  305. .image {
  306. overflow: hidden;
  307. position: relative;
  308. img {
  309. transition: .3s all ease;
  310. transform: scale(1.0);
  311. }
  312. }
  313. &:hover, &:active, &:focus {
  314. .image {
  315. img {
  316. transform: scale(1.2);
  317. }
  318. }
  319. }
  320. }
  321. .site-block-tab {
  322. .nav-item {
  323. text-transform: uppercase;
  324. font-size: $font-size-base - .2rem;
  325. margin: 0 20px;
  326. &:first-child {
  327. margin-left: 0!important;
  328. }
  329. > a {
  330. padding-left: 0!important;
  331. background: none!important;
  332. padding-right: 0!important;
  333. border-bottom: 2px solid transparent;
  334. border-radius: 0!important;
  335. font-weight: bold;
  336. color: lighten($black, 80%);
  337. &:hover, &.active {
  338. border-bottom: 2px solid $primary;
  339. color: $black;
  340. }
  341. }
  342. }
  343. }
  344. .block-13, .slide-one-item {
  345. position: relative;
  346. z-index: 1;
  347. .owl-nav {
  348. position: relative;
  349. position: absolute;
  350. bottom: -90px;
  351. left: 50%;
  352. transform: translateX(-50%);
  353. .owl-prev, .owl-next {
  354. position: relative;
  355. display: inline-block;
  356. padding: 20px;
  357. font-size: 30px;
  358. color: $black;
  359. &.disabled {
  360. opacity: .2;
  361. }
  362. }
  363. }
  364. }
  365. .slide-one-item {
  366. &.home-slider {
  367. .owl-nav {
  368. // transition: .3s all ease-in-out;
  369. // opacity: 0;
  370. // visibility: hidden;
  371. position: absolute!important;
  372. top: 50%!important;
  373. bottom: auto!important;
  374. width: 100%;
  375. }
  376. .owl-prev {
  377. left: 10px!important;
  378. }
  379. .owl-next {
  380. right: 10px!important;
  381. }
  382. .owl-prev, .owl-next {
  383. color: $white;
  384. position: absolute!important;
  385. top: 50%;
  386. padding: 0px;
  387. height: 50px;
  388. width: 50px;
  389. border-radius: 50%;
  390. transform: translateY(-50%);
  391. background: rgba($black, .2);
  392. transition: .3s all ease-in-out;
  393. line-height: 0;
  394. text-align: center;
  395. font-size: 25px;
  396. @include media-breakpoint-up(md) {
  397. font-size: 25px;
  398. }
  399. > span {
  400. position: absolute;
  401. line-height: 0;
  402. top: 50%;
  403. left: 50%;
  404. transform: translate(-50%, -50%);
  405. }
  406. &:hover, &:focus {
  407. background: rgba($black, 1);
  408. }
  409. }
  410. &:hover, &:focus, &:active {
  411. .owl-nav {
  412. opacity: 10;
  413. visibility: visible;
  414. }
  415. }
  416. }
  417. }
  418. .block-12 {
  419. position: relative;
  420. figure {
  421. position: relative;
  422. &:before {
  423. content: '';
  424. position: absolute;
  425. top: 0;
  426. right: 0;
  427. bottom: 0;
  428. left: 0;
  429. background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0,0,0,0.8) 99%, rgba(0,0,0,0.8) 100%);
  430. background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0,0,0,0.8) 99%, rgba(0,0,0,0.8) 100%);
  431. background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0,0,0,0.8) 99%, rgba(0,0,0,0.8) 100%);
  432. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 );
  433. }
  434. }
  435. .text-overlay {
  436. position: absolute;
  437. bottom: 20px;
  438. left: 20px;
  439. right: 20px;
  440. z-index: 10;
  441. h2 {
  442. color: $white;
  443. }
  444. }
  445. .text {
  446. position: relative;
  447. top: -100px;
  448. .meta {
  449. text-transform: uppercase;
  450. padding-left: 40px;
  451. color: $white;
  452. display: block;
  453. margin-bottom: 20px;
  454. }
  455. .text-inner {
  456. box-shadow: 0 0 20px -5px rgba(0,0,0,.3);
  457. background: $white;
  458. padding: 10px;
  459. margin-right: 30px;
  460. position: relative;
  461. @include media-breakpoint-up(sm) {
  462. padding: 20px;
  463. }
  464. @include media-breakpoint-up(md) {
  465. padding: 30px 40px;
  466. }
  467. &:before {
  468. position: absolute;
  469. content: "";
  470. width: 80px;
  471. height: 4px;
  472. margin-top: -4px;
  473. background: $primary;
  474. top: 0;
  475. }
  476. .heading {
  477. font-size: 20px;
  478. margin: 0;
  479. padding: 0;
  480. }
  481. }
  482. }
  483. }
  484. .block-16 {
  485. figure {
  486. position: relative;
  487. .play-button {
  488. position: absolute;
  489. top: 50%;
  490. left: 50%;
  491. transform: translate(-50%, -50%);
  492. font-size: 20px;
  493. width: 70px;
  494. height: 70px;
  495. background: $white;
  496. display: block;
  497. border-radius: 50%;
  498. opacity: 1;
  499. color: $primary!important;
  500. &:hover {
  501. opacity: 1;
  502. }
  503. > span {
  504. position: absolute;
  505. left: 55%;
  506. top: 50%;
  507. transform: translate(-60%, -50%);
  508. }
  509. }
  510. }
  511. }
  512. .block-25 {
  513. ul {
  514. &, li {
  515. padding: 0;
  516. margin: 0;
  517. }
  518. li {
  519. a {
  520. .image {
  521. flex: 0 0 90px;
  522. img {
  523. border-radius: 4px;
  524. max-width: 100%;
  525. opacity: 1;
  526. transition: .3s all ease-in-out;
  527. }
  528. }
  529. .text {
  530. .heading {
  531. font-size: 18px;
  532. line-height: 1.5;
  533. margin: 0;
  534. padding: 0;
  535. transition: .3s all ease;
  536. color: lighten($black, 60%);
  537. }
  538. }
  539. .meta {
  540. color: $primary;
  541. }
  542. &:hover {
  543. img {
  544. opacity: .5;
  545. }
  546. .text {
  547. .heading {
  548. color: $white;
  549. }
  550. }
  551. }
  552. }
  553. }
  554. }
  555. }
  556. #date-countdown {
  557. .countdown-block {
  558. color: lighten($black, 70%);
  559. }
  560. .label {
  561. font-size: 40px;
  562. color: $black;
  563. }
  564. }
  565. .next-match {
  566. .image {
  567. width: 50px;
  568. border-radius: 50%;
  569. }
  570. }
  571. .player {
  572. position: relative;
  573. img {
  574. max-width: 100px;
  575. border-radius: 50%;
  576. margin-bottom: 20px;
  577. }
  578. .team-number {
  579. position: absolute;
  580. width: 30px;
  581. height: 30px;
  582. background: $primary;
  583. border-radius: 50%;
  584. color: $white;
  585. > span {
  586. position: absolute;
  587. transform: translate(-50%, -50%);
  588. left: 50%;
  589. top: 50%;
  590. }
  591. }
  592. h2 {
  593. font-size: 20px;
  594. letter-spacing: .2em;
  595. text-transform: uppercase;
  596. }
  597. .position {
  598. font-size: 14px;
  599. color: lighten($black, 70%);
  600. text-transform: uppercase;
  601. }
  602. }
  603. .site-block-27 {
  604. ul {
  605. &, li {
  606. padding: 0;
  607. margin: 0;
  608. }
  609. li {
  610. display: inline-block;
  611. margin-bottom: 4px;
  612. a,span {
  613. text-align: center;
  614. display: inline-block;
  615. width: 40px;
  616. height: 40px;
  617. line-height: 40px;
  618. border-radius: 50%;
  619. border: 1px solid #ccc;
  620. }
  621. &.active {
  622. a, span {
  623. background: $primary;
  624. color: $white;
  625. border: 1px solid transparent;
  626. }
  627. }
  628. }
  629. }
  630. }
  631. .site-block-feature-7 {
  632. .icon {
  633. transition: .2s all ease-in-out;
  634. position: relative;
  635. transform: scale(1.0);
  636. }
  637. &:hover, &:focus, &:active {
  638. .icon {
  639. transform: scale(1.2);
  640. }
  641. }
  642. }
  643. .unit-1 {
  644. position: relative;
  645. width: 100%;
  646. overflow: hidden;
  647. display: block;
  648. &:after {
  649. content: "";
  650. z-index: 1;
  651. position: absolute;
  652. bottom: 0;
  653. top: 0;
  654. left: 0;
  655. right: 0;
  656. background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0,0,0,0.8) 99%, rgba(0,0,0,0.8) 100%);
  657. background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0,0,0,0.8) 99%, rgba(0,0,0,0.8) 100%);
  658. background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0,0,0,0.8) 99%, rgba(0,0,0,0.8) 100%);
  659. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 );
  660. }
  661. img {
  662. object-fit: cover;
  663. transform: scale(1.0);
  664. }
  665. img, .unit-1-text {
  666. transition: .3s all ease-in-out;
  667. }
  668. .unit-1-text {
  669. z-index: 2;
  670. position: absolute;
  671. bottom: -90px;
  672. color: $white;
  673. display: block;
  674. width: 100%;
  675. .unit-1-heading {
  676. font-size: 1.5rem ;
  677. position: relative;
  678. }
  679. }
  680. p {
  681. opacity: 0;
  682. visibility: hidden;
  683. transition: .3s all ease;
  684. color: rgba($white, .5);
  685. }
  686. &:hover {
  687. p {
  688. opacity: 1;
  689. visibility: visible;
  690. }
  691. .unit-1-text {
  692. bottom: 30px;
  693. }
  694. img {
  695. transform: scale(1.05);
  696. }
  697. }
  698. }
  699. .overlap-section {
  700. margin-top: -150px;
  701. position: relative;
  702. z-index: 9;
  703. }
  704. .unit-4 {
  705. .unit-4-icon {
  706. span {
  707. line-height: 0;
  708. font-size: 3rem;
  709. }
  710. }
  711. h3 {
  712. font-size: 20px;
  713. }
  714. }
  715. .h-entry {
  716. img {
  717. margin-bottom: 30px;
  718. }
  719. .meta {
  720. color: darken(#ccc, 10%);
  721. font-size: 14px;
  722. }
  723. h2 {
  724. font-size: 20px;
  725. }
  726. }
  727. .overlap-left {
  728. margin-left: -100px;
  729. @include media-breakpoint-down(md) {
  730. margin-left: 0px;
  731. }
  732. }
  733. .overlap-section {
  734. margin-top: -100px;
  735. }
  736. .feature-1 {
  737. background: $primary;
  738. padding: 30px 50px;
  739. color: rgba($white, .6);
  740. font-size: 15px;
  741. .heading {
  742. font-size: 22px;
  743. text-transform: uppercase;
  744. color: $white;
  745. }
  746. .icon {
  747. border: 2px solid rgba($white, .5);
  748. width: 80px;
  749. height: 80px;
  750. line-height: 80px;
  751. position: relative;
  752. border-radius: 50%;
  753. margin: 0 auto!important;
  754. > span {
  755. font-size: 35px;
  756. color: $white;
  757. position: absolute;
  758. top: 50%;
  759. left: 50%;
  760. transform: translate(-50%, -50%);
  761. }
  762. }
  763. }
  764. .free-quote {
  765. @extend .feature-1;
  766. background: darken($primary, 5%);
  767. .form-control {
  768. border: 2px solid rgba($white, .5);
  769. background: none;
  770. color: $white;
  771. &:active, &:focus {
  772. border: 2px solid $white;
  773. }
  774. &::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  775. color: rgba($white, .4);
  776. font-size: 13px;
  777. font-style: italic;
  778. }
  779. &::-moz-placeholder { /* Firefox 19+ */
  780. color: rgba($white, .4);
  781. font-size: 13px;
  782. font-style: italic;
  783. }
  784. &:-ms-input-placeholder { /* IE 10+ */
  785. color: rgba($white, .4);
  786. font-size: 13px;
  787. font-style: italic;
  788. }
  789. &:-moz-placeholder { /* Firefox 18- */
  790. color: rgba($white, .4);
  791. font-size: 13px;
  792. font-style: italic;
  793. }
  794. }
  795. }
  796. .feature-3 {
  797. @extend .feature-1;
  798. background: darken($primary, 7%);
  799. }
  800. .border-primary {
  801. position: relative;
  802. h2 {
  803. text-transform: uppercase;
  804. font-weight: 700!important;
  805. }
  806. &:after {
  807. position: absolute;
  808. content: "";
  809. bottom: 0;
  810. width: 80px;
  811. height: 3px;
  812. background: $primary;
  813. }
  814. &.text-center {
  815. &:after {
  816. left: 50%;
  817. transform: translateX(-50%);
  818. }
  819. }
  820. &.text-left {
  821. &:after {
  822. transform: translateX(0%);
  823. }
  824. }
  825. }
  826. .testimonial {
  827. max-width: 800px;
  828. margin: 0 auto!important;
  829. text-align: center;
  830. blockquote {
  831. font-size: 1rem;
  832. font-style: italic;
  833. }
  834. figure {
  835. img {
  836. max-width: 100px;
  837. margin: 0 auto;
  838. border-radius: 50%;
  839. }
  840. }
  841. }
  842. .breadcrumb-custom {
  843. font-size: 1rem!important;
  844. }
  845. .text-muted {
  846. color: #ccc!important;
  847. font-size: 12px;
  848. text-transform: uppercase;
  849. }
  850. .how-it-work-item {
  851. .number {
  852. width: 50px;
  853. height: 50px;
  854. background: $primary;
  855. color: $white;
  856. line-height: 55px;
  857. font-weight: 300;
  858. display: inline-block;
  859. text-align: center;
  860. font-size: 30px;
  861. border-radius: 50%;
  862. margin-bottom: 40px;
  863. }
  864. h2 {
  865. font-size: 18px;
  866. margin-bottom: 30px;
  867. color: $white;
  868. }
  869. p {
  870. color: rgba(255,255,255,1);
  871. }
  872. }
  873. .person {
  874. h3 {
  875. font-size: 18px;
  876. }
  877. }
  878. .ul-social-circle {
  879. list-style: none;
  880. padding: 0;
  881. margin: 0;
  882. li {
  883. display: inline-block;
  884. margin-left: 5px;
  885. margin-bottom: 5px;
  886. &:first-child {
  887. margin-left: 0;
  888. }
  889. span {
  890. width: 30px;
  891. height: 30px;
  892. background: #777;
  893. font-size: 13px;
  894. text-align: center;
  895. line-height: 30px;
  896. border-radius: 50%;
  897. display: inline-block;
  898. }
  899. a {
  900. span {
  901. color: $white;
  902. transition: .3s all ease;
  903. }
  904. &:hover {
  905. span {
  906. background: darken(#444, 10%);
  907. color: $white;
  908. }
  909. }
  910. }
  911. }
  912. }
  913. .custom-pagination {
  914. a, span {
  915. width: 40px;
  916. height: 40px;
  917. line-height: 40px;
  918. border-radius: 50%;
  919. display: inline-block;
  920. background: $primary;
  921. color: $white;
  922. }
  923. span {
  924. background: lighten(#ccc, 10%);
  925. color: $black;
  926. }
  927. }