style.css 16 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052
  1. *,
  2. *::before,
  3. *::after {
  4. box-sizing: border-box;
  5. }
  6. /* FONTS ICON */
  7. @font-face {
  8. font-family: "icomoon";
  9. src: url("fonts/icomoon.eot?rj8fwo");
  10. src: url("fonts/icomoon.eot?rj8fwo#iefix") format("embedded-opentype"),
  11. url("fonts/icomoon.ttf?rj8fwo") format("truetype"),
  12. url("fonts/icomoon.woff?rj8fwo") format("woff"),
  13. url("fonts/icomoon.svg?rj8fwo#icomoon") format("svg");
  14. font-weight: normal;
  15. font-style: normal;
  16. font-display: block;
  17. }
  18. [class^="icon-"],
  19. [class*=" icon-"] {
  20. /* use !important to prevent issues with browser extensions that change fonts */
  21. font-family: "icomoon" !important;
  22. speak: none;
  23. font-style: normal;
  24. font-weight: normal;
  25. font-variant: normal;
  26. text-transform: none;
  27. line-height: 1;
  28. /* Better Font Rendering =========== */
  29. -webkit-font-smoothing: antialiased;
  30. -moz-osx-font-smoothing: grayscale;
  31. }
  32. .icon-phone:before {
  33. content: "\e901";
  34. font-size: 20px;
  35. padding-right: 20px;
  36. }
  37. .icon-facebook:before {
  38. content: "\e902";
  39. }
  40. .icon-twitter:before {
  41. content: "\e900";
  42. }
  43. .icon-planet:before {
  44. content: "\e906";
  45. font-size: 20px;
  46. padding-right: 20px;
  47. }
  48. .icon-instagram:before {
  49. content: "\ea92";
  50. }
  51. .icon-pinterest:before {
  52. content: "\ead2";
  53. }
  54. .icon-mail:before {
  55. content: "\e905";
  56. font-size: 25px;
  57. padding-right: 20px;
  58. }
  59. .icon-map:before {
  60. content: "\e904";
  61. font-size: 20px;
  62. padding-right: 20px;
  63. }
  64. .icon-google:before {
  65. content: "\e903";
  66. }
  67. /* FONTS ICON */
  68. * {
  69. font-family: "Open Sans", sans-serif;
  70. font-size: 14px;
  71. border: none;
  72. color: #ffffff;
  73. }
  74. body {
  75. font-family: "Open Sans", sans-serif;
  76. font-size: 14px;
  77. color: #ffffff;
  78. }
  79. a {
  80. text-decoration: none;
  81. }
  82. /* THE ALL SITE */
  83. .wrapper {
  84. display: flex;
  85. flex-direction: column;
  86. /* max-width: 100%; */
  87. /* width: 1920px; */
  88. width: 100%;
  89. /* max-width: 1920px; */
  90. min-height: 100vh;
  91. }
  92. .content {
  93. max-width: 1200px;
  94. padding: 0 15px;
  95. margin: 0 auto;
  96. }
  97. /* THE ALL SITE */
  98. /* HEADER */
  99. .header {
  100. padding: 15px 0;
  101. display: flex;
  102. justify-content: center;
  103. align-items: center;
  104. }
  105. .content-head {
  106. width: 820px;
  107. display: flex;
  108. justify-content: space-between;
  109. align-items: center;
  110. margin-right: 71px;
  111. }
  112. .nav-right > .menu-box {
  113. display: flex;
  114. justify-content: flex-end;
  115. }
  116. .menu-box > li {
  117. display: inline;
  118. }
  119. .menu-box > li > a {
  120. color: #555555;
  121. padding: 0 13px;
  122. font-weight: bold;
  123. }
  124. .link {
  125. position: relative;
  126. }
  127. .menu-box .active {
  128. color: #5363db;
  129. }
  130. .active:after {
  131. content: "";
  132. display: block;
  133. width: 30px;
  134. height: 1px;
  135. background: #5363db;
  136. position: absolute;
  137. top: 100%;
  138. left: 32%;
  139. margin-top: 1px;
  140. }
  141. .menu-box a:hover {
  142. color: #5363db;
  143. }
  144. .menu-box :hover .link:after {
  145. content: "";
  146. display: block;
  147. width: 30px;
  148. height: 1px;
  149. background: #5363db;
  150. position: absolute;
  151. top: 100%;
  152. left: 32%;
  153. margin-top: 1px;
  154. }
  155. .link-two {
  156. position: relative;
  157. }
  158. .menu-box :hover .link-active::after {
  159. content: "";
  160. display: block;
  161. width: 20px;
  162. height: 1px;
  163. background: #5363db;
  164. position: absolute;
  165. top: 100%;
  166. left: 32%;
  167. margin-top: 1px;
  168. }
  169. /* HEADER */
  170. /* MAIN */
  171. .main {
  172. flex-grow: 1;
  173. }
  174. .first-content {
  175. background: url("./img/slider-bg.png") center center / cover no-repeat;
  176. display: flex;
  177. justify-content: center;
  178. position: relative;
  179. }
  180. .form-text {
  181. display: flex;
  182. justify-content: space-between;
  183. min-width: 930px;
  184. padding-bottom: 35px;
  185. margin: 100px 100px 100px 340px;
  186. z-index: 1;
  187. }
  188. .form {
  189. position: relative;
  190. background: white;
  191. border-radius: 20px;
  192. box-shadow: 2px 2px 15px #4553c0;
  193. display: flex;
  194. flex-direction: column;
  195. align-content: center;
  196. width: 300px;
  197. }
  198. .form > p {
  199. color: #5363db;
  200. font-weight: bold;
  201. font-size: 25.64px;
  202. margin: 38px 0 29px 30px;
  203. padding-left: 4px;
  204. }
  205. .form > input,
  206. select {
  207. max-width: 230px;
  208. height: 50px;
  209. background: #f2f2f2;
  210. border-radius: 8px;
  211. margin-left: 30px;
  212. color: black;
  213. }
  214. .form > input:nth-child(2) {
  215. padding: 0 10px 8px;
  216. margin-bottom: 15px;
  217. }
  218. .form > input:nth-child(3) {
  219. padding: 0 10px 2px;
  220. margin-bottom: 17px;
  221. }
  222. .form > select {
  223. padding: 0 10px;
  224. margin-bottom: 15px;
  225. }
  226. .form option {
  227. color: black;
  228. }
  229. input:focus,
  230. select:focus {
  231. outline: none;
  232. }
  233. .form-button {
  234. background: #475bf1;
  235. border-radius: 8px;
  236. cursor: pointer;
  237. text-align: center;
  238. word-spacing: 2px;
  239. margin: 17px 0 0 95px;
  240. max-width: 170px;
  241. padding: 13px 0 15px;
  242. font-weight: bold;
  243. font-size: 16px;
  244. margin-bottom: 20px;
  245. transition: all 0.4s;
  246. }
  247. .form-button:hover{
  248. background: white;
  249. color: blue;
  250. box-shadow: 5px 5px 20px blue;
  251. transform: scale(1.1);
  252. font-size: 20px;
  253. }
  254. .text-on-fone {
  255. width: 570px;
  256. height: 265px;
  257. margin-top: 58px;
  258. padding-left: 35px;
  259. display: flex;
  260. flex-direction: column;
  261. }
  262. .text-on-fone > h1 {
  263. font-size: 48px;
  264. text-transform: uppercase;
  265. font-weight: bold;
  266. line-height: 1.46;
  267. letter-spacing: 0.8px;
  268. display: inline;
  269. }
  270. .text-on-fone > p {
  271. display: inline;
  272. font-size: 40px;
  273. letter-spacing: 2px;
  274. line-height: 0.88;
  275. word-spacing: 5px;
  276. font-family: "Freestyle Script";
  277. }
  278. /* TWO CONENT */
  279. .two-content {
  280. display: flex;
  281. align-items: center;
  282. justify-content: center;
  283. }
  284. .block3 {
  285. width: 100%;
  286. height: 825px;
  287. margin-bottom: 125px;
  288. margin-top: 50px;
  289. display: flex;
  290. align-items: center;
  291. justify-content: center;
  292. flex-direction: column;
  293. }
  294. .block3-text {
  295. width: 420px;
  296. padding-top: 42px;
  297. display: flex;
  298. flex-direction: column;
  299. align-items: center;
  300. }
  301. .block3-text > h1 {
  302. color: #5b6ceb;
  303. font-weight: bold;
  304. font-size: 30px;
  305. text-transform: uppercase;
  306. padding-top: 3px;
  307. letter-spacing: 0.4px;
  308. }
  309. .block3-text > p {
  310. color: #777777;
  311. font-size: 40.99px;
  312. padding-right: 5px;
  313. padding-top: 17px;
  314. word-spacing: 2px;
  315. letter-spacing: 1.4px;
  316. font-family: "Freestyle Script";
  317. }
  318. .block3-boxs {
  319. margin-top: 68px;
  320. display: flex;
  321. flex-wrap: wrap;
  322. justify-content: space-between;
  323. align-content: space-between;
  324. }
  325. .box-info {
  326. max-width: 570px;
  327. box-shadow: 3px 3px 15px #e4e4e4;
  328. margin-bottom: 20px;
  329. }
  330. .box-info > img {
  331. float: left;
  332. width: 50%;
  333. }
  334. .box-text {
  335. margin-left: 300px;
  336. width: 245px;
  337. }
  338. .box-text > h1 {
  339. font-size: 20px;
  340. font-weight: bold;
  341. text-transform: uppercase;
  342. padding-top: 47px;
  343. letter-spacing: 0.3px;
  344. color: #777777;
  345. }
  346. .box-text > blockquote {
  347. color: #6c6c6c;
  348. margin-top: 28px;
  349. line-height: 1.6;
  350. margin-top: 28px;
  351. margin-bottom: 10px;
  352. }
  353. .box-text > cite {
  354. color: #999999;
  355. }
  356. /* THREE CONTENT */
  357. .gallery {
  358. max-height: 700px;
  359. /* width: 100%; */
  360. display: flex;
  361. flex-wrap: wrap;
  362. border: none;
  363. }
  364. .gallery-img {
  365. width: 25%;
  366. }
  367. .gallery-img > img {
  368. width: 100%;
  369. }
  370. .gallery-hover {
  371. background: url(./img/hover_6.png) center center / 70px 70px no-repeat
  372. rgba(117, 132, 243, 0.8);
  373. position: relative;
  374. top: -100%;
  375. left: 0;
  376. width: 100%;
  377. height: 100%;
  378. opacity: 0;
  379. }
  380. /*
  381. .hover>img{
  382. width: 100%;
  383. }
  384. .hover{
  385. width: 25%;
  386. position: relative;
  387. } */
  388. .gallery-img:hover,
  389. .gallery-hover:hover {
  390. opacity: 1;
  391. cursor: pointer;
  392. }
  393. /* .hover::after {
  394. content: "";
  395. background: url(./img/hover_6.png) no-repeat;
  396. position: absolute;
  397. top: 146px;
  398. left: 211px;
  399. right: 0;
  400. bottom: 0;
  401. opacity: 0;
  402. }
  403. .hover::before {
  404. content: "";
  405. background: rgba(117, 132, 243, 0.8);
  406. position: absolute;
  407. width: 100%;
  408. height: 100%;
  409. opacity: 0;
  410. } */
  411. /* FOUR CONTENT */
  412. .four-content {
  413. display: flex;
  414. align-items: center;
  415. justify-content: center;
  416. }
  417. .about-us {
  418. padding: 124px 15px;
  419. display: flex;
  420. justify-content: space-between;
  421. }
  422. .about-us-text > h1 {
  423. font-size: 30px;
  424. font-weight: bold;
  425. color: #5b6ceb;
  426. text-transform: uppercase;
  427. padding-top: 20px;
  428. margin-bottom: 19px;
  429. word-spacing: 1px;
  430. letter-spacing: 0.1px;
  431. }
  432. .about-us-text > p {
  433. line-height: 1.7;
  434. color: #555555;
  435. }
  436. .yoga-gallery {
  437. max-width: 570px;
  438. margin-left: 181.62px;
  439. position: relative;
  440. }
  441. .yoga-gallery img {
  442. border-radius: 8px;
  443. }
  444. .yoga-gallery::after {
  445. content: "";
  446. background: rgb(196, 197, 201, 0.3);
  447. border-radius: 8px;
  448. position: absolute;
  449. top: 0;
  450. left: 0;
  451. right: 0;
  452. bottom: 0;
  453. }
  454. .slick-next {
  455. right: 12px;
  456. top: 45%;
  457. z-index: 1;
  458. }
  459. .slick-prev {
  460. left: -28px;
  461. top: 45%;
  462. z-index: 1;
  463. }
  464. .slick-prev::before,
  465. .slick-next::before {
  466. color: #ff4d4d;
  467. font-size: 60px;
  468. }
  469. /* FIVE CONTENT */
  470. .five-content {
  471. padding: 125px 0;
  472. display: flex;
  473. justify-content: center;
  474. flex-wrap: wrap;
  475. align-items: center;
  476. background: url("./img/feture-fone.png") center center / cover no-repeat;
  477. }
  478. .features {
  479. min-height: 550px;
  480. display: flex;
  481. flex-wrap: wrap;
  482. justify-content: space-between;
  483. align-content: space-between;
  484. }
  485. .features-boxs {
  486. width: 270px;
  487. height: 250px;
  488. display: flex;
  489. flex-direction: column;
  490. align-items: center;
  491. }
  492. .features-boxs > img {
  493. margin-bottom: 27px;
  494. }
  495. .features-boxs > h1 {
  496. font-size: 18px;
  497. font-weight: bold;
  498. text-align: center;
  499. line-height: 1.5;
  500. letter-spacing: 0.3px;
  501. padding-left: 1px;
  502. padding-bottom: 12px;
  503. flex-grow: 1;
  504. }
  505. .features-boxs > p {
  506. line-height: 1.7;
  507. text-align: center;
  508. font-size: 16px;
  509. padding-bottom: 7px;
  510. }
  511. /* SIX CONTENT */
  512. .six-content {
  513. height: 1050px;
  514. margin-top: 100px;
  515. background: url(./img/lotos-decoration.png) center center / cover no-repeat;
  516. }
  517. .boxs-prices {
  518. display: flex;
  519. justify-content: space-between;
  520. }
  521. .box-prices {
  522. /* width: 100%; */
  523. border-radius: 10px;
  524. display: flex;
  525. flex-direction: column;
  526. align-items: center;
  527. background: white;
  528. box-shadow: 2px 2px 15px #c7c7c7;
  529. }
  530. .box-prices h1 {
  531. border-radius: 10px 10px 0 0;
  532. background: #5b6ceb;
  533. font-weight: bold;
  534. font-size: 67px;
  535. padding: 41.5px 138px;
  536. }
  537. .box-prices h1::before {
  538. content: "$";
  539. font-size: 32px;
  540. position: relative;
  541. bottom: 10px;
  542. right: 20px;
  543. }
  544. .box-prices sub {
  545. font-size: 18px;
  546. font-weight: bold;
  547. position: relative;
  548. bottom: 63px;
  549. left: 90px;
  550. text-transform: uppercase;
  551. }
  552. .box-prices p {
  553. padding-top: 50px;
  554. font-size: 18px;
  555. color: #6a6a6a;
  556. text-transform: uppercase;
  557. }
  558. .box-prices p::after {
  559. content: "";
  560. width: 100px;
  561. height: 1px;
  562. background: #d7d7d7;
  563. display: block;
  564. position: relative;
  565. top: 130%;
  566. left: 25%;
  567. }
  568. .box-prices p + p + p::after {
  569. display: none;
  570. }
  571. .box-prices a {
  572. margin: 50px 0;
  573. border-radius: 20px;
  574. text-align: center;
  575. font-size: 18px;
  576. font-weight: bold;
  577. padding: 16px 48px;
  578. background: #5b6ceb;
  579. transition: transform 0.4s;
  580. }
  581. .box-prices a:hover{
  582. background: white;
  583. color: blue;
  584. box-shadow: 5px 5px 20px blue;
  585. transform: scale(1.1);
  586. font-size: 20px;
  587. }
  588. .boxs-bloquotes {
  589. margin-top: 110px;
  590. /* width: 1170px; */
  591. height: 250px;
  592. background: white;
  593. box-shadow: 2px 2px 15px #c7c7c7;
  594. border-radius: 10px;
  595. position: relative;
  596. }
  597. .bloquotes img {
  598. float: left;
  599. padding: 40px 90px 65px 60px;
  600. }
  601. .bloquotes blockquote {
  602. color: #777777;
  603. font-style: italic;
  604. padding-top: 50px;
  605. padding-bottom: 50px;
  606. max-width: 900px;
  607. position: relative;
  608. }
  609. .bloquotes blockquote::before {
  610. content: "\2033";
  611. height: 40px;
  612. position: absolute;
  613. color: #5b6ceb;
  614. font-size: 55px;
  615. transform: rotate(180deg);
  616. top: 36px;
  617. left: 250px;
  618. }
  619. .bloquotes blockquote::after {
  620. content: "\2033";
  621. height: 40px;
  622. position: absolute;
  623. color: #5b6ceb;
  624. font-size: 55px;
  625. top: 80px;
  626. right: -20px;
  627. }
  628. .bloquotes cite {
  629. color: #777777;
  630. }
  631. .bloquotes cite > p {
  632. font-size: 20px;
  633. color: #5b6ceb;
  634. font-weight: bold;
  635. padding-top: 5px;
  636. }
  637. .bloquotes cite::before {
  638. content: "";
  639. background: #d7d7d7;
  640. width: 2px;
  641. height: 75px;
  642. display: block;
  643. position: absolute;
  644. top: 100px;
  645. left: 255px;
  646. }
  647. /* MAIN */
  648. /* FOOTER */
  649. .footer-decoration {
  650. background: #5b6ceb;
  651. /* height: 225px; */
  652. max-height: 450px;
  653. /* margin-top: 100px; */
  654. padding: 100px 0;
  655. display: flex;
  656. align-items: center;
  657. }
  658. .decoration {
  659. /* min-width: 1100px; */
  660. /* padding: 112.5px 0; */
  661. display: flex;
  662. justify-content: space-between;
  663. }
  664. .about {
  665. max-width: 500px;
  666. /* height: 300px; */
  667. }
  668. .about > h1,
  669. .contacts > h1 {
  670. text-transform: uppercase;
  671. font-size: 18px;
  672. font-weight: bold;
  673. }
  674. .about > p {
  675. padding: 60px 0 70px;
  676. line-height: 1.5;
  677. }
  678. .icon {
  679. /* margin-left: 20px; */
  680. max-width: 170px;
  681. font-size: 23px;
  682. display: flex;
  683. justify-content: space-between;
  684. }
  685. .icon li:hover{
  686. transform: scale(1.3);
  687. border-radius: 50%;
  688. box-shadow: 5px 5px 20px white;
  689. }
  690. .contacts {
  691. max-width: 500px;
  692. margin-left: 100px;
  693. }
  694. .icon-left li {
  695. min-height: 160px;
  696. padding: 60px 0 0;
  697. display: flex;
  698. justify-content: space-between;
  699. align-content: space-between;
  700. flex-wrap: wrap;
  701. }
  702. .icon-planet{
  703. padding-right: 30px;
  704. }
  705. .footer-copyright {
  706. background: #5363d8;
  707. }
  708. .copyright {
  709. padding: 42px 0;
  710. display: flex;
  711. align-items: center;
  712. justify-content: center;
  713. }
  714. .copyright > p {
  715. opacity: 0.7;
  716. font-size: 16px;
  717. }
  718. @media (max-width: 1240px) {
  719. .form-text {
  720. max-width: 850px;
  721. height: 360px;
  722. margin: 30px;
  723. padding-left: 150px;
  724. }
  725. .form {
  726. width: 330px;
  727. }
  728. .form > p {
  729. margin: 20px 20px 20px;
  730. }
  731. .form > input,
  732. select {
  733. width: 190px;
  734. height: 45px;
  735. margin-left: 20px;
  736. }
  737. .form-button {
  738. margin: 5px 0 0 95px;
  739. width: 115px;
  740. }
  741. .text-on-fone {
  742. min-width: 480px;
  743. margin-top: 40px;
  744. margin-right: 70px;
  745. }
  746. .text-on-fone > h1 {
  747. font-size: 43px;
  748. }
  749. .text-on-fone > p {
  750. font-size: 37px;
  751. }
  752. .block3-boxs {
  753. display: flex;
  754. justify-content: space-around;
  755. }
  756. .block3{
  757. margin-top: -10px;
  758. margin-bottom: 40px;
  759. }
  760. .box-info > img {
  761. width: 45%;
  762. }
  763. .box-text {
  764. margin-left: 250px;
  765. }
  766. .box-text > h1 {
  767. padding-top: 18px;
  768. }
  769. .box-text > blockquote {
  770. margin-top: 20px;
  771. margin-bottom: 15px;
  772. }
  773. .gallery > img {
  774. width: 25%;
  775. height: 25%;
  776. }
  777. .about-us {
  778. width: 100%;
  779. margin-top: -70px;
  780. display: block;
  781. }
  782. .about-us-text {
  783. text-align: center;
  784. padding-bottom: 50px;
  785. }
  786. .yoga-gallery {
  787. margin-right: 180px;
  788. }
  789. .box-prices{
  790. /* margin: 0 30px; */
  791. }
  792. .box-prices h1 {
  793. padding: 30px 110px;
  794. }
  795. .box-prices sub {
  796. position: relative;
  797. bottom: 52px;
  798. }
  799. .box-prices p {
  800. padding-top: 45px;
  801. }
  802. .box-prices a {
  803. margin: 45px 0;
  804. }
  805. .six-content {
  806. height: 950px;
  807. }
  808. .five-content {
  809. padding: 80px 0;
  810. }
  811. .features-boxs {
  812. margin-bottom: 20px;
  813. }
  814. }
  815. @media (max-width: 1060px){
  816. .form-text {
  817. height: 360px;
  818. margin: 30px 0;
  819. padding-left: 150px;
  820. }
  821. /* .form-text {
  822. max-width: 850px;
  823. height: 360px;
  824. margin: 30px;
  825. padding-left: 150px;
  826. } */
  827. .text-on-fone {
  828. width: 100px;
  829. /* max-width: 100px; */
  830. margin-top: 40px;
  831. padding-right: 0;
  832. }
  833. .text-on-fone > h1 {
  834. font-size: 37px;
  835. width: 100%;
  836. }
  837. .text-on-fone > p {
  838. font-size: 35px;
  839. }
  840. .box-info{
  841. margin: 10px 10px;
  842. }
  843. .box-info > img {
  844. width: 40%;
  845. }
  846. .box-text {
  847. margin-left: 200px;
  848. }
  849. .box-text > h1 {
  850. padding-top: 15px;
  851. font-size: 18px;
  852. }
  853. .box-text > blockquote {
  854. margin-top: 10px;
  855. font-size: 13px;
  856. }
  857. .box-text>cite{
  858. font-size: 13px;
  859. }
  860. .box-prices h1 {
  861. font-size: 60px;
  862. padding: 20px 90px;
  863. }
  864. .box-prices sub {
  865. position: relative;
  866. bottom: 40px;
  867. left: 80px;
  868. font-size: 16px;
  869. }
  870. .box-prices a {
  871. margin: 35px 0;
  872. }
  873. .boxs-bloquotes {
  874. /* margin-top: 110px; */
  875. /* width: 1170px; */
  876. height: 370px;
  877. /* background: white;
  878. box-shadow: 2px 2px 15px #c7c7c7;
  879. border-radius: 10px; */
  880. position: relative;
  881. }
  882. .bloquotes{
  883. display: flex;
  884. flex-direction: column;
  885. align-items: center;
  886. }
  887. .bloquotes img {
  888. width: 290px;
  889. height: 250px;
  890. margin-top: -20px;
  891. margin-bottom: -30px;
  892. }
  893. .bloquotes blockquote {
  894. padding-top: 0;
  895. padding-bottom: 30px;
  896. max-width: 500px;
  897. font-size: 16px;
  898. }
  899. .bloquotes blockquote::before {
  900. top: -20px;
  901. left: -30px;
  902. }
  903. .bloquotes blockquote::after {
  904. top: 60px;
  905. right: -20px;
  906. }
  907. .bloquotes cite{
  908. margin-left: -350px;
  909. }
  910. .bloquotes cite::before {
  911. display: none;
  912. }
  913. }