style.css 7.0 KB

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