style.css 10 KB

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