style.css 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610
  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. }
  36. .icon-facebook:before {
  37. content: "\e902";
  38. }
  39. .icon-twitter:before {
  40. content: "\e900";
  41. }
  42. .icon-planet:before {
  43. content: "\e906";
  44. font-size: 20px;
  45. }
  46. .icon-instagram:before {
  47. content: "\ea92";
  48. }
  49. .icon-pinterest:before {
  50. content: "\ead2";
  51. }
  52. .icon-mail:before {
  53. content: "\e905";
  54. font-size: 20px;
  55. }
  56. .icon-map:before {
  57. content: "\e904";
  58. font-size: 20px;
  59. }
  60. .icon-google:before {
  61. content: "\e903";
  62. }
  63. /* FONTS ICON */
  64. * {
  65. font-family: "Open Sans", sans-serif;
  66. font-size: 14px;
  67. border: none;
  68. color: #ffffff;
  69. }
  70. body {
  71. font-family: "Open Sans", sans-serif;
  72. font-size: 14px;
  73. color: #ffffff;
  74. }
  75. a {
  76. text-decoration: none;
  77. }
  78. /* THE ALL SITE */
  79. .wrapper {
  80. display: flex;
  81. flex-direction: column;
  82. /* max-width: 100%; */
  83. width: 1920px;
  84. /* width: 100%; */
  85. /* max-width: 1920px; */
  86. min-height: 100vh;
  87. }
  88. .content {
  89. max-width: 1200px;
  90. padding: 0 15px;
  91. margin: 0 auto;
  92. }
  93. /* THE ALL SITE */
  94. /* HEADER */
  95. .header {
  96. padding: 15px 0;
  97. display: flex;
  98. justify-content: center;
  99. align-items: center;
  100. }
  101. .content-head {
  102. width: 820px;
  103. display: flex;
  104. justify-content: space-between;
  105. align-items: center;
  106. margin-right: 71px;
  107. }
  108. .nav-right > .menu-box {
  109. display: flex;
  110. justify-content: flex-end;
  111. }
  112. .menu-box > li {
  113. display: inline;
  114. }
  115. .menu-box > li > a {
  116. color: #555555;
  117. padding: 0 13px;
  118. font-weight: bold;
  119. }
  120. .link {
  121. position: relative;
  122. }
  123. .menu-box .active {
  124. color: #5363db;
  125. }
  126. .active:after {
  127. content: "";
  128. display: block;
  129. width: 30px;
  130. height: 1px;
  131. background: #5363db;
  132. position: absolute;
  133. top: 100%;
  134. left: 32%;
  135. margin-top: 1px;
  136. }
  137. /* HEADER */
  138. /* MAIN */
  139. .main {
  140. flex-grow: 1;
  141. }
  142. .first-content {
  143. background: url("../img/slider-bg.png") no-repeat;
  144. background-size: 100%;
  145. width: 100%;
  146. height: 100vh;
  147. display: flex;
  148. justify-content: center;
  149. position: relative;
  150. }
  151. .form-text {
  152. display: flex;
  153. justify-content: space-between;
  154. min-width: 930px;
  155. padding-bottom: 35px;
  156. margin: 100px;
  157. margin-left: 340px;
  158. z-index: 1;
  159. }
  160. .form {
  161. position: relative;
  162. background: white;
  163. border-radius: 20px;
  164. box-shadow: 2px 2px 15px #4553c0;
  165. display: flex;
  166. flex-direction: column;
  167. align-content: center;
  168. min-width: 300px;
  169. }
  170. .form > p {
  171. color: #5363db;
  172. font-weight: bold;
  173. font-size: 25.64px;
  174. margin: 38px 0 29px 30px;
  175. padding-left: 4px;
  176. }
  177. .form > input,
  178. select {
  179. max-width: 230px;
  180. height: 50px;
  181. background: #f2f2f2;
  182. border-radius: 8px;
  183. margin-left: 30px;
  184. color: black;
  185. }
  186. .form > input:nth-child(2) {
  187. padding: 0 10px 8px;
  188. margin-bottom: 15px;
  189. }
  190. .form > input:nth-child(3) {
  191. padding: 0 10px 2px;
  192. margin-bottom: 17px;
  193. }
  194. .form > select {
  195. padding: 0 10px;
  196. margin-bottom: 15px;
  197. }
  198. .form-button {
  199. background: #475bf1;
  200. border-radius: 8px;
  201. cursor: pointer;
  202. text-align: center;
  203. word-spacing: 2px;
  204. margin: 17px 0 0 95px;
  205. max-width: 170px;
  206. padding: 13px 0 15px;
  207. font-weight: bold;
  208. font-size: 16px;
  209. }
  210. .text-on-fone {
  211. width: 570px;
  212. height: 265px;
  213. margin-top: 58px;
  214. padding-left: 35px;
  215. display: flex;
  216. flex-direction: column;
  217. }
  218. .text-on-fone > h1 {
  219. font-size: 48px;
  220. text-transform: uppercase;
  221. font-weight: bold;
  222. line-height: 1.46;
  223. letter-spacing: 0.8px;
  224. display: inline;
  225. }
  226. .text-on-fone > p {
  227. display: inline;
  228. font-size: 40px;
  229. letter-spacing: 2px;
  230. line-height: 0.88;
  231. word-spacing: 5px;
  232. font-family: "Freestyle Script";
  233. }
  234. /* TWO CONENT */
  235. .two-content {
  236. display: flex;
  237. align-items: center;
  238. justify-content: center;
  239. }
  240. .block3 {
  241. height: 825px;
  242. margin-bottom: 125px;
  243. margin-top: 50px;
  244. display: flex;
  245. align-items: center;
  246. justify-content: center;
  247. flex-direction: column;
  248. }
  249. .block3-text {
  250. width: 420px;
  251. padding-top: 42px;
  252. display: flex;
  253. flex-direction: column;
  254. align-items: center;
  255. }
  256. .block3-text > h1 {
  257. color: #5b6ceb;
  258. font-weight: bold;
  259. font-size: 30px;
  260. text-transform: uppercase;
  261. padding-top: 3px;
  262. letter-spacing: 0.4px;
  263. }
  264. .block3-text > p {
  265. color: #777777;
  266. font-size: 40.99px;
  267. padding-right: 5px;
  268. padding-top: 17px;
  269. word-spacing: 2px;
  270. letter-spacing: 1.4px;
  271. font-family: "Freestyle Script";
  272. }
  273. .block3-boxs {
  274. min-height: 625px;
  275. margin-top: 68px;
  276. display: flex;
  277. flex-wrap: wrap;
  278. justify-content: space-between;
  279. align-content: space-between;
  280. }
  281. .box-info {
  282. width: 570px;
  283. box-shadow: 3px 3px 15px #e4e4e4;
  284. }
  285. .box-info > img {
  286. float: left;
  287. }
  288. .box-text {
  289. margin-left: 300px;
  290. width: 245px;
  291. }
  292. .box-text > h1 {
  293. font-size: 20px;
  294. font-weight: bold;
  295. text-transform: uppercase;
  296. padding-top: 47px;
  297. letter-spacing: 0.3px;
  298. color: #777777;
  299. }
  300. .box-text > blockquote {
  301. color: #6c6c6c;
  302. margin-top: 28px;
  303. line-height: 1.6;
  304. margin-top: 28px;
  305. margin-bottom: 10px;
  306. }
  307. .box-text > cite {
  308. color: #999999;
  309. }
  310. /* THREE CONTENT */
  311. .gallery {
  312. max-height: 700px;
  313. width: 100%;
  314. display: flex;
  315. flex-wrap: wrap;
  316. border: none;
  317. }
  318. .hover {
  319. background: no-repeat;
  320. position: relative;
  321. }
  322. .hover::after {
  323. content: "";
  324. background: url(./img/hover_6.png) no-repeat;
  325. position: absolute;
  326. top: 146px;
  327. left: 211px;
  328. right: 0;
  329. bottom: 0;
  330. }
  331. .hover::before {
  332. content: "";
  333. background: rgba(117, 132, 243, 0.8);
  334. position: absolute;
  335. top: 0;
  336. left: 0;
  337. right: 0;
  338. bottom: 0;
  339. }
  340. /* FOUR CONTENT */
  341. .four-content {
  342. display: flex;
  343. align-items: center;
  344. justify-content: center;
  345. }
  346. .about-us {
  347. padding: 124px 15px;
  348. display: flex;
  349. justify-content: space-between;
  350. }
  351. .about-us-text > h1 {
  352. font-size: 30px;
  353. font-weight: bold;
  354. color: #5b6ceb;
  355. text-transform: uppercase;
  356. padding-top: 20px;
  357. margin-bottom: 19px;
  358. word-spacing: 1px;
  359. letter-spacing: 0.1px;
  360. }
  361. .about-us-text > p {
  362. line-height: 1.7;
  363. color: #555555;
  364. }
  365. .yoga-gallery {
  366. max-width: 570px;
  367. margin-left: 181.62px;
  368. position: relative;
  369. }
  370. .yoga-gallery img {
  371. border-radius: 8px;
  372. }
  373. .yoga-gallery::after {
  374. content: "";
  375. background: rgb(196, 197, 201, 0.3);
  376. border-radius: 8px;
  377. position: absolute;
  378. top: 0;
  379. left: 0;
  380. right: 0;
  381. bottom: 0;
  382. }
  383. .slick-next {
  384. right: 12px;
  385. top: 45%;
  386. z-index: 1;
  387. }
  388. .slick-prev {
  389. left: -28px;
  390. top: 45%;
  391. z-index: 1;
  392. }
  393. .slick-prev::before,
  394. .slick-next::before {
  395. color: #ff4d4d;
  396. font-size: 60px;
  397. }
  398. /* FIVE CONTENT */
  399. .five-content {
  400. padding: 125px 0;
  401. display: flex;
  402. justify-content: center;
  403. flex-wrap: wrap;
  404. align-items: center;
  405. background: url("../img/feture-fone.png") no-repeat;
  406. background-size: 100%;
  407. width: 100%;
  408. }
  409. .features {
  410. min-height: 550px;
  411. display: flex;
  412. flex-wrap: wrap;
  413. justify-content: space-between;
  414. align-content: space-between;
  415. }
  416. .features-boxs {
  417. width: 270px;
  418. height: 250px;
  419. display: flex;
  420. flex-direction: column;
  421. align-items: center;
  422. }
  423. .features-boxs > img {
  424. margin-bottom: 27px;
  425. }
  426. .features-boxs > h1 {
  427. font-size: 18px;
  428. font-weight: bold;
  429. text-align: center;
  430. line-height: 1.5;
  431. letter-spacing: 0.3px;
  432. padding-left: 1px;
  433. padding-bottom: 12px;
  434. flex-grow: 1;
  435. }
  436. .features-boxs > p {
  437. line-height: 1.7;
  438. text-align: center;
  439. font-size: 16px;
  440. padding-bottom: 7px;
  441. }
  442. /* MAIN */
  443. /* FOOTER */
  444. .footer-decoration {
  445. background: #5b6ceb;
  446. /* height: 225px; */
  447. padding: 75px 0;
  448. display: flex;
  449. align-items: center;
  450. }
  451. .decoration {
  452. padding: 112.5px 0;
  453. display: flex;
  454. justify-content: space-between;
  455. }
  456. .about {
  457. width: 500px;
  458. /* height: 300px; */
  459. }
  460. .about > h1,
  461. .contacts > h1 {
  462. text-transform: uppercase;
  463. font-size: 18px;
  464. font-weight: bold;
  465. }
  466. .about > p{
  467. padding: 40px 0 80px;
  468. }
  469. .icon {
  470. /* margin-left: 20px; */
  471. max-width: 170px;
  472. font-size: 23px;
  473. display: flex;
  474. justify-content: space-between;
  475. }
  476. .connection {
  477. display: flex;
  478. }
  479. .footer-copyright {
  480. background: #5363d8;
  481. }
  482. .copyright {
  483. padding: 50px 0;
  484. display: flex;
  485. align-items: center;
  486. justify-content: center;
  487. }
  488. .copyright > p {
  489. opacity: 0.7;
  490. font-size: 16px;
  491. }
  492. /*
  493. @media (max-width: 1365px) {
  494. .form-text {
  495. width: 850px;
  496. height: 320px;
  497. margin: 30px;
  498. margin-left: 250px;
  499. }
  500. .form {
  501. width: 240px;
  502. }
  503. .form > p {
  504. margin: 20px 20px 20px;
  505. }
  506. .form > input,
  507. select {
  508. width: 190px;
  509. height: 45px;
  510. margin-left: 20px;
  511. }
  512. .form-button {
  513. margin: 5px 0 0 95px;
  514. width: 115px;
  515. }
  516. .text-on-fone {
  517. margin-top: 40px;
  518. }
  519. .text-on-fone > h1 {
  520. font-size: 43px;
  521. }
  522. .text-on-fone > p {
  523. font-size: 37px;
  524. }
  525. .gallery > img {
  526. width: 25%;
  527. }
  528. .about-us {
  529. width: 1100px;
  530. }
  531. } */