style.scss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  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. }
  160. .img--section{
  161. .img--wrap{
  162. overflow: hidden;
  163. border-radius: 20px;
  164. img{
  165. width: 100%;
  166. display: block;
  167. }
  168. video{
  169. width: 100%;
  170. height: 100%;
  171. display: block;
  172. object-fit: cover;
  173. }
  174. }
  175. &.none--bdrs{
  176. .img--wrap{
  177. border-radius: 0;
  178. }
  179. }
  180. &.type2{
  181. display: flex;
  182. gap: 16px;
  183. .img--box{
  184. width: 50%;
  185. }
  186. }
  187. .desc--wrap{
  188. margin-top: 24px;
  189. font-size: 16px;
  190. color: #fcfcfdb2;
  191. .desc{
  192. font-size: 12px;
  193. }
  194. }
  195. }
  196. .title--section{
  197. text-align: center;
  198. padding: 64px 96px;
  199. &.mid--type{
  200. max-width: 1440px;
  201. margin: 0 auto;
  202. }
  203. >h2{
  204. margin-bottom: 24px;
  205. font-size: 44px;
  206. &.big--title{
  207. font-size: 72px;
  208. }
  209. }
  210. >h3{
  211. font-size: 24px;
  212. margin-bottom: 24px;
  213. }
  214. >p{
  215. color: rgba(252, 252, 253, 0.7);
  216. font-size: 16px;
  217. &.desc{
  218. color: rgba(252, 252, 253, 0.7);
  219. font-size: 14px;
  220. }
  221. }
  222. }
  223. .desc--section{
  224. padding: 64px 96px;
  225. margin: 0 auto;
  226. max-width: 950px;
  227. >h2{
  228. font-size: 72px;
  229. }
  230. >h3{
  231. font-size: 36px;
  232. margin-bottom: 40px;
  233. }
  234. >p{
  235. margin: 0 auto;
  236. color: rgba(252, 252, 253, 0.7);
  237. font-size: 16px;
  238. }
  239. &.mid--type{
  240. max-width: 1440px;
  241. }
  242. &.full--type{
  243. width: 100%;
  244. max-width: 100%;
  245. >h3{
  246. margin-bottom: 16px;
  247. }
  248. >ul{
  249. display: flex;
  250. flex-direction: column;
  251. gap: 24px;
  252. >li{
  253. font-size: 24px;
  254. }
  255. }
  256. }
  257. }
  258. .img--desc--section{
  259. display: flex;
  260. padding: 64px 0;
  261. &.mid--type{
  262. margin: 0 auto;
  263. max-width: 1248px;
  264. .desc--wrap{
  265. padding-right: 0;
  266. }
  267. }
  268. .img--wrap{
  269. width: 50%;
  270. border-radius: 20px;
  271. overflow: hidden;
  272. img{
  273. width: 100%;
  274. }
  275. }
  276. .desc--wrap{
  277. width: 50%;
  278. display: flex;
  279. flex-direction: column;
  280. justify-content: center;
  281. padding: 0 72px;
  282. h3{
  283. font-size: 36px;
  284. margin-bottom: 8px;
  285. }
  286. p{
  287. font-size: 16px;
  288. color: rgba(252, 252, 253, 0.7);
  289. }
  290. }
  291. }
  292. .more--section{
  293. margin-top: 100px;
  294. >h2{
  295. font-size: 44px;
  296. margin-bottom: 40px;
  297. }
  298. .tech--card--wrap{
  299. display: flex;
  300. column-gap: 16px;
  301. .tech--card{
  302. width: calc((100% - 48px) / 4);
  303. display: flex;
  304. flex-direction: column;
  305. .img--wrap{
  306. margin-bottom: 24px;
  307. border-radius: 20px;
  308. overflow: hidden;
  309. >img{
  310. width: 100%;
  311. aspect-ratio: 16 / 9;
  312. object-fit: cover;
  313. }
  314. }
  315. >h3{
  316. font-size: 24px;
  317. margin-bottom: 8px;
  318. }
  319. >p{
  320. margin-bottom: 24px;
  321. color: rgba(252, 252, 253, 0.7);
  322. font-size: 16px;
  323. font-stretch: 105%;
  324. &.type2{
  325. margin-top: 40px;
  326. color: rgba(252, 252, 253, 0.7);
  327. font-size: 14px;
  328. }
  329. }
  330. >a{
  331. display: flex;
  332. font-size: 16px;
  333. text-underline-offset: 7px;
  334. text-decoration: underline 1px rgb(252, 252, 253);
  335. align-items: center;
  336. .ico{
  337. width: 24px;
  338. height: 24px;
  339. background-image: url(/img/ico--arrow.svg);
  340. }
  341. }
  342. }
  343. }
  344. }
  345. }
  346. }
  347. .more--btn{
  348. display: flex;
  349. font-size: 16px;
  350. text-underline-offset: 7px;
  351. text-decoration: underline 1px rgb(252, 252, 253);
  352. align-items: center;
  353. .ico{
  354. width: 24px;
  355. height: 24px;
  356. margin-left: 8px;
  357. background-image: url(/img/ico--link.svg);
  358. }
  359. }
  360. .btn--gray{
  361. transition: all 0.3s;
  362. width: fit-content;
  363. font-size: 14px;
  364. display: inline-block;
  365. font-weight: 400;
  366. padding: 12px 24px;
  367. color: #fff;
  368. border-radius: 100px;
  369. background-color: #657081;
  370. &:hover{
  371. background-color: rgb(44, 52, 63);
  372. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  373. }
  374. &.big--btn{
  375. font-size: 16px;
  376. padding: 16px 32px;
  377. width: 248px;
  378. }
  379. }