style.css 7.7 KB

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