_blog.scss 18 KB

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