styles.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787
  1. /* fonts */
  2. @import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');
  3. @import url('https://fonts.googleapis.com/css?family=Roboto:400,700');
  4. @font-face {
  5. font-family: "Helvetica Neue";
  6. src: url('../fonts/helveticaneuecyr-light.otf');
  7. }
  8. @font-face {
  9. font-family: "AvenirNextLTPro-Demi";
  10. src: url('../fonts/AvenirNextLTPro-Demi.otf');
  11. }
  12. /* fonts */
  13. body{
  14. font-family: "Helvetica Neue", Arial, sans-serif;
  15. margin: 0;
  16. overflow-x: hidden;
  17. }
  18. h1,h2,h3{
  19. margin: 0;
  20. font-weight: bold;
  21. }
  22. h1 {
  23. font-size: 32px;
  24. letter-spacing: 1px;
  25. }
  26. h2 {
  27. font-size: 22px;
  28. }
  29. ul,li {
  30. margin: 0;
  31. padding: 0;
  32. list-style-type: none;
  33. }
  34. body * {
  35. box-sizing: border-box;
  36. }
  37. .preload-screen {
  38. position: absolute;
  39. width: 100%;
  40. line-height: 100vh;
  41. background: #1D1D1F;
  42. text-align: center;
  43. transition: all 0.6s cubic-bezier(.645,.045,.355,1);
  44. }
  45. .preload-screen img{
  46. vertical-align: middle;
  47. }
  48. .overlay {
  49. position: absolute;
  50. width: 100%;
  51. height: 100vh;
  52. background-color: rgba(29,29,31,.6);
  53. z-index: 3;
  54. opacity: 0;
  55. transition: opacity .6s cubic-bezier(.645,.045,.355,1);
  56. pointer-events: none;
  57. }
  58. .overlay-active {
  59. pointer-events: auto;
  60. opacity: 1;
  61. }
  62. /* header-line */
  63. .header-line {
  64. z-index: 2;
  65. position: -webkit-sticky;position: sticky;
  66. top: 0;
  67. width: 100%;
  68. height: 50px;
  69. background-color: #FFF;
  70. border-bottom: 1px solid rgb(222, 223, 224);
  71. }
  72. .header-line .fa-bars {
  73. display: inline-block;
  74. cursor: pointer;
  75. color: #222;
  76. width: 10%;
  77. padding-left: 25px;
  78. padding-top: 15px;
  79. text-align: left;
  80. font-size: 22px;
  81. }
  82. .header-line .logo {
  83. display: inline-block;
  84. font-family: "Helvetica Neue",Arial,sans-serif;
  85. font-weight: bolder;
  86. font-size: 25px;
  87. letter-spacing: 0.1em;
  88. width: 80%;
  89. text-align: center;
  90. }
  91. .header-line .undefined-btn {
  92. width: 80%;
  93. display: inline-block;
  94. }
  95. /* header-line */
  96. /* navmenu */
  97. .nav-menu {
  98. position: absolute;
  99. top: 0;
  100. left: 0;
  101. height: 100vh;
  102. width: 281px;
  103. background-color: #1D1D1F;
  104. padding: 50px;
  105. padding-top: 100px;
  106. transform: translateX(-281px);
  107. }
  108. .nav-menu span.nav-menu-title{
  109. display: block;
  110. color: #fff;
  111. font-size: 15px;
  112. margin-top: 10px;
  113. margin-bottom: 40px;
  114. }
  115. .nav-menu li {
  116. list-style-type: none;
  117. padding: 18px 0;
  118. transition: all .5s cubic-bezier(.39,.575,.565,1);
  119. cursor: pointer;
  120. }
  121. .nav-menu li:hover {
  122. transform: translateX(4px);
  123. }
  124. .nav-menu li:hover a{
  125. color: #fff;
  126. }
  127. .nav-menu li a, .nav-menu span{
  128. font-family: "AvenirNextLTPro-Demi", Arial, sans-serif;
  129. color: #9c9c9c;
  130. text-decoration: none;
  131. text-transform: uppercase;
  132. font-size: 12px;
  133. letter-spacing: .2em;
  134. }
  135. .nav-menu li.active-link a{
  136. color: #fff;
  137. }
  138. .nav-menu-icons-wrapper {
  139. position: absolute;
  140. display: -webkit-flex;
  141. display: -ms-flex;
  142. display: flex;
  143. bottom: 0;
  144. left: 0;
  145. width: 100%;
  146. border-top: 1px solid #333;
  147. }
  148. .nav-menu-icon {
  149. display: inline-block;
  150. width: 33.3%;
  151. }
  152. .nav-menu-icon a {
  153. display: block;
  154. font-size: 19px;
  155. color: #BCBCBC;
  156. text-align: center;
  157. padding: 15px 0;
  158. transition: all .5s ease;
  159. }
  160. .nav-menu-icon a:hover {
  161. background-color: #000;
  162. color: #fff;
  163. }
  164. .nav-menu-icon:nth-child(1) a {
  165. border-right: 1px solid #333;
  166. }
  167. .nav-menu-icon:nth-child(2){
  168. }
  169. .nav-menu-icon:nth-child(3) a {
  170. border-left: 1px solid #333;
  171. }
  172. .open-menu {
  173. transition: all 0.6s cubic-bezier(.645,.045,.355,1);
  174. transform: translateX(281px);
  175. }
  176. .close-menu {
  177. transition: all 0.6s cubic-bezier(.645,.045,.355,1);
  178. transform: translateX(0px);
  179. }
  180. /* navmenu */
  181. /* main-slider */
  182. .main-slider {
  183. height: 100vh;
  184. overflow: hidden;
  185. position: relative;
  186. }
  187. .main-slider-overlay {
  188. z-index: 1;
  189. position: absolute;
  190. width: 100%;
  191. height: 100%;
  192. background: rgba(0,0,0,.35);
  193. }
  194. .main-slider-back-overlay {
  195. z-index: -1;
  196. position: absolute;
  197. width: 100%;
  198. height: 100vh;
  199. opacity: 1;
  200. transition: all 3s ease;
  201. }
  202. .main-slider img {
  203. max-width: 100%;
  204. }
  205. .main-slider img.ng-enter, .main-slider img.ng-leave {
  206. transition: all 3s ease;
  207. }
  208. .main-slider img.ng-enter {
  209. transform: translateX(100%);
  210. }
  211. .main-slider img.ng-enter-active {
  212. transform: translateX(0);
  213. }
  214. .main-slider img.ng-leave {
  215. transform: translateX(0) translateY(-100.5%);
  216. }
  217. .main-slider img.ng-leave-active {
  218. transform: translateX(-100%) translateY(-100.5%);
  219. }
  220. /* .main-slider img.ng-leave-stagger {
  221. transition-delay: 0.2s;
  222. transition-duration: 0;
  223. } */
  224. .main-slider-content {
  225. position: absolute;
  226. z-index: 1;
  227. width: 100%;
  228. }
  229. .main-slider-text {
  230. text-align: center;
  231. font-size: 56px;
  232. color: #fff;
  233. z-index: 2;
  234. width: 1180px;
  235. margin: 0 auto;
  236. margin-top: 220px;
  237. margin-bottom: 60px;
  238. }
  239. .main-slider-text p {
  240. font-weight: bold;
  241. font-family: 'Montserrat', Arial, sans-serif;
  242. letter-spacing: 2px;
  243. }
  244. .main-slider-buttons {
  245. display: flex;
  246. justify-content: space-around;
  247. z-index: 2;
  248. border: red;
  249. width: 550px;
  250. margin: 0 auto;
  251. }
  252. .main-slider-buttons a {
  253. padding: 12px 32px;
  254. text-decoration: none;
  255. color: #fff;
  256. border: 1px solid rgba(255,255,255,.6);
  257. background: rgba(0,0,0,.5);
  258. font-size: 20px;
  259. font-weight: bold;
  260. font-family: 'Montserrat', Arial, sans-serif;
  261. transition: all ease .5s;
  262. }
  263. .main-slider-buttons a:hover {
  264. background: rgba(150,150,150,.5);
  265. }
  266. .main-slider-bars-wrapper {
  267. display: flex;
  268. margin: 0 auto;
  269. margin-top: 150px;
  270. width: 155px;
  271. justify-content: space-between;
  272. }
  273. .main-slider-bar {
  274. display: inline-block;
  275. width: 46px;
  276. height: 7px;
  277. background: #fff;
  278. cursor: pointer;
  279. opacity: 0.4;
  280. background: #fff;
  281. }
  282. .main-slider-bar-active {
  283. opacity: 0.7;
  284. }
  285. /* main-slider */
  286. /* main-page */
  287. .main-page {
  288. margin-top: -50px;
  289. }
  290. .main-page .about h1,h2 {
  291. font-weight: bolder;
  292. }
  293. .main-page .about {
  294. padding: 60px 0;
  295. /* background: linear-gradient(to bottom,rgb(244, 244, 246), rgb(260, 260, 260)); */
  296. background: rgb(241, 241, 245);
  297. }
  298. .main-page .about-wrapper {
  299. margin: 0 auto;
  300. max-width: 1180px;
  301. }
  302. .main-page .about h1 {
  303. text-align: center;
  304. color: #2A2627;
  305. margin-bottom: 80px;
  306. }
  307. .main-page .about h1::after {
  308. content: '';
  309. display: block;
  310. position: relative;
  311. top: 35px;
  312. left: 0;
  313. right: 0;
  314. margin: 0 auto;
  315. height: 2px;
  316. width: 100px;
  317. background-color: #000;
  318. }
  319. .main-page .about-description {
  320. text-align: center;
  321. margin-bottom: 35px;
  322. }
  323. .main-page .about-item-wrapper {
  324. display: flex;
  325. justify-content: space-between;
  326. }
  327. .main-page .about-item {
  328. width: 30%;
  329. height: 283px;
  330. position: relative;
  331. z-index: 1;
  332. perspective: 600px;
  333. }
  334. .main-page .about-item-description {
  335. font-family: 'Roboto', sans-serif;
  336. letter-spacing: 0.3px;
  337. }
  338. .main-page .about-item-first-side {
  339. text-align: center;
  340. background-color: #fff;
  341. padding: 40px 30px;
  342. box-shadow: 0 0 22px #cacaca;
  343. /* border: 1px solid rgba(29, 29, 31,.1); */
  344. position: absolute;
  345. transform: rotateY(0deg);
  346. /* background: linear-gradient(to top,rgb(252, 252, 252), rgb(260, 260, 260)); */
  347. /* background-color: #fff; */
  348. background: rgb(252, 252, 254);
  349. }
  350. .main-page .about-item-second-side {
  351. display: block;
  352. position: absolute;
  353. background-color: #1D1D1F;
  354. padding: 40px 30px;
  355. box-shadow: 0 0 22px #cacaca;
  356. width: 100%;
  357. height: 272px;
  358. transform: rotateY(90deg);
  359. text-align: center;
  360. cursor: pointer
  361. }
  362. .main-page .about-item-second-side span {
  363. display: inline-block;
  364. color: #fff;
  365. font-size: 29px;
  366. margin-top: 85px;
  367. transform: scale(-1, 1);
  368. opacity: 0;
  369. transition: all 1.6s ease;
  370. }
  371. .main-page .about-item:hover .about-item-first-side{
  372. transform: rotateY(90deg);
  373. }
  374. .main-page .about-item:hover .about-item-second-side{
  375. transform: rotateY(180deg);
  376. opacity: 1;
  377. }
  378. .main-page .about-item:hover .about-item-second-side span {
  379. opacity: 1;
  380. }
  381. .main-page .about-item-img {
  382. margin-bottom: 35px;
  383. }
  384. .main-page .about-item-img i {
  385. font-size: 50px;
  386. color: #1D1D1F;
  387. }
  388. .main-page .about-item h2 {
  389. color: #2A2627;
  390. margin-bottom: 25px;
  391. }
  392. .main-page .steps {
  393. padding: 60px 0;
  394. background: rgb(252, 252, 254);
  395. }
  396. .main-page .steps-wrapper {
  397. max-width: 860px;
  398. margin: 0 auto;
  399. }
  400. .main-page h1.steps-title {
  401. text-align: center;
  402. margin-bottom: 30px;
  403. }
  404. .main-page .steps-description {
  405. text-align: center;
  406. font-size: 18px;
  407. margin-bottom: 50px;
  408. }
  409. .main-page .steps-item-wrapper {
  410. display: flex;
  411. justify-content: space-around;
  412. flex-wrap: wrap;
  413. perspective: 600px;
  414. }
  415. .main-page .steps-item {
  416. opacity: 0;
  417. width: 42%;
  418. position: relative;
  419. margin-bottom: 60px;
  420. background: rgb(252, 252, 254);
  421. box-shadow: 0 0 10px #cacaca;
  422. transition: all 1s cubic-bezier(.645,.045,.355,1);
  423. }
  424. .main-page .steps-item:nth-child(1), .main-page .steps-item:nth-child(3) {
  425. transform: translateX(-200%);
  426. }
  427. .main-page .steps-item:nth-child(2), .main-page .steps-item:nth-child(4) {
  428. transform: translateX(200%);
  429. }
  430. /* .main-page .steps-item:hover {
  431. transform-origin: 50% 0%;
  432. transform: rotateX(8deg);
  433. box-shadow: 0 0 20px #cacaca;
  434. } */
  435. .main-page .steps-item-content {
  436. text-align: center;
  437. border: 2px solid rgba(29, 29, 31,.7);
  438. padding: 70px 40px 40px;
  439. font-size: 17px;
  440. font-family: 'Roboto', sans-serif;
  441. }
  442. .main-page .steps-item-number {
  443. position: absolute;
  444. background: rgba(29, 29, 31,.9);
  445. color: #fff;
  446. font-size: 17px;
  447. font-weight: bold;
  448. padding: 10px 25px;
  449. top: 20px;
  450. left: -10px;
  451. font-style: italic;
  452. box-shadow: 0 0 10px #cacaca;
  453. }
  454. .main-page .steps-item-number::after {
  455. content: '';
  456. display: block;
  457. position: absolute;
  458. top: -10px;
  459. left: 0;
  460. width: 0;
  461. height: 0;
  462. border-style: solid;
  463. border-width: 0 0 10px 10px;
  464. border-color: transparent transparent #000 transparent;
  465. }
  466. .main-page .steps-scroll-class .steps-item:nth-child(1), .steps-scroll-class .steps-item:nth-child(2) {
  467. transform: translateX(0);
  468. opacity: 1;
  469. }
  470. .main-page .steps-scroll-class-second .steps-item:nth-child(3), .steps-scroll-class-second .steps-item:nth-child(4){
  471. transform: translateX(0);
  472. opacity: 1;
  473. }
  474. .main-page .steps-scroll-class-hover .steps-item:hover {
  475. transition: all 0.7s ease;
  476. transform: translateX(0) rotateX(7deg);
  477. transform-origin: 50% 0%;
  478. box-shadow: 0 0 20px #cacaca;
  479. }
  480. .main-page .loyalty-programs {
  481. background: rgb(241, 241, 245);
  482. padding: 60px 0;
  483. }
  484. .main-page .loyalty-programs-wrapper {
  485. max-width: 1024px;
  486. margin: 0 auto;
  487. }
  488. .main-page h1.loyalty-programs-title {
  489. text-align: center;
  490. text-transform: uppercase;
  491. margin-bottom: 60px;
  492. }
  493. .main-page .loyalty-programs-item-wrapper {
  494. display: flex;
  495. justify-content: space-between;
  496. perspective: 1000px;
  497. }
  498. .main-page .loyalty-programs-item {
  499. width: 18%;
  500. text-align: center;
  501. position: relative;
  502. }
  503. .main-page .loyalty-programs-item-circle {
  504. }
  505. .main-page .loyalty-programs-item-circle-front {
  506. display: inline-block;
  507. padding: 30px;
  508. border-radius: 50%;
  509. background: rgb(252, 252, 254);
  510. transition: all 0.3s 0.3s ease-out;
  511. transform: rotateY(90deg);
  512. box-shadow: 0 0 5px #cacaca;
  513. }
  514. .main-page .loyalty-programs-scroll-class-hover .loyalty-programs-item-circle:hover .loyalty-programs-item-circle-front {
  515. transition: all 0.4s 0s ease;
  516. box-shadow: 0 0 10px #cacaca;
  517. transform: scale(1.05);
  518. }
  519. .main-page .loyalty-programs-item-circle-back {
  520. top: 0;
  521. position: absolute;
  522. left: 0;
  523. right: 0;
  524. margin: 0 auto;
  525. width: 113.09px;
  526. padding: 30px;
  527. border-radius: 50%;
  528. background: #1D1D1F;
  529. transition: all 0.3s ease-in;
  530. transform: rotateY(180deg);
  531. box-shadow: 0 0 5px #cacaca;
  532. }
  533. .main-page .loyalty-programs-item:nth-child(1) .loyalty-programs-item-circle-front{
  534. transition: all 0.3s 0.3s ease-out;
  535. }
  536. .main-page .loyalty-programs-item:nth-child(1) .loyalty-programs-item-circle-back{
  537. transition: all 0.3s ease-in;
  538. }
  539. .main-page .loyalty-programs-item:nth-child(2) .loyalty-programs-item-circle-front{
  540. transition: all 0.3s 0.4s ease-out;
  541. }
  542. .main-page .loyalty-programs-item:nth-child(2) .loyalty-programs-item-circle-back{
  543. transition: all 0.3s 0.1s ease-in;
  544. }
  545. .main-page .loyalty-programs-item:nth-child(3) .loyalty-programs-item-circle-front{
  546. transition: all 0.3s 0.5s ease-out;
  547. }
  548. .main-page .loyalty-programs-item:nth-child(3) .loyalty-programs-item-circle-back{
  549. transition: all 0.3s 0.2s ease-in;
  550. }
  551. .main-page .loyalty-programs-item:nth-child(4) .loyalty-programs-item-circle-front{
  552. transition: all 0.3s 0.6s ease-out;
  553. }
  554. .main-page .loyalty-programs-item:nth-child(4) .loyalty-programs-item-circle-back{
  555. transition: all 0.3s 0.3s ease-in;
  556. }
  557. .main-page .loyalty-programs-item:nth-child(5) .loyalty-programs-item-circle-front{
  558. transition: all 0.3s 0.7s ease-out;
  559. }
  560. .main-page .loyalty-programs-item:nth-child(5) .loyalty-programs-item-circle-back{
  561. transition: all 0.3s 0.4s ease-in;
  562. }
  563. .main-page .loyalty-programs-scroll-class .loyalty-programs-item-circle-front {
  564. transform: rotateY(0deg);
  565. }
  566. .main-page .loyalty-programs-scroll-class .loyalty-programs-item-circle-back {
  567. transform: rotateY(90deg);
  568. opacity: 0;
  569. }
  570. .main-page .loyalty-programs-item-description {
  571. margin-top: 30px;
  572. font-size: 17px;
  573. font-family: 'Roboto', sans-serif;
  574. }
  575. .main-page .loyalty-programs-item img {
  576. width: 50px;
  577. height: 50px;
  578. }
  579. /* main-page */
  580. /* footer */
  581. .footer {
  582. background-color: #1D1D1F;
  583. padding: 60px 0;
  584. }
  585. .footer-icons {
  586. display: flex;
  587. justify-content: space-between;
  588. margin: 0 auto;
  589. width: 180px;
  590. margin-bottom: 40px;
  591. }
  592. .footer-icon {
  593. width: 33.3%;
  594. cursor: pointer;
  595. }
  596. .footer-icon a {
  597. display: block;
  598. text-align: center;
  599. position: relative;
  600. }
  601. .footer-icon i {
  602. transition: all 0.3s ease;
  603. }
  604. .footer-icon i:nth-of-type(1) {
  605. font-size: 19px;
  606. color: #9c9c9c;
  607. }
  608. .footer-icon i:nth-of-type(2) {
  609. position: absolute;
  610. top: -11px;
  611. left: 0;
  612. right: 0;
  613. margin: 0 auto;
  614. width: 40px;
  615. height: 40px;
  616. border: 1.5px solid rgb(156,156,156);
  617. border-radius: 50%;
  618. }
  619. .footer-icon:hover i:.fa, {
  620. color: #fff!important;
  621. }
  622. .footer-icon:hover i:nth-of-type(2) {
  623. border-color: #F1F1F5;
  624. }
  625. .footer-navbar {
  626. text-align: center;
  627. margin-bottom: 30px;
  628. }
  629. .footer-navbar ul {
  630. display: inline-block;
  631. }
  632. .footer-navbar ul li {
  633. display: inline-block;
  634. padding: 0 10px;
  635. border-right: 1px solid rgba(156,156,156,.5);
  636. }
  637. .footer-navbar ul li:last-child {
  638. border-right: none;
  639. }
  640. .footer-navbar ul a {
  641. text-decoration: none;
  642. color: rgb(156,156,156);
  643. font-size: 18px;
  644. transition: all 0.3s ease;
  645. }
  646. .footer-navbar ul li:hover a {
  647. color: #F1F1F5;
  648. }
  649. .footer-copyright {
  650. color: rgb(156,156,156);
  651. font-family: 'Roboto', sans-serif;
  652. text-align: center;
  653. font-size: 14px;
  654. }
  655. /* footer */