style.scss 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. @font-face {
  2. font-family: 'AudiType';
  3. src: url('/fonts/AudiTypeVF.woff2') format('woff2-variations');
  4. font-display: swap;
  5. font-style: normal;
  6. font-stretch: 130%;
  7. }
  8. // Utility classes for padding and margin (1-100)
  9. @for $i from 1 through 200 {
  10. // Padding
  11. .pt--#{$i} { padding-top: #{$i}px !important; }
  12. .pr--#{$i} { padding-right: #{$i}px !important; }
  13. .pb--#{$i} { padding-bottom: #{$i}px !important; }
  14. .pl--#{$i} { padding-left: #{$i}px !important; }
  15. .p--#{$i} { padding: #{$i}px !important; }
  16. // Margin
  17. .mt--#{$i} { margin-top: #{$i}px !important; }
  18. .mr--#{$i} { margin-right: #{$i}px !important; }
  19. .mb--#{$i} { margin-bottom: #{$i}px !important; }
  20. .ml--#{$i} { margin-left: #{$i}px !important; }
  21. .m--#{$i} { margin: #{$i}px !important; }
  22. }
  23. body{
  24. background-color: hsla(216, 23%, 8%, 1);
  25. color: rgb(252, 252, 253);
  26. font-family: 'AudiType';
  27. font-weight: 400;
  28. }
  29. *{
  30. background-repeat: no-repeat;
  31. }
  32. .ico, ::after, ::before{
  33. display: inline-block;
  34. background-repeat: no-repeat;
  35. background-position: center;
  36. }
  37. button{
  38. cursor: pointer;
  39. }
  40. header{
  41. width: 100%;
  42. .header--wrap{
  43. background-color: #020203;
  44. max-width: 1920px;
  45. width: 100%;
  46. margin: 0 auto;
  47. height: 72px;
  48. padding: 0 96px;
  49. display: flex;
  50. align-items: center;
  51. }
  52. .header--logo--wrap{
  53. margin-right: 40px;
  54. }
  55. .header--menu--wrap{
  56. display: flex;
  57. gap: 24px;
  58. >a{
  59. color: #fcfcfdb2;
  60. &:hover{
  61. color: hsla(216, 33%, 99%, 1);
  62. }
  63. }
  64. }
  65. .header--search--wrap{
  66. margin-left: auto;
  67. .search--btn{
  68. border-radius: 50%;
  69. padding: 0;
  70. background-image: url(/img/ico--search.svg);
  71. background-repeat: no-repeat;
  72. background-position: center;
  73. background-color: transparent;
  74. width: 48px;
  75. height: 48px;
  76. }
  77. }
  78. }
  79. footer{
  80. width: 100%;
  81. .footer--wrap{
  82. background-color: #020203;
  83. max-width: 1920px;
  84. width: 100%;
  85. margin: 0 auto;
  86. height: 72px;
  87. padding: 0 96px;
  88. display: flex;
  89. align-items: center;
  90. }
  91. }
  92. main{
  93. .detail--container{
  94. max-width: 1920px;
  95. width: 100%;
  96. margin: 0 auto;
  97. .title--wrap{
  98. padding: 40px;
  99. text-align: center;
  100. h2{
  101. font-size: 72px;
  102. margin-bottom: 24px;
  103. }
  104. p{
  105. color: rgba(252, 252, 253, 0.7);
  106. font-size: 16px;
  107. }
  108. }
  109. .content--wrap{
  110. padding: 40px 88px;
  111. .tech--card--wrap{
  112. display: flex;
  113. row-gap: 72px;
  114. column-gap: 16px;
  115. flex-wrap: wrap;
  116. .tech--card{
  117. width: calc((100% - 48px) / 4);
  118. display: flex;
  119. flex-direction: column;
  120. .img--wrap{
  121. margin-bottom: 24px;
  122. border-radius: 20px;
  123. overflow: hidden;
  124. >img{
  125. width: 100%;
  126. aspect-ratio: 16 / 9;
  127. object-fit: cover;
  128. }
  129. }
  130. >h3{
  131. font-size: 24px;
  132. margin-bottom: 8px;
  133. }
  134. >p{
  135. margin-bottom: 24px;
  136. color: rgba(252, 252, 253, 0.7);
  137. font-size: 16px;
  138. font-stretch: 105%;
  139. &.type2{
  140. margin-top: 40px;
  141. color: rgba(252, 252, 253, 0.7);
  142. font-size: 14px;
  143. }
  144. }
  145. >a{
  146. display: flex;
  147. font-size: 16px;
  148. text-underline-offset: 7px;
  149. text-decoration: underline 1px rgb(252, 252, 253);
  150. align-items: center;
  151. .ico{
  152. width: 24px;
  153. height: 24px;
  154. background-image: url(/img/ico--arrow.svg);
  155. }
  156. }
  157. }
  158. }
  159. .ls--card--wrap{
  160. .ls--card{
  161. display: flex;
  162. gap: 72px;
  163. align-items: center;
  164. .ls--img--wrap{
  165. width: 50%;
  166. overflow: hidden;
  167. border-radius: 20px;
  168. }
  169. .ls--txt--wrap{
  170. width: 50%;
  171. >h2{
  172. font-size: 36px;
  173. margin-bottom: 8px;
  174. }
  175. >h3{
  176. font-size: 24px;
  177. margin-bottom: 8px;
  178. }
  179. >p{
  180. font-size: 16px;
  181. color: rgba(252, 252, 253, 0.7);
  182. margin-bottom: 24px;
  183. &.desc{
  184. margin-top: 40px;
  185. font-size: 14px;
  186. margin-bottom: 0;
  187. }
  188. }
  189. }
  190. }
  191. }
  192. }
  193. .img--section{
  194. .img--wrap{
  195. overflow: hidden;
  196. border-radius: 20px;
  197. img{
  198. width: 100%;
  199. display: block;
  200. }
  201. video{
  202. width: 100%;
  203. height: 100%;
  204. display: block;
  205. object-fit: cover;
  206. }
  207. }
  208. &.none--bdrs{
  209. .img--wrap{
  210. border-radius: 0;
  211. }
  212. }
  213. &.type2{
  214. display: flex;
  215. gap: 16px;
  216. .img--box{
  217. width: 50%;
  218. }
  219. }
  220. &.type3{
  221. display: flex;
  222. gap: 16px;
  223. .img--box{
  224. &:first-child{
  225. width: 35%;
  226. }
  227. &:last-child{
  228. width: 70%;
  229. }
  230. }
  231. }
  232. .desc--wrap{
  233. margin-top: 24px;
  234. font-size: 16px;
  235. color: #fcfcfdb2;
  236. .desc{
  237. font-size: 12px;
  238. }
  239. }
  240. }
  241. .title--section{
  242. text-align: center;
  243. padding: 64px 96px;
  244. &.mid--type{
  245. max-width: 1440px;
  246. margin: 0 auto;
  247. }
  248. >h2{
  249. margin-bottom: 24px;
  250. font-size: 44px;
  251. &.big--title{
  252. font-size: 72px;
  253. }
  254. }
  255. >h3{
  256. font-size: 24px;
  257. margin-bottom: 24px;
  258. }
  259. >p{
  260. color: rgba(252, 252, 253, 0.7);
  261. font-size: 16px;
  262. &.desc{
  263. color: rgba(252, 252, 253, 0.7);
  264. font-size: 14px;
  265. }
  266. }
  267. }
  268. .desc--section{
  269. padding: 64px 96px;
  270. margin: 0 auto;
  271. max-width: 950px;
  272. >h2{
  273. font-size: 72px;
  274. }
  275. >h3{
  276. &.big--title{
  277. font-size: 44px;
  278. }
  279. font-size: 36px;
  280. margin-bottom: 40px;
  281. }
  282. >p{
  283. margin: 0 auto;
  284. color: rgba(252, 252, 253, 0.7);
  285. font-size: 16px;
  286. }
  287. &.mid--type{
  288. max-width: 1440px;
  289. }
  290. &.full--type{
  291. width: 100%;
  292. max-width: 100%;
  293. >h3{
  294. margin-bottom: 16px;
  295. }
  296. >ul{
  297. display: flex;
  298. flex-direction: column;
  299. gap: 24px;
  300. >li{
  301. font-size: 24px;
  302. }
  303. }
  304. }
  305. }
  306. .img--desc--section{
  307. display: flex;
  308. padding: 64px 0;
  309. &.reverse{
  310. flex-direction: row-reverse;
  311. }
  312. &.mid--type{
  313. margin: 0 auto;
  314. max-width: 1248px;
  315. .desc--wrap{
  316. padding-right: 0;
  317. }
  318. }
  319. .img--wrap{
  320. width: 50%;
  321. border-radius: 20px;
  322. overflow: hidden;
  323. img{
  324. width: 100%;
  325. }
  326. }
  327. .desc--wrap{
  328. width: 50%;
  329. display: flex;
  330. flex-direction: column;
  331. justify-content: center;
  332. padding: 0 72px;
  333. h3{
  334. font-size: 36px;
  335. margin-bottom: 8px;
  336. }
  337. p{
  338. font-size: 16px;
  339. color: rgba(252, 252, 253, 0.7);
  340. &.desc{
  341. font-size: 12px;
  342. }
  343. }
  344. }
  345. }
  346. .more--section{
  347. margin-top: 100px;
  348. >h2{
  349. font-size: 44px;
  350. margin-bottom: 40px;
  351. }
  352. .tech--card--wrap{
  353. display: flex;
  354. column-gap: 16px;
  355. .tech--card{
  356. width: calc((100% - 48px) / 4);
  357. display: flex;
  358. flex-direction: column;
  359. .img--wrap{
  360. margin-bottom: 24px;
  361. border-radius: 20px;
  362. overflow: hidden;
  363. >img{
  364. width: 100%;
  365. aspect-ratio: 16 / 9;
  366. object-fit: cover;
  367. }
  368. }
  369. >h3{
  370. font-size: 24px;
  371. margin-bottom: 8px;
  372. }
  373. >p{
  374. margin-bottom: 24px;
  375. color: rgba(252, 252, 253, 0.7);
  376. font-size: 16px;
  377. font-stretch: 105%;
  378. &.type2{
  379. margin-top: 40px;
  380. color: rgba(252, 252, 253, 0.7);
  381. font-size: 14px;
  382. }
  383. }
  384. >a{
  385. display: flex;
  386. font-size: 16px;
  387. text-underline-offset: 7px;
  388. text-decoration: underline 1px rgb(252, 252, 253);
  389. align-items: center;
  390. .ico{
  391. width: 24px;
  392. height: 24px;
  393. background-image: url(/img/ico--arrow.svg);
  394. }
  395. }
  396. }
  397. }
  398. }
  399. }
  400. }
  401. .more--btn{
  402. display: flex;
  403. font-size: 16px;
  404. text-underline-offset: 7px;
  405. text-decoration: underline 1px rgb(252, 252, 253);
  406. align-items: center;
  407. .ico{
  408. width: 24px;
  409. height: 24px;
  410. margin-left: 8px;
  411. background-image: url(/img/ico--link.svg);
  412. }
  413. }
  414. .btn--gray{
  415. transition: all 0.3s;
  416. width: fit-content;
  417. font-size: 14px;
  418. display: inline-block;
  419. font-weight: 400;
  420. padding: 12px 24px;
  421. color: rgb(252, 252, 253);
  422. border-radius: 100px;
  423. background-color: #657081;
  424. &:hover{
  425. background-color: rgb(44, 52, 63);
  426. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  427. }
  428. &.big--btn{
  429. font-size: 16px;
  430. padding: 16px 32px;
  431. width: 248px;
  432. }
  433. }
  434. .btn--border--gray{
  435. transition: all 0.3s;
  436. width: fit-content;
  437. font-size: 14px;
  438. display: inline-block;
  439. font-weight: 400;
  440. padding: 12px 24px;
  441. color: rgb(252, 252, 253);
  442. border-radius: 100px;
  443. background-color: #181d25;
  444. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  445. &:hover{
  446. background-color: rgb(44, 52, 63);
  447. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  448. }
  449. &.big--btn{
  450. padding: 16px 32px;
  451. font-size: 16px;
  452. }
  453. }