styles.css 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551
  1. /* fonts */
  2. @import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');
  3. @import url('https://fonts.googleapis.com/css?family=Lato: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. }
  25. h2 {
  26. font-size: 22px;
  27. }
  28. ul,li {
  29. margin: 0;
  30. padding: 0;
  31. }
  32. body * {
  33. box-sizing: border-box;
  34. }
  35. .overlay {
  36. position: absolute;
  37. width: 100%;
  38. height: 100vh;
  39. background-color: rgba(29,29,31,.6);
  40. z-index: 3;
  41. opacity: 0;
  42. transition: opacity .6s cubic-bezier(.645,.045,.355,1);
  43. pointer-events: none;
  44. }
  45. .overlay-active {
  46. pointer-events: auto;
  47. opacity: 1;
  48. }
  49. /* header-line */
  50. .header-line {
  51. z-index: 2;
  52. position: -webkit-sticky;position: sticky;
  53. top: 0;
  54. width: 100%;
  55. height: 50px;
  56. background-color: #FFF;
  57. border-bottom: 1px solid rgb(222, 223, 224);
  58. }
  59. .header-line .fa-bars {
  60. display: inline-block;
  61. cursor: pointer;
  62. color: #222;
  63. width: 10%;
  64. padding-left: 25px;
  65. padding-top: 15px;
  66. text-align: left;
  67. font-size: 22px;
  68. }
  69. .header-line .logo {
  70. display: inline-block;
  71. font-family: "Helvetica Neue",Arial,sans-serif;
  72. font-weight: bolder;
  73. font-size: 25px;
  74. letter-spacing: 0.1em;
  75. width: 80%;
  76. text-align: center;
  77. }
  78. .header-line .undefined-btn {
  79. width: 80%;
  80. display: inline-block;
  81. }
  82. /* header-line */
  83. /* navmenu */
  84. .nav-menu {
  85. position: absolute;
  86. top: 0;
  87. left: 0;
  88. height: 100vh;
  89. width: 281px;
  90. background-color: #1D1D1F;
  91. padding: 50px;
  92. padding-top: 100px;
  93. transform: translateX(-281px);
  94. }
  95. .nav-menu span.nav-menu-title{
  96. display: block;
  97. color: #fff;
  98. font-size: 15px;
  99. margin-top: 10px;
  100. margin-bottom: 40px;
  101. }
  102. .nav-menu li {
  103. list-style-type: none;
  104. padding: 18px 0;
  105. transition: all .5s cubic-bezier(.39,.575,.565,1);
  106. cursor: pointer;
  107. }
  108. .nav-menu li:hover {
  109. transform: translateX(4px);
  110. }
  111. .nav-menu li:hover a{
  112. color: #fff;
  113. }
  114. .nav-menu li a, .nav-menu span{
  115. font-family: "AvenirNextLTPro-Demi", Arial, sans-serif;
  116. color: #9c9c9c;
  117. text-decoration: none;
  118. text-transform: uppercase;
  119. font-size: 12px;
  120. letter-spacing: .2em;
  121. }
  122. .nav-menu li.active-link a{
  123. color: #fff;
  124. }
  125. .nav-menu-icons-wrapper {
  126. position: absolute;
  127. display: -webkit-flex;
  128. display: -ms-flex;
  129. display: flex;
  130. bottom: 0;
  131. left: 0;
  132. width: 100%;
  133. border-top: 1px solid #333;
  134. }
  135. .nav-menu-icon {
  136. display: inline-block;
  137. width: 33.3%;
  138. }
  139. .nav-menu-icon a {
  140. display: block;
  141. font-size: 19px;
  142. color: #BCBCBC;
  143. text-align: center;
  144. padding: 15px 0;
  145. transition: all .5s ease;
  146. }
  147. .nav-menu-icon a:hover {
  148. background-color: #000;
  149. color: #fff;
  150. }
  151. .nav-menu-icon:nth-child(1) a {
  152. border-right: 1px solid #333;
  153. }
  154. .nav-menu-icon:nth-child(2){
  155. }
  156. .nav-menu-icon:nth-child(3) a {
  157. border-left: 1px solid #333;
  158. }
  159. .open-menu {
  160. transition: all 0.6s cubic-bezier(.645,.045,.355,1);
  161. transform: translateX(281px);
  162. }
  163. .close-menu {
  164. transition: all 0.6s cubic-bezier(.645,.045,.355,1);
  165. transform: translateX(0px);
  166. }
  167. /* navmenu */
  168. /* main-slider */
  169. .main-slider {
  170. height: 100vh;
  171. overflow: hidden;
  172. position: relative;
  173. }
  174. .main-slider-overlay {
  175. z-index: 1;
  176. position: absolute;
  177. width: 100%;
  178. height: 100%;
  179. background: rgba(0,0,0,.35);
  180. }
  181. .main-slider-back-overlay {
  182. z-index: -1;
  183. position: absolute;
  184. width: 100%;
  185. height: 100vh;
  186. opacity: 1;
  187. transition: all 3s ease;
  188. }
  189. .main-slider img {
  190. width: 100%;
  191. }
  192. .main-slider img.ng-enter, .main-slider img.ng-leave {
  193. transition: all 3s ease;
  194. }
  195. .main-slider img.ng-enter {
  196. transform: translateX(100%);
  197. }
  198. .main-slider img.ng-enter-active {
  199. transform: translateX(0);
  200. }
  201. .main-slider img.ng-leave {
  202. transform: translateX(0) translateY(-100.5%);
  203. }
  204. .main-slider img.ng-leave-active {
  205. transform: translateX(-100%) translateY(-100.5%);
  206. }
  207. /* .main-slider img.ng-leave-stagger {
  208. transition-delay: 0.2s;
  209. transition-duration: 0;
  210. } */
  211. .main-slider-content {
  212. position: absolute;
  213. z-index: 1;
  214. width: 100%;
  215. }
  216. .main-slider-text {
  217. text-align: center;
  218. font-size: 56px;
  219. color: #fff;
  220. z-index: 2;
  221. width: 1180px;
  222. margin: 0 auto;
  223. margin-top: 220px;
  224. margin-bottom: 60px;
  225. }
  226. .main-slider-text p {
  227. font-weight: bold;
  228. font-family: 'Montserrat', Arial, sans-serif;
  229. letter-spacing: 2px;
  230. }
  231. .main-slider-buttons {
  232. display: flex;
  233. justify-content: space-around;
  234. z-index: 2;
  235. border: red;
  236. width: 550px;
  237. margin: 0 auto;
  238. }
  239. .main-slider-buttons a {
  240. padding: 12px 32px;
  241. text-decoration: none;
  242. color: #fff;
  243. border: 1px solid rgba(255,255,255,.6);
  244. background: rgba(0,0,0,.5);
  245. font-size: 20px;
  246. font-weight: bold;
  247. font-family: 'Montserrat', Arial, sans-serif;
  248. transition: all ease .5s;
  249. }
  250. .main-slider-buttons a:hover {
  251. background: rgba(150,150,150,.5);
  252. }
  253. .main-slider-bars-wrapper {
  254. display: flex;
  255. margin: 0 auto;
  256. margin-top: 150px;
  257. width: 155px;
  258. justify-content: space-between;
  259. }
  260. .main-slider-bar {
  261. display: inline-block;
  262. width: 46px;
  263. height: 7px;
  264. background: #fff;
  265. cursor: pointer;
  266. opacity: 0.4;
  267. background: #fff;
  268. }
  269. .main-slider-bar-active {
  270. opacity: 0.7;
  271. }
  272. /* main-slider */
  273. /* main-page */
  274. .main-page {
  275. margin-top: -50px;
  276. }
  277. .main-page .about h1,h2 {
  278. font-weight: bolder;
  279. }
  280. .main-page .about {
  281. padding: 60px 0;
  282. /* background: linear-gradient(to bottom,rgb(244, 244, 246), rgb(260, 260, 260)); */
  283. background: rgb(241, 241, 245);
  284. }
  285. .main-page .about-wrapper {
  286. margin: 0 auto;
  287. max-width: 1180px;
  288. }
  289. .main-page .about h1 {
  290. text-align: center;
  291. color: #2A2627;
  292. margin-bottom: 80px;
  293. }
  294. .main-page .about h1::after {
  295. content: '';
  296. display: block;
  297. position: relative;
  298. top: 35px;
  299. left: 0;
  300. right: 0;
  301. margin: 0 auto;
  302. height: 2px;
  303. width: 100px;
  304. background-color: #000;
  305. }
  306. .main-page .about-description {
  307. text-align: center;
  308. margin-bottom: 35px;
  309. }
  310. .main-page .about-item-wrapper {
  311. display: flex;
  312. justify-content: space-between;
  313. }
  314. .main-page .about-item {
  315. width: 30%;
  316. height: 283px;
  317. position: relative;
  318. z-index: 1;
  319. perspective: 600px;
  320. }
  321. .main-page .about-item-description {
  322. font-family: 'Lato', sans-serif;
  323. letter-spacing: 0.3px;
  324. }
  325. .main-page .about-item-first-side {
  326. text-align: center;
  327. background-color: #fff;
  328. padding: 40px 30px;
  329. box-shadow: 0 0 22px #cacaca;
  330. /* border: 1px solid rgba(29, 29, 31,.1); */
  331. position: absolute;
  332. transform: rotateY(0deg);
  333. /* background: linear-gradient(to top,rgb(252, 252, 252), rgb(260, 260, 260)); */
  334. /* background-color: #fff; */
  335. background: rgb(252, 252, 254);
  336. }
  337. .main-page .about-item-second-side {
  338. display: block;
  339. position: absolute;
  340. background-color: #1D1D1F;
  341. padding: 40px 30px;
  342. box-shadow: 0 0 22px #cacaca;
  343. width: 100%;
  344. height: 272px;
  345. transform: rotateY(90deg);
  346. text-align: center;
  347. cursor: pointer
  348. }
  349. .main-page .about-item-second-side span {
  350. display: inline-block;
  351. color: #fff;
  352. font-size: 29px;
  353. margin-top: 85px;
  354. transform: scale(-1, 1);
  355. opacity: 0;
  356. transition: all 1.6s ease;
  357. }
  358. .main-page .about-item:hover .about-item-first-side{
  359. transform: rotateY(90deg);
  360. }
  361. .main-page .about-item:hover .about-item-second-side{
  362. transform: rotateY(180deg);
  363. opacity: 1;
  364. }
  365. .main-page .about-item:hover .about-item-second-side span {
  366. opacity: 1;
  367. }
  368. .main-page .about-item-img {
  369. margin-bottom: 35px;
  370. }
  371. .main-page .about-item-img i {
  372. font-size: 50px;
  373. color: #1D1D1F;
  374. }
  375. .main-page .about-item h2 {
  376. color: #2A2627;
  377. margin-bottom: 25px;
  378. }
  379. .main-page .steps {
  380. padding: 60px 0;
  381. background: rgb(252, 252, 254);
  382. }
  383. .main-page .steps-wrapper {
  384. max-width: 860px;
  385. margin: 0 auto;
  386. }
  387. .main-page h1.steps-title {
  388. text-align: center;
  389. margin-bottom: 30px;
  390. }
  391. .main-page .steps-description {
  392. text-align: center;
  393. font-size: 18px;
  394. margin-bottom: 50px;
  395. }
  396. .main-page .steps-item-wrapper {
  397. display: flex;
  398. justify-content: space-around;
  399. flex-wrap: wrap;
  400. perspective: 600px;
  401. }
  402. .main-page .steps-item {
  403. width: 42%;
  404. position: relative;
  405. margin-bottom: 60px;
  406. background: rgb(252, 252, 254);
  407. box-shadow: 0 0 10px #cacaca;
  408. transition: all 1s cubic-bezier(.645,.045,.355,1);
  409. }
  410. .main-page .steps-item:nth-child(1), .main-page .steps-item:nth-child(3) {
  411. transform: translateX(-200%);
  412. }
  413. .main-page .steps-item:nth-child(2), .main-page .steps-item:nth-child(4) {
  414. transform: translateX(200%);
  415. }
  416. /* .main-page .steps-item:hover {
  417. transform-origin: 50% 0%;
  418. transform: rotateX(8deg);
  419. box-shadow: 0 0 20px #cacaca;
  420. } */
  421. .main-page .steps-item-content {
  422. text-align: center;
  423. border: 2px solid rgba(29, 29, 31,.7);
  424. padding: 70px 40px 40px;
  425. font-size: 17px;
  426. font-family: 'Lato', sans-serif;
  427. }
  428. .main-page .steps-item-number {
  429. position: absolute;
  430. background: rgba(29, 29, 31,.9);
  431. color: #fff;
  432. font-size: 17px;
  433. font-weight: bold;
  434. padding: 10px 25px;
  435. top: 20px;
  436. left: -10px;
  437. font-style: italic;
  438. }
  439. .main-page .steps-item-number::after {
  440. content: '';
  441. display: block;
  442. position: absolute;
  443. top: -10px;
  444. left: 0;
  445. width: 0;
  446. height: 0;
  447. border-style: solid;
  448. border-width: 0 0 10px 10px;
  449. border-color: transparent transparent #000 transparent;
  450. }
  451. .main-page .steps-scroll-class .steps-item:nth-child(1), .steps-scroll-class .steps-item:nth-child(2) {
  452. transform: translateX(0);
  453. }
  454. .main-page .steps-scroll-class-second .steps-item:nth-child(3), .steps-scroll-class-second .steps-item:nth-child(4){
  455. transform: translateX(0);
  456. }
  457. .main-page .steps-scroll-class-hover .steps-item:hover {
  458. transition: all 0.7s ease;
  459. transform: translateX(0) rotateX(7deg);
  460. transform-origin: 50% 0%;
  461. box-shadow: 0 0 20px #cacaca;
  462. }
  463. /* main-page */