_blog.scss 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986
  1. .gal{
  2. margin-left: 15%;
  3. .content_gal{
  4. width: 2.2%!important;
  5. &[aria-hidden="false"]{
  6. .title_gal{
  7. opacity: 1;
  8. right: 70px;
  9. -webkit-transition: all 1s ease;
  10. transition: right 1s ease, opacity 1s ease;
  11. }
  12. }
  13. }
  14. .title_gal{
  15. position: absolute;
  16. right: 50px;
  17. max-width: 50%;
  18. background: $light-blue;
  19. padding: 25px;
  20. top: 20vw;
  21. color: $white;
  22. opacity: 0;
  23. }
  24. }
  25. .cat{
  26. height: 50px;
  27. z-index: 999;
  28. margin: 20px 0;
  29. .btn-group{
  30. @include inlineflex();
  31. &:nth-of-type(1){
  32. label{
  33. margin-right: 20px;
  34. }
  35. }
  36. &:nth-of-type(2){
  37. float: right;
  38. }
  39. }
  40. label{
  41. padding: 10px;
  42. cursor: pointer;
  43. &.tous{
  44. border-top: 2px solid $green;
  45. border-bottom: 2px solid $green;
  46. }
  47. &.professionnels{
  48. border-top: 2px solid $red;
  49. border-bottom: 2px solid $red;
  50. }
  51. &.grand_public{
  52. border-top: 2px solid $light-blue;
  53. border-bottom: 2px solid $light-blue;
  54. }
  55. &.formations{
  56. border-top: 2px solid $grey;
  57. border-bottom: 2px solid $grey;
  58. }
  59. &.archive{
  60. border-top: 2px solid $dark-blue;
  61. border-bottom: 2px solid $dark-blue;
  62. }
  63. }
  64. input{
  65. visibility: hidden;
  66. position: absolute;
  67. }
  68. }
  69. .bandeau{
  70. width: 100%;
  71. max-height: 554px;
  72. overflow: hidden;
  73. display: flex;
  74. background-image: url('/user/themes/lecampus/images/Trame-bleu.svg');
  75. background-repeat: no-repeat;
  76. background-position: center;
  77. background-size: cover;
  78. .title_gal{
  79. position: absolute;
  80. right: 25%;
  81. max-width: 50%;
  82. background: $light-blue;
  83. padding: 25px;
  84. top: 27vw;
  85. color: $white;
  86. p{
  87. font-family: now_alt_bold;
  88. font-size: 1.2rem;
  89. font-weight: 400;
  90. line-height: 2.2rem;
  91. }
  92. }
  93. img{
  94. width: 70%;
  95. margin: auto;
  96. }
  97. }
  98. .container{
  99. & > .title{
  100. background: $red;
  101. border-radius: 30px;
  102. width: auto;
  103. float:left;
  104. padding: 10px 20px;
  105. color: white;
  106. }
  107. }
  108. .start{
  109. min-height: calc(100vh - 325px);
  110. &:not(#home){
  111. .entete{
  112. border-bottom: 10px solid $light-blue;
  113. }
  114. }
  115. }
  116. .start:not(#form){
  117. &#calendrier, &#archive{
  118. width: 70%;
  119. margin: 40px auto 40px auto;
  120. .header-wrapper{
  121. .title{
  122. display: -webkit-box;
  123. display: -ms-flexbox;
  124. display: flex;
  125. h1{
  126. width: auto;
  127. margin-bottom: 20px;
  128. background: $red;
  129. border-radius: 30px;
  130. padding: 10px 20px;
  131. color: white;
  132. font-size: 1.2rem;
  133. }
  134. }
  135. }
  136. }
  137. &#event{
  138. margin: 40px auto 40px auto;
  139. .title{
  140. display: -webkit-box;
  141. display: -ms-flexbox;
  142. display: flex;
  143. h1{
  144. width: auto;
  145. margin-bottom: 20px;
  146. background: $red;
  147. border-radius: 30px;
  148. padding: 10px 20px;
  149. color: white;
  150. font-size: 1.2rem;
  151. }
  152. }
  153. }
  154. .body-wrapper{
  155. @include inlineflex();
  156. -webkit-box-pack: center;
  157. -ms-flex-pack: center;
  158. justify-content: center;
  159. width: 100%;
  160. position: relative;
  161. .card{
  162. width: calc( (100% / 4) - 7.5px);
  163. min-width: 200px;
  164. margin: 0 0 10px 0 ;
  165. .card-header{
  166. position: absolute;
  167. width: 100%;
  168. right: 0;
  169. text-align: right;
  170. &.professionnels{
  171. background-color: $red;
  172. }
  173. &.grand_public{
  174. background-color: $light-blue;
  175. }
  176. &.formations{
  177. background-color: $grey;
  178. }
  179. .publics{
  180. padding: 2.5px 10px;
  181. color: white;
  182. }
  183. }
  184. .card-body{
  185. padding: 15px;
  186. background-image: url('/user/themes/lecampus/images/Trame-bleu.svg');
  187. background-position: center;
  188. background-repeat: no-repeat;
  189. background-size: cover;
  190. }
  191. }
  192. .event{
  193. width: 45%;
  194. .card-content{
  195. @include inlineflex;
  196. -ms-flex-wrap: nowrap;
  197. flex-wrap: nowrap;
  198. -webkit-box-pack: justify;
  199. -ms-flex-pack: justify;
  200. justify-content: space-between;
  201. .reso{
  202. width: 20%;
  203. a{
  204. display: block;
  205. margin-bottom: 10px;
  206. img{
  207. margin-left: 10px;
  208. width: 20px;
  209. }
  210. }
  211. }
  212. .txt{
  213. width: 80%;
  214. }
  215. }
  216. }
  217. }
  218. }
  219. .start#form{
  220. .entete{
  221. border-top: 1px solid $light-blue
  222. }
  223. h2{
  224. margin-top: 0;
  225. }
  226. .body-wrapper{
  227. width: 100%;
  228. min-width: 250px;
  229. margin: auto auto 140px auto;
  230. form{
  231. width: calc( (100% / 2));
  232. margin-top: 20px;
  233. margin: auto;
  234. & > div{
  235. width: 100%;
  236. margin: 20px 0;
  237. border-bottom: 1px solid $red;
  238. .form-data{
  239. @include inlineflex();
  240. margin: 20px 0px;
  241. &> div{
  242. overflow: hidden;
  243. margin: 10px 10px;
  244. min-width: 100px;
  245. border: 2px solid $red;
  246. border-radius: 30px;
  247. padding: 10px 20px;
  248. &.check{
  249. background: $red;
  250. color: white;
  251. }
  252. input{
  253. border: none;
  254. }
  255. input[type='radio'] {
  256. visibility: hidden;
  257. position: absolute;
  258. }
  259. label{
  260. cursor: pointer;
  261. }
  262. }
  263. }
  264. &:nth-of-type(n+5):not(:nth-of-type(n+11)){
  265. width: 50%;
  266. float: left;
  267. border-bottom: 0px;
  268. .form-data{
  269. width: 100%;
  270. & > div{
  271. width: 100%;
  272. }
  273. }
  274. }
  275. &:nth-of-type(9), &:nth-of-type(10){
  276. border-bottom: 1px solid $red !important;
  277. }
  278. &.button-wrapper{
  279. background: $red;
  280. height: 100px;
  281. position: absolute;
  282. left: 0;
  283. width: 100%;
  284. button{
  285. margin-right: 25%;
  286. position: absolute;
  287. right: 0;
  288. top: 50%;
  289. -webkit-transform: translateY(-50%);
  290. transform: translateY(-50%);
  291. background: white;
  292. border-radius: 30px;
  293. padding: 10px 35px;
  294. -webkit-box-shadow:none;
  295. box-shadow:none;
  296. border:0;
  297. }
  298. }
  299. }
  300. }
  301. #send-valide{
  302. -webkit-transform: translate(-50%, -50%);
  303. transform: translate(-50%, -50%);
  304. background: $red;
  305. border-radius: 20px;
  306. position: fixed;
  307. width: 30%;
  308. height: 30%;
  309. left: 50%;
  310. top: 50%;
  311. padding: 50px;
  312. .toast{
  313. position: relative;
  314. text-align: center;
  315. color: white;
  316. }
  317. .ok{
  318. color: white;
  319. position: absolute;
  320. right: 20px;
  321. bottom: 20px;
  322. }
  323. }
  324. }
  325. }
  326. .header-wrapper{
  327. .title{
  328. h2{
  329. width: auto;
  330. margin-bottom: 20px;
  331. background: $red;
  332. border-radius: 30px;
  333. width: auto;
  334. padding: 10px 20px;
  335. color: white;
  336. font-size: 1.2rem;
  337. width:115px;
  338. }
  339. }
  340. }
  341. .content{
  342. width: 50%;
  343. margin: 4rem auto;
  344. p{
  345. margin: 10px 0;
  346. }
  347. }
  348. .content_s{
  349. margin: auto!important;
  350. }
  351. .entete{
  352. @include inlineflex;
  353. padding: 20px;
  354. background-image: url('/user/themes/lecampus/images/Trame-bleu.svg');
  355. background-position: center;
  356. background-repeat: no-repeat;
  357. background-size: cover;
  358. height: auto;
  359. border-top: 10px solid $green;
  360. .entete_c{
  361. @include inlineflex;
  362. text-align: center;
  363. width: 70%;
  364. margin: 50px auto;
  365. position: relative;
  366. h1{
  367. width: auto;
  368. margin-bottom: 20px;
  369. background: $red;
  370. border-radius: 30px;
  371. width: auto;
  372. padding: 10px 20px;
  373. }
  374. }
  375. }
  376. .body-wrapper{
  377. .content{
  378. h4{
  379. &:not(:first-of-type){
  380. border-top: 1px solid black;
  381. padding-top: 30px;
  382. margin: 30px 0 0 0;
  383. }
  384. }
  385. }
  386. .sub-content{
  387. border-top: 1px solid black;
  388. margin-bottom: 20px;
  389. margin-top: 20px;
  390. & > img{
  391. width: 33%;
  392. float: left;
  393. margin: 20px 10px 0px 0px;
  394. }
  395. }
  396. }
  397. #event{
  398. margin-bottom: 20px;
  399. .content{
  400. margin-top: 50px;
  401. h2{
  402. float: left;
  403. margin-right: 20px;
  404. }
  405. .reso{
  406. @include inlineflex;
  407. -ms-flex-wrap: nowrap;
  408. flex-wrap: nowrap;
  409. width: 50px;
  410. height: 25px;
  411. }
  412. }
  413. .sidebar{
  414. margin-top: 50px;
  415. }
  416. }
  417. .sidebar{
  418. position: absolute;
  419. right: 0;
  420. width: 20%;
  421. margin: -55px auto 0 20px;
  422. h2{
  423. background: $red;
  424. border-radius: 100px;
  425. width: 100px;
  426. height: 100px;
  427. }
  428. .side-agenda{
  429. padding: 10px 20px 10px 0;
  430. &:not(:nth-of-type(1)){
  431. border-top: 1px solid $light-blue;
  432. &::before{
  433. content: " ";
  434. display: block;
  435. position: absolute;
  436. width: 5px;
  437. height: 5px;
  438. margin-top: -13px;
  439. border-radius: 10px;
  440. background: $light-blue;
  441. }
  442. }
  443. &:nth-of-type(3){
  444. margin-bottom: 10px;
  445. }
  446. }
  447. .side-all-agenda{
  448. background: white;
  449. width: auto;
  450. padding: 10px 20px;
  451. margin-bottom: 10px;
  452. float: left;
  453. border: 2px solid $red;
  454. border-radius: 30px;
  455. -webkit-transition: background-color 0.3s ease;
  456. transition: background-color 0.3s ease;
  457. a{
  458. color: black;
  459. }
  460. &:hover{
  461. background-color: $red;
  462. -webkit-transition: background-color 0.3s ease;
  463. transition: background-color 0.3s ease;
  464. a{
  465. color: white;
  466. }
  467. }
  468. }
  469. }
  470. #newsletter{
  471. padding: 20px;
  472. background: $light-blue;
  473. #mc_embed_signup{
  474. width: 600px;
  475. margin: auto;
  476. padding: 0 0 0 10px;
  477. border-radius: 100px;
  478. border: 1px solid $white;
  479. form{
  480. @include inlineflex();
  481. width: 100%;
  482. #mc_embed_signup_scroll{
  483. @include inlineflex();
  484. width: 100%;
  485. margin: auto;
  486. label{
  487. text-align: center;
  488. color: $white;
  489. margin-right: 10px;
  490. width: 260px;
  491. }
  492. &>input{
  493. width: 315px;
  494. padding-left: 20px;
  495. }
  496. input{
  497. border-radius: 30px;
  498. height: 31px;
  499. -webkit-box-shadow: none;
  500. box-shadow: none;
  501. border: none;
  502. }
  503. .clear{
  504. input{
  505. background: $white;
  506. margin-left: -30px;
  507. }
  508. }
  509. }
  510. }
  511. }
  512. }
  513. #home{
  514. .content{
  515. @include inlineflex();
  516. & > p{
  517. position: relative;
  518. width: calc(100% / 3);
  519. padding: 50px 20px;
  520. margin-top: 10px;
  521. img{
  522. position: absolute;
  523. width: auto;
  524. height: 50px;
  525. top: -20px;
  526. left: 50%;
  527. -webkit-transform: translate(-50%);
  528. transform: translate(-50%);
  529. }
  530. &:nth-of-type(n+4){
  531. width: calc(100% / 4);
  532. }
  533. &:last-child{
  534. width: auto!important;
  535. margin-top: 0!important;
  536. margin: auto;
  537. a{
  538. display: block;
  539. padding: 10px 20px;
  540. text-align: center;
  541. border: 2px solid $green;
  542. border-radius: 30px;
  543. margin: auto;
  544. -webkit-transition: background-color 0.3s ease;
  545. transition: background-color 0.3s ease;
  546. }
  547. }
  548. }
  549. }
  550. }
  551. #item{
  552. .content{
  553. @include inlineflex;
  554. .images_s{
  555. // width: calc(100% / 2 - 15px);
  556. width: 40%;
  557. // min-width: 300px;
  558. margin-right: 15px;
  559. img{
  560. margin-bottom: 15px;
  561. }
  562. }
  563. .content_s{
  564. width: calc(60% - 30px);
  565. }
  566. .icones{
  567. margin: 70px 0;
  568. @include inlineflex;
  569. -ms-flex-pack: distribute;
  570. justify-content: space-around;
  571. width: 100%;
  572. .icon{
  573. height: 50px;
  574. width: auto;
  575. max-width: 200px;
  576. img{
  577. height: 50px;
  578. width: 100%;
  579. }
  580. p{
  581. text-align: center;
  582. }
  583. }
  584. }
  585. }
  586. }
  587. #devis{
  588. @include inlineflex();
  589. -webkit-box-pack: center;
  590. -ms-flex-pack: center;
  591. justify-content: center;
  592. -webkit-box-align: center;
  593. -ms-flex-align: center;
  594. align-items: center;
  595. background-image: url('/user/themes/lecampus/images/Trame-bleu.svg');
  596. background-position: center;
  597. background-repeat: no-repeat;
  598. background-size: cover;
  599. width: 100%;
  600. // height: 300px;
  601. .title{
  602. width: 200px;
  603. height: 200px;
  604. background: $red;
  605. border-radius: 200px;
  606. -webkit-transform: translateX(80px);
  607. transform: translateX(80px);
  608. h4{
  609. text-align: center;
  610. color: white;
  611. margin: 50% 10px 0 10px;
  612. -webkit-transform: translateY(-50%);
  613. transform: translateY(-50%);
  614. }
  615. }
  616. .txt{
  617. @include inlineflex();
  618. background: white;
  619. width: 25%;
  620. margin-right: 20px;
  621. height: 250px;
  622. p{
  623. padding: 20px 20px 20px 100px;
  624. color: black;
  625. text-align: left;
  626. strong{
  627. font-size: 1.3rem;
  628. }
  629. }
  630. }
  631. .demander-votre-devis{
  632. margin-top: 0;
  633. -webkit-transform: translateX(-200px);
  634. transform: translateX(-200px);
  635. }
  636. .img{
  637. width: 400px;
  638. height: 300px;
  639. overflow: hidden;
  640. img{
  641. width: auto;
  642. height: 400px;
  643. }
  644. }
  645. }
  646. #devis{
  647. &.item, &.sublog{
  648. background: $red;
  649. height: auto;
  650. padding: 20px 0;
  651. a{
  652. color: white;
  653. .title{
  654. vertical-align: baseline;
  655. border-radius: 30px;
  656. border: 1px solid white;
  657. padding: 5px 20px;
  658. height: 35px;
  659. width: auto;
  660. -webkit-transform: translateX(0);
  661. transform: translateX(0);
  662. }
  663. &:hover{
  664. color: black;
  665. .title{
  666. background: white;
  667. -webkit-transition: background 0.3s ease;
  668. transition: background 0.3s ease;
  669. }
  670. }
  671. }
  672. }
  673. }
  674. // .bx-viewport{
  675. // height: 30vw!important;
  676. // }
  677. #reco{
  678. background: $dark-blue;
  679. .title{
  680. display: -webkit-box;
  681. display: -ms-flexbox;
  682. display: flex;
  683. cursor: pointer;
  684. width: 100%;
  685. padding: 10px;
  686. h2{
  687. width: auto;
  688. margin: auto;
  689. color: white;
  690. padding: 10px;
  691. text-align: center;
  692. border-top: 1px solid white;
  693. border-bottom: 1px solid white;
  694. font-size: 1rem;
  695. &::after{
  696. display: -webkit-inline-box;
  697. display: -ms-inline-flexbox;
  698. display: inline-flex;
  699. margin-left: 10px;
  700. content: " ";
  701. background: url('../images/fleche-top.svg');
  702. background-size: 15px 18px;
  703. background-repeat: no-repeat;
  704. width: 15px;
  705. height: 18px;
  706. }
  707. }
  708. &.open{
  709. h2:after{
  710. -webkit-transform: rotate(180deg);
  711. transform: rotate(180deg);
  712. }
  713. }
  714. }
  715. .txt{
  716. z-index: -1;
  717. position: absolute;
  718. width: 100%;
  719. padding-top: 20px;
  720. @include inlineflex;
  721. -webkit-box-pack: center;
  722. -ms-flex-pack: center;
  723. justify-content: center;
  724. -webkit-transform: translateY(-100%);
  725. transform: translateY(-100%);
  726. p{
  727. color: white;
  728. width: 300px;
  729. a{
  730. color: white;
  731. text-decoration: underline;
  732. }
  733. }
  734. &.open{
  735. z-index: 999;
  736. background: $dark-blue;
  737. .item{
  738. display: block;
  739. }
  740. }
  741. h3{
  742. color: $green;
  743. }
  744. }
  745. .item{
  746. display: none;
  747. margin: 0 0px 20px 20px;
  748. border-left: 1px solid white;
  749. padding-left: 20px;
  750. img{
  751. width: 50px;
  752. margin-bottom: 10px;
  753. }
  754. }
  755. }
  756. .content_s{
  757. &.map{
  758. width: 100%!important;
  759. height: auto;
  760. p{
  761. &:last-child{
  762. height: 500px;
  763. }
  764. }
  765. a#carte{
  766. display: block;
  767. width: 100%;
  768. height: 100%;
  769. }
  770. }
  771. }
  772. #event{
  773. .title{
  774. width: 45%;
  775. margin: auto;
  776. }
  777. .head-event{
  778. .tags{
  779. width: 100%;
  780. &.professionnels{
  781. background-color: $red;
  782. }
  783. &.grand_public{
  784. background-color: $light-blue;
  785. }
  786. &.formations{
  787. background-color: $grey;
  788. }
  789. &.publics{
  790. padding: 2.5px 10px;
  791. color: white;
  792. }
  793. }
  794. }
  795. .card-header{
  796. @include inlineflex;
  797. -webkit-box-orient: vertical;
  798. -webkit-box-direction: normal;
  799. -ms-flex-direction: column;
  800. flex-direction: column;
  801. width: 100%;
  802. &.professionnels{
  803. background-color: $red;
  804. }
  805. &.grand_public{
  806. background-color: $light-blue;
  807. }
  808. &.formations{
  809. background-color: $grey;
  810. }
  811. .publics{
  812. text-align: right;
  813. &.publics{
  814. padding: 2.5px 10px;
  815. color: white;
  816. }
  817. }
  818. }
  819. .card-body{
  820. padding: 15px;
  821. background-image: url('/user/themes/lecampus/images/Trame-bleu.svg');
  822. background-position: center;
  823. background-repeat: no-repeat;
  824. background-size: cover;
  825. }
  826. .card-content{
  827. margin-top: 20px;
  828. }
  829. }
  830. .demander-votre-devis{
  831. padding: 10px;
  832. z-index: 999;
  833. background: $red;
  834. position: absolute;
  835. width: 200px;
  836. height: 200px;
  837. right: 100px;
  838. margin-top: -100px;
  839. color: white;
  840. text-align: center;
  841. strong{
  842. font-weight: bold!important;
  843. }
  844. a{
  845. color: white;
  846. }
  847. img{
  848. margin-top: 10px;
  849. width: 50px;
  850. }
  851. }
  852. #sublog{
  853. .body-wrapper{
  854. background-image: url('../images/Trame-gris.svg');
  855. background-repeat: no-repeat;
  856. }
  857. .content{
  858. @include inlineflex;
  859. width: 90%;
  860. flex-direction: row-reverse;
  861. justify-content: start;
  862. & > p{
  863. font-size: 1.2rem;
  864. font-family: $Bold;
  865. }
  866. }
  867. svg{
  868. pointer-events: none;
  869. }
  870. .mapsalles{
  871. width: 50%;
  872. position: relative;
  873. .contour{
  874. position: relative;
  875. z-index: 1;
  876. pointer-events: none;
  877. display: inline-block;
  878. width: 100%;
  879. vertical-align: middle;
  880. overflow: hidden;
  881. }
  882. .fond{
  883. position: absolute;
  884. display: inline-block;
  885. width: 100%;
  886. vertical-align: middle;
  887. overflow: hidden;
  888. z-index:0;
  889. left: 0;
  890. top: 5.3%;
  891. path{
  892. fill: none;
  893. pointer-events: all;
  894. transition: fill 0.3s ease;
  895. &:hover{
  896. fill: $light-blue!important;
  897. transition: fill 0.3s ease;
  898. }
  899. }
  900. }
  901. }
  902. .txt{
  903. width: 30%;
  904. }
  905. .content_salle{
  906. position: absolute;
  907. left: 50%;
  908. top: 300px;
  909. width: 40%;
  910. background: white;
  911. & > p{
  912. padding-left: 10px;
  913. }
  914. h3{
  915. background: $light-blue;
  916. padding: 5px 10px;
  917. color: white;
  918. margin-top: 0;
  919. }
  920. h4{
  921. background: $green;
  922. font-size: 1.2rem;
  923. font-family: $Bold;
  924. padding: 5px 10px;
  925. }
  926. .bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager{
  927. bottom: 10px!important;
  928. }
  929. .bx-pager-link {
  930. background: white!important;
  931. &.active{
  932. background: black!important;
  933. }
  934. }
  935. }
  936. }
  937. #default{
  938. .header-wrapper{
  939. width: 45%;
  940. margin-top: 50px;
  941. margin: auto;
  942. }
  943. .body-wrapper{
  944. margin-bottom: 50px;
  945. }
  946. .title{
  947. width: 80%;
  948. margin: auto;
  949. }
  950. .txt{
  951. margin:auto;
  952. }
  953. p{
  954. margin-bottom: 10px;
  955. }
  956. }