style.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565
  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. display: flex;
  192. max-width: 730px;
  193. height: 96px;
  194. justify-content: center;
  195. align-items: center;
  196. color: rgba(255, 255, 255, 1);
  197. font-family: PT Sans;
  198. font-size: 16px;
  199. font-style: normal;
  200. font-weight: 400;
  201. line-height: 24px;
  202. }
  203. .main-collections {
  204. width: 100%;
  205. height: 1330px;
  206. }
  207. .main-collections-top {
  208. height: 730px;
  209. width: 100%;
  210. display: flex;
  211. justify-content: space-between;
  212. }
  213. .main-collections-top__products {
  214. height: 100%;
  215. width: 55%;
  216. display: flex;
  217. flex-direction: column;
  218. justify-content: center;
  219. align-items: center;
  220. background: #000000;
  221. }
  222. .main-collections-top__img {
  223. height: 100%;
  224. width: 45%;
  225. display: flex;
  226. flex-direction: column;
  227. justify-content: center;
  228. align-items: center;
  229. background-image: url(../img/Rectangle\ 8.png);
  230. }
  231. .main-collections-top__products__inner {
  232. height: 540px;
  233. width: 100%;
  234. display: flex;
  235. justify-content: space-around;
  236. align-items: center;
  237. padding: 0 60px;
  238. }
  239. .inner-block {
  240. height: 405px;
  241. width: 260px;
  242. }
  243. .background__img {
  244. width: 260px;
  245. height: 325px;
  246. display: flex;
  247. justify-content: center;
  248. align-items: center;
  249. background-color: #191B1C;
  250. }
  251. .background__img__text {
  252. width: 260px;
  253. height: 80px;
  254. background-color: #000000;
  255. }
  256. .main-collections-top__products__name {
  257. font-family: Playfair Display;
  258. font-size: 36px;
  259. font-style: normal;
  260. font-weight: 700;
  261. line-height: 48px;
  262. color: rgba(255, 255, 255, 1);
  263. margin-bottom: 50px;
  264. }
  265. .name {
  266. font-family: Playfair Display;
  267. font-size: 18px;
  268. font-style: normal;
  269. font-weight: 400;
  270. line-height: 24px;
  271. color: rgba(255, 255, 255, 1);
  272. }
  273. .cost {
  274. font-family: Playfair Display;
  275. font-size: 16px;
  276. font-style: normal;
  277. font-weight: 700;
  278. line-height: 21px;
  279. color: white;
  280. }
  281. .main-collections-bottom {
  282. height: 600px;
  283. width: 100%;
  284. display: flex;
  285. justify-content: space-between;
  286. }
  287. .main-collections-bottom__img {
  288. height: 100%;
  289. width: 45%;
  290. background-image: url(../img/Rectangle\ 9.png);
  291. }
  292. .main-collections-bottom__collection {
  293. height: 100%;
  294. width: 55%;
  295. display: flex;
  296. flex-direction: column;
  297. justify-content: center;
  298. align-items: center;
  299. background: #000000;
  300. }
  301. .main-collections-bottom__collection svg{
  302. margin-bottom: 40px;
  303. }
  304. .bottom-text {
  305. font-family: PT Sans;
  306. font-size: 14px;
  307. font-style: normal;
  308. font-weight: 400;
  309. line-height: 21px;
  310. color: rgba(255, 255, 255, 1);
  311. width: 471px;
  312. height: 173px;
  313. margin-bottom: 60px;
  314. }
  315. .main-collections-bottom__collection__name {
  316. font-family: Playfair Display;
  317. font-size: 36px;
  318. font-style: normal;
  319. font-weight: 400;
  320. line-height: 48px;
  321. color: #fff;
  322. margin-bottom: 40px;
  323. }
  324. .collection-btn {
  325. width: 311px;
  326. height: 47px;
  327. border: 1px solid #FFFFFF;;
  328. background: rgba(0, 0, 0, 1);
  329. color: #fff;
  330. font-family: PT Sans;
  331. font-size: 18px;
  332. font-style: normal;
  333. font-weight: 400;
  334. line-height: 23px;
  335. letter-spacing: 0,1em;
  336. cursor: pointer;
  337. }
  338. .collection-btn:hover {
  339. cursor: pointer;
  340. background-color: #1F1F1F;
  341. }
  342. .main-new-arrivals {
  343. width: 100%;
  344. height: 1289px;
  345. display: flex;
  346. flex-direction: column;
  347. justify-content: center;
  348. align-items: center;
  349. background: #000000;
  350. }
  351. .main-new-arrivals__name {
  352. font-family: Playfair Display;
  353. font-size: 36px;
  354. font-style: normal;
  355. font-weight: 700;
  356. line-height: 48px;
  357. letter-spacing: 0em;
  358. color: rgba(255, 255, 255, 1);
  359. margin-bottom: 40px;
  360. }
  361. .main-new-arrivals svg {
  362. margin-bottom: 81px;
  363. }
  364. .main-new-arrivals__produscts {
  365. width: 60%;
  366. display: flex;
  367. flex-wrap: wrap;
  368. justify-content: space-between;
  369. align-items: flex-start;
  370. }
  371. .main-new-arrivals__produscts>div:nth-child(-n+4) {
  372. margin-bottom: 40px;
  373. }
  374. .main-our-brands {
  375. width: 1005;
  376. height: 302px;
  377. background: #0F0F0F;
  378. display: flex;
  379. flex-direction: column;
  380. justify-content: center;
  381. align-items: center;
  382. }
  383. .main-our-brands>svg {
  384. margin-bottom: 40px;
  385. }
  386. .main-our-brands__name {
  387. font-family: Playfair Display;
  388. font-size: 36px;
  389. font-style: normal;
  390. font-weight: 700;
  391. line-height: 48px;
  392. letter-spacing: 0em;
  393. color: rgba(255, 255, 255, 1);
  394. margin-bottom: 40px;
  395. }
  396. .brands-icon {
  397. width: 60%;
  398. display: flex;
  399. justify-content: space-between;
  400. }
  401. .footer-container {
  402. width: 100%;
  403. height: 450px;
  404. background-image: url(../img/Rectangle\ 15.png);
  405. display: flex;
  406. justify-content: center;
  407. flex-direction: column;
  408. align-items: center;
  409. }
  410. .footer-about {
  411. width: 60%;
  412. height: 400px;
  413. display: flex;
  414. justify-content: space-between;
  415. }
  416. .footer-about__about {
  417. width: 33.33333%;
  418. height: 100%;
  419. justify-content: center;
  420. display: flex;
  421. flex-direction: column;
  422. }
  423. .footer-about__about__name {
  424. font-family: Playfair Display;
  425. font-size: 24px;
  426. font-style: normal;
  427. font-weight: 400;
  428. line-height: 32px;
  429. letter-spacing: 0em;
  430. color: #fff;
  431. margin-bottom: 40px;
  432. }
  433. .footer-about__about p {
  434. font-family: PT Sans;
  435. font-size: 14px;
  436. font-style: normal;
  437. font-weight: 400;
  438. line-height: 21px;
  439. letter-spacing: 0em;
  440. color: #fff;
  441. margin: 0;
  442. }
  443. .footer-about__category {
  444. width: 33.33333%;
  445. height: 100%;
  446. justify-content: center;
  447. display: flex;
  448. flex-direction: column;
  449. }
  450. .footer-about__category__name {
  451. font-family: Playfair Display;
  452. font-size: 24px;
  453. font-style: normal;
  454. font-weight: 400;
  455. line-height: 32px;
  456. letter-spacing: 0em;
  457. color: #fff;
  458. margin-bottom: 40px;
  459. }
  460. .footer-about__category__buttons {
  461. display: flex;
  462. flex-wrap: wrap;
  463. }
  464. .footer-about__mailing {
  465. width: 33.33333%;
  466. height: 100%;
  467. justify-content: center;
  468. display: flex;
  469. flex-direction: column;
  470. }
  471. .btn {
  472. padding: 10px 20px;
  473. margin-bottom: 20px;
  474. margin-right: 20px;
  475. background: #0F0F0F;
  476. color: rgba(208, 208, 208, 1);
  477. border: none;
  478. cursor: pointer;
  479. }
  480. .btn:hover {
  481. cursor: pointer;
  482. background: #1F1F1F;
  483. color: #fff;
  484. }
  485. .footer-about__mailing__name {
  486. font-family: Playfair Display;
  487. font-size: 24px;
  488. font-style: normal;
  489. font-weight: 400;
  490. line-height: 32px;
  491. letter-spacing: 0em;
  492. color: #fff;
  493. margin-bottom: 40px;
  494. }
  495. .footer-about__mailing p {
  496. font-family: PT Sans;
  497. font-size: 14px;
  498. font-style: normal;
  499. font-weight: 400;
  500. line-height: 21px;
  501. letter-spacing: 0em;
  502. color: #fff;
  503. margin: 0 0 37px 0;
  504. }
  505. .sign-up {
  506. width: 100%;
  507. height: 42px;
  508. display: flex;
  509. }
  510. .inner-btn {
  511. width: 60%;
  512. height: 100%;
  513. background: rgba(255, 255, 255, 0.4);
  514. color: rgba(150, 150, 150, 1);
  515. display: flex;
  516. justify-content: flex-start;
  517. align-items: center;
  518. padding-left: 15px;
  519. cursor: text;
  520. }
  521. .sign-btn {
  522. width: 40%;
  523. height: 100%;
  524. background: #0F0F0F;
  525. color: rgba(255, 255, 255, 1);
  526. border: none;
  527. cursor: pointer;
  528. }
  529. .sign-btn:hover {
  530. background-color: #1F1F1F;
  531. }
  532. .footer-about__copyright {
  533. height: 60px;
  534. width: 100%;
  535. background: rgba(15, 15, 15, 1);
  536. display: flex;
  537. justify-content: space-between;
  538. }
  539. .copyright {
  540. width: 50%;
  541. height: 100%;
  542. display: flex;
  543. justify-content: center;
  544. align-items: center;
  545. color: #fff;
  546. }
  547. .made-by {
  548. width: 50%;
  549. height: 100%;
  550. display: flex;
  551. justify-content: center;
  552. align-items: center;
  553. color: #fff;
  554. }