style.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  1. * {
  2. box-sizing: border-box;
  3. }
  4. body {
  5. margin: 0;
  6. }
  7. a {
  8. text-decoration: none;
  9. }
  10. li {
  11. list-style: none;
  12. }
  13. .header {
  14. max-width: 1920px;
  15. }
  16. .header-container {
  17. width: 100%;
  18. max-height: 124px;
  19. }
  20. .header-top {
  21. width: 100%;
  22. height: 44px;
  23. display: flex;
  24. justify-content: space-around;
  25. background-color: #000000;
  26. }
  27. .header-top a {
  28. font-family: PT Sans;
  29. font-size: 12px;
  30. font-style: normal;
  31. font-weight: 400;
  32. line-height: 16px;
  33. color: rgba(150, 150, 150, 1);
  34. }
  35. .header-top__contacts {
  36. display: flex;
  37. justify-content: center;
  38. align-items: center;
  39. }
  40. .header-top__contacts svg {
  41. margin-right: 16px;
  42. }
  43. .header-top__contacts__list {
  44. display: flex;
  45. justify-content: space-between;
  46. margin: 0;
  47. padding: 0;
  48. align-items: center;
  49. }
  50. .header-top__contacts__list li {
  51. margin-right: 12.5px;
  52. padding-left: 12.5px;
  53. border-left: 1px solid rgba(150, 150, 150, 1);
  54. }
  55. .header-top__contacts__list li:first-child {
  56. border-left: none;
  57. padding-left: 0;
  58. }
  59. .header-top__contacts__list li:last-child {
  60. margin-right: 0px;
  61. }
  62. .header-top__login {
  63. display: flex;
  64. justify-content: center;
  65. align-items: center;
  66. }
  67. .header-top__login a {
  68. margin-left: 15px;
  69. }
  70. .header-top__login span {
  71. display: block;
  72. width: 1px;
  73. height: 16px;
  74. background-color: rgba(150, 150, 150, 1);
  75. margin-left: 15px;
  76. transform: rotate(30deg);
  77. }
  78. .header-bottom {
  79. padding: 0% 10%;
  80. width: 100%;
  81. height: 80px;
  82. background: #0F0F0F;
  83. display: flex;
  84. justify-content: space-between;
  85. }
  86. .header-bottom__logo {
  87. display: flex;
  88. justify-content: center;
  89. align-items: center;
  90. /* width: 50%; */
  91. padding-right: 150px;
  92. }
  93. .header-bottom__nav {
  94. /* width: 50%; */
  95. display: flex;
  96. justify-content: flex-start;
  97. align-items: center;
  98. padding-left: 11px;
  99. }
  100. .header-bottom__nav svg {
  101. margin-left: 61px;
  102. }
  103. .header-bottom__nav svg:last-child {
  104. margin-left: 44px;
  105. }
  106. .header-bottom__nav__list {
  107. display: flex;
  108. justify-content: flex-start;
  109. align-items: center;
  110. margin: 0;
  111. padding: 0;
  112. }
  113. .header-bottom__nav__list li{
  114. padding: 30px 20px;
  115. margin: 0;
  116. }
  117. .header-bottom__nav__list a {
  118. color: rgba(150, 150, 150, 1);
  119. }
  120. .header-bottom__nav__list li:hover {
  121. background-color: #1F1F1F;
  122. cursor: pointer;
  123. }
  124. .header-bottom__nav__list li:hover a {
  125. color: #fff;
  126. }
  127. .header_menu {
  128. display: none;
  129. }
  130. @media screen and (max-width: 1050px) {
  131. .header-bottom__nav__list {
  132. font-size: 12px;
  133. display: flex;
  134. flex-direction: column;
  135. }
  136. .header-bottom__nav__list li {
  137. padding: 2px;
  138. }
  139. }
  140. @media screen and (max-width: 700px) {
  141. .header-top__contacts__list li:last-of-type {
  142. display: none;
  143. }
  144. }
  145. @media screen and (max-width: 650px) {
  146. .header-bottom__logo {
  147. padding: 0%;
  148. }
  149. .header-top__contacts__list li:nth-last-child(2) {
  150. display: none;
  151. }
  152. .header-bottom__nav__list {
  153. display: none;
  154. }
  155. }
  156. .main {
  157. max-width: 1920px;
  158. }
  159. .main-title {
  160. width: 100%;
  161. height: 810px;
  162. display: flex;
  163. flex-direction: column;
  164. align-items: center;
  165. justify-content: center;
  166. background-image: url(../img/Rectangle\ 3.png);
  167. }
  168. .main-title__name {
  169. width: 320px;
  170. height: 320px;
  171. border: 4px solid #FFFFFF;
  172. display: flex;
  173. flex-direction: column;
  174. justify-content: center;
  175. align-items: center;
  176. margin-bottom: 80px;
  177. }
  178. .main-title__name p {
  179. font-family: PT Sans;
  180. font-size: 26px;
  181. font-style: normal;
  182. font-weight: 400;
  183. line-height: 28px;
  184. color: rgba(255, 255, 255, 1);
  185. margin: 0;
  186. }
  187. .main-title__name svg {
  188. margin-bottom: 15px;
  189. }
  190. .main-title__text {
  191. width: 730px;
  192. height: 96px;
  193. justify-content: center;
  194. align-items: center;
  195. color: rgba(255, 255, 255, 1);
  196. font-family: PT Sans;
  197. font-size: 16px;
  198. font-style: normal;
  199. font-weight: 400;
  200. line-height: 24px;
  201. }
  202. .main-collections {
  203. width: 100%;
  204. height: 1330px;
  205. }
  206. .main-collections-top {
  207. height: 730px;
  208. width: 100%;
  209. display: flex;
  210. justify-content: space-between;
  211. }
  212. .main-collections-top__products {
  213. height: 100%;
  214. width: 55%;
  215. display: flex;
  216. flex-direction: column;
  217. justify-content: center;
  218. align-items: center;
  219. background: #000000;
  220. }
  221. .main-collections-top__img {
  222. height: 100%;
  223. width: 45%;
  224. display: flex;
  225. flex-direction: column;
  226. justify-content: center;
  227. align-items: center;
  228. background-image: url(../img/Rectangle\ 8.png);
  229. }
  230. .main-collections-top__products__inner {
  231. height: 540px;
  232. width: 100%;
  233. display: flex;
  234. justify-content: space-around;
  235. align-items: center;
  236. padding: 0 60px;
  237. }
  238. .inner-block {
  239. height: 405px;
  240. width: 260px;
  241. }
  242. .background__img {
  243. width: 260px;
  244. height: 325px;
  245. display: flex;
  246. justify-content: center;
  247. align-items: center;
  248. background-color: #191B1C;
  249. }
  250. .background__img__text {
  251. width: 260px;
  252. height: 80px;
  253. background-color: #000000;
  254. }
  255. .main-collections-top__products__name {
  256. font-family: Playfair Display;
  257. font-size: 36px;
  258. font-style: normal;
  259. font-weight: 700;
  260. line-height: 48px;
  261. color: rgba(255, 255, 255, 1);
  262. margin-bottom: 50px;
  263. }
  264. .name {
  265. font-family: Playfair Display;
  266. font-size: 18px;
  267. font-style: normal;
  268. font-weight: 400;
  269. line-height: 24px;
  270. color: rgba(255, 255, 255, 1);
  271. }
  272. .cost {
  273. font-family: Playfair Display;
  274. font-size: 16px;
  275. font-style: normal;
  276. font-weight: 700;
  277. line-height: 21px;
  278. color: white;
  279. }
  280. .main-collections-bottom {
  281. height: 600px;
  282. width: 100%;
  283. display: flex;
  284. justify-content: space-between;
  285. }
  286. .main-collections-bottom__img {
  287. height: 100%;
  288. width: 45%;
  289. background-image: url(../img/Rectangle\ 9.png);
  290. }
  291. .main-collections-bottom__collection {
  292. height: 100%;
  293. width: 55%;
  294. display: flex;
  295. flex-direction: column;
  296. justify-content: center;
  297. align-items: center;
  298. background: #000000;
  299. }
  300. .main-collections-bottom__collection svg{
  301. margin-bottom: 40px;
  302. }
  303. .bottom-text {
  304. font-family: PT Sans;
  305. font-size: 14px;
  306. font-style: normal;
  307. font-weight: 400;
  308. line-height: 21px;
  309. color: rgba(255, 255, 255, 1);
  310. width: 471px;
  311. height: 173px;
  312. margin-bottom: 60px;
  313. }
  314. .main-collections-bottom__collection__name {
  315. font-family: Playfair Display;
  316. font-size: 36px;
  317. font-style: normal;
  318. font-weight: 400;
  319. line-height: 48px;
  320. color: #fff;
  321. margin-bottom: 40px;
  322. }
  323. .collection-btn {
  324. width: 311px;
  325. height: 47px;
  326. border: 1px solid #FFFFFF;;
  327. background: rgba(0, 0, 0, 1);
  328. color: #fff;
  329. font-family: PT Sans;
  330. font-size: 18px;
  331. font-style: normal;
  332. font-weight: 400;
  333. line-height: 23px;
  334. letter-spacing: 0,1em;
  335. cursor: pointer;
  336. }
  337. .collection-btn:hover {
  338. cursor: pointer;
  339. background-color: #1F1F1F;
  340. }
  341. .main-new-arrivals {
  342. width: 100%;
  343. height: 1289px;
  344. display: flex;
  345. flex-direction: column;
  346. justify-content: center;
  347. align-items: center;
  348. background: #000000;
  349. }
  350. .main-new-arrivals__name {
  351. font-family: Playfair Display;
  352. font-size: 36px;
  353. font-style: normal;
  354. font-weight: 700;
  355. line-height: 48px;
  356. letter-spacing: 0em;
  357. color: rgba(255, 255, 255, 1);
  358. margin-bottom: 40px;
  359. }
  360. .main-new-arrivals svg {
  361. margin-bottom: 81px;
  362. }
  363. .main-new-arrivals__produscts {
  364. width: 60%;
  365. display: flex;
  366. flex-wrap: wrap;
  367. justify-content: space-between;
  368. align-items: flex-start;
  369. }
  370. .main-new-arrivals__produscts>div:nth-child(-n+4) {
  371. margin-bottom: 40px;
  372. }
  373. .main-our-brands {
  374. width: 1005;
  375. height: 302px;
  376. background: #0F0F0F;
  377. display: flex;
  378. flex-direction: column;
  379. justify-content: center;
  380. align-items: center;
  381. }
  382. .main-our-brands>svg {
  383. margin-bottom: 40px;
  384. }
  385. .main-our-brands__name {
  386. font-family: Playfair Display;
  387. font-size: 36px;
  388. font-style: normal;
  389. font-weight: 700;
  390. line-height: 48px;
  391. letter-spacing: 0em;
  392. color: rgba(255, 255, 255, 1);
  393. margin-bottom: 40px;
  394. }
  395. .brands-icon {
  396. width: 60%;
  397. display: flex;
  398. justify-content: space-between;
  399. }
  400. .footer-container {
  401. width: 100%;
  402. height: 450px;
  403. background-image: url(../img/Rectangle\ 15.png);
  404. display: flex;
  405. justify-content: center;
  406. flex-direction: column;
  407. align-items: center;
  408. }
  409. .footer-about {
  410. width: 60%;
  411. height: 400px;
  412. display: flex;
  413. justify-content: space-between;
  414. }
  415. .footer-about__about {
  416. width: 33.33333%;
  417. height: 100%;
  418. justify-content: center;
  419. display: flex;
  420. flex-direction: column;
  421. }
  422. .footer-about__about__name {
  423. font-family: Playfair Display;
  424. font-size: 24px;
  425. font-style: normal;
  426. font-weight: 400;
  427. line-height: 32px;
  428. letter-spacing: 0em;
  429. color: #fff;
  430. margin-bottom: 40px;
  431. }
  432. .footer-about__about p {
  433. font-family: PT Sans;
  434. font-size: 14px;
  435. font-style: normal;
  436. font-weight: 400;
  437. line-height: 21px;
  438. letter-spacing: 0em;
  439. color: #fff;
  440. margin: 0;
  441. }
  442. .footer-about__category {
  443. width: 33.33333%;
  444. height: 100%;
  445. justify-content: center;
  446. display: flex;
  447. flex-direction: column;
  448. }
  449. .footer-about__category__name {
  450. font-family: Playfair Display;
  451. font-size: 24px;
  452. font-style: normal;
  453. font-weight: 400;
  454. line-height: 32px;
  455. letter-spacing: 0em;
  456. color: #fff;
  457. margin-bottom: 40px;
  458. }
  459. .footer-about__category__buttons {
  460. display: flex;
  461. flex-wrap: wrap;
  462. }
  463. .footer-about__mailing {
  464. width: 33.33333%;
  465. height: 100%;
  466. justify-content: center;
  467. display: flex;
  468. flex-direction: column;
  469. }
  470. .btn {
  471. padding: 10px 20px;
  472. margin-bottom: 20px;
  473. margin-right: 20px;
  474. background: #0F0F0F;
  475. color: rgba(208, 208, 208, 1);
  476. border: none;
  477. cursor: pointer;
  478. }
  479. .btn:hover {
  480. cursor: pointer;
  481. background: #1F1F1F;
  482. color: #fff;
  483. }
  484. .footer-about__mailing__name {
  485. font-family: Playfair Display;
  486. font-size: 24px;
  487. font-style: normal;
  488. font-weight: 400;
  489. line-height: 32px;
  490. letter-spacing: 0em;
  491. color: #fff;
  492. margin-bottom: 40px;
  493. }
  494. .footer-about__mailing p {
  495. font-family: PT Sans;
  496. font-size: 14px;
  497. font-style: normal;
  498. font-weight: 400;
  499. line-height: 21px;
  500. letter-spacing: 0em;
  501. color: #fff;
  502. margin: 0 0 37px 0;
  503. }
  504. .sign-up {
  505. width: 100%;
  506. height: 42px;
  507. display: flex;
  508. }
  509. .inner-btn {
  510. width: 60%;
  511. height: 100%;
  512. background: rgba(255, 255, 255, 0.4);
  513. color: rgba(150, 150, 150, 1);
  514. display: flex;
  515. justify-content: flex-start;
  516. align-items: center;
  517. padding-left: 15px;
  518. cursor: text;
  519. }
  520. .sign-btn {
  521. width: 40%;
  522. height: 100%;
  523. background: #0F0F0F;
  524. color: rgba(255, 255, 255, 1);
  525. border: none;
  526. cursor: pointer;
  527. }
  528. .sign-btn:hover {
  529. background-color: #1F1F1F;
  530. }
  531. .footer-about__copyright {
  532. height: 60px;
  533. width: 100%;
  534. background: rgba(15, 15, 15, 1);
  535. display: flex;
  536. justify-content: space-between;
  537. }
  538. .copyright {
  539. width: 50%;
  540. height: 100%;
  541. display: flex;
  542. justify-content: center;
  543. align-items: center;
  544. color: #fff;
  545. }
  546. .made-by {
  547. width: 50%;
  548. height: 100%;
  549. display: flex;
  550. justify-content: center;
  551. align-items: center;
  552. color: #fff;
  553. }