sub.scss 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824
  1. .header--wrap{
  2. &.scrolled, &:hover{
  3. background-color: #fff;
  4. .header--inner{
  5. .header--mob--lang--btn{
  6. background-image: url(../img/ico--global--black.svg);
  7. }
  8. .header--mob--btn{
  9. background-image: url(../img/ico--header--black.svg);
  10. }
  11. .header--logo{
  12. background-image: url(../img/logo--white.svg);
  13. }
  14. &:has(.header--mob--btn.active){
  15. .header--logo{
  16. background-image: url(../img/logo--default.svg);
  17. }
  18. }
  19. .header--nav > ul > li > a{
  20. color: #000;
  21. }
  22. .header--lang--btn{
  23. background-color: #EC3237;
  24. }
  25. }
  26. }
  27. }
  28. .footer--wrap{
  29. &.sub--type{
  30. position: static;
  31. }
  32. }
  33. main{
  34. .ico{
  35. display: inline-block;
  36. background-repeat: no-repeat;
  37. background-size: 100%;
  38. background-position: center;
  39. }
  40. .sub--visual--wrap{
  41. position: relative;
  42. .visual--wrap{
  43. width: 100%;
  44. img{
  45. width: 100%;
  46. }
  47. }
  48. .visual--txt--wrap{
  49. position: absolute;
  50. max-width: 1600px;
  51. width: 100%;
  52. bottom: -14px;
  53. line-height: 1;
  54. text-transform: uppercase;
  55. left: 50%;
  56. transform: translateX(-50%);
  57. h2{
  58. font-weight: 800;
  59. font-size: 120px;
  60. color: #fff;
  61. .mo{
  62. display: none;
  63. }
  64. strong{
  65. color: #ec3237;
  66. }
  67. }
  68. }
  69. }
  70. .org--sec--wrap{
  71. background-size: cover;
  72. background-attachment: fixed;
  73. background-color: #1A1B20;
  74. background-position: bottom;
  75. background-repeat: no-repeat;
  76. background-image: url(../img/img--org.png);
  77. }
  78. .sub--menu--wrap{
  79. max-width: 1600px;
  80. justify-content: center;
  81. align-items: center;
  82. display: flex;
  83. margin: 0 auto;
  84. gap: 18px;
  85. padding: 150px 0;
  86. width: 100%;
  87. select{
  88. background-color: #fff;
  89. width: 100%;
  90. border: 1px solid #dedede;
  91. border-radius: 15px;
  92. cursor: pointer;
  93. color: #191919;
  94. font-size: 16px;
  95. font-weight: 500;
  96. padding: 25px 20px;
  97. -webkit-appearance: none;
  98. background-image: url(../img/ico--select--black.svg);
  99. background-repeat: no-repeat;
  100. background-position: center right 20px;
  101. -moz-appearance: none;
  102. appearance: none;
  103. }
  104. &.mo{
  105. display: none;
  106. }
  107. .ico{
  108. width: 20px;
  109. height: 20px;
  110. background-image: url(../img/ico--home.svg);
  111. }
  112. .dot{
  113. display: inline-block;
  114. width: 6px;
  115. height: 6px;
  116. border-radius: 50%;
  117. background-color: #d9d9d9;
  118. }
  119. p{
  120. text-transform: uppercase;
  121. font-size: 18px;
  122. font-weight: 400;
  123. color: #000;
  124. &:last-child{
  125. font-weight: 600;
  126. color: #ec3237;
  127. }
  128. }
  129. }
  130. .sub--container{
  131. max-width: 1600px;
  132. margin: 0 auto;
  133. .sub--title--wrap{
  134. display: flex;
  135. justify-content: center;
  136. margin-bottom: 60px;
  137. .sub--title{
  138. color: #191919;
  139. font-size: 50px;
  140. font-weight: 800;
  141. display: inline;
  142. text-align: center;
  143. text-transform: capitalize;
  144. position: relative;
  145. &.mo{
  146. display: none;
  147. }
  148. &::after{
  149. position: absolute;
  150. content: '';
  151. display: inline-block;
  152. background: rgba(236, 50, 55, 0.40);
  153. width: calc(100% + 10px);
  154. bottom: 5px;
  155. left: -5px;
  156. z-index: -1;
  157. height: 40%;
  158. }
  159. }
  160. }
  161. .sub--cont--wrap{
  162. margin-bottom: 120px;
  163. .sub--desc{
  164. max-width: 1200px;
  165. margin: 0 auto;
  166. line-height: 1.7;
  167. color: #000;
  168. font-size: 18px;
  169. font-weight: 300;
  170. text-align: center;
  171. }
  172. .sub--point{
  173. display: flex;
  174. justify-content: space-between;
  175. flex-wrap: wrap;
  176. margin-top: 120px;
  177. .point--box{
  178. width: calc((100% - 120px) / 4);
  179. padding: 45px;
  180. border: 1px solid rgba(228, 228, 228, 0.93);
  181. background-color: #fff;
  182. border-radius: 30px;
  183. .ico{
  184. width: 60px;
  185. height: 60px;
  186. margin-bottom: 35px;
  187. background-image: url(../img/ico--air1.svg);
  188. }
  189. &:nth-child(2){
  190. .ico{
  191. background-image: url(../img/ico--air2.svg);
  192. }
  193. }
  194. &:nth-child(3){
  195. .ico{
  196. background-image: url(../img/ico--air3.svg);
  197. }
  198. }
  199. &:nth-child(4){
  200. .ico{
  201. background-image: url(../img/ico--air4.svg);
  202. }
  203. }
  204. >h5{
  205. margin-bottom: 20px;
  206. text-transform: uppercase;
  207. color: #191919;
  208. font-size: 20px;
  209. font-weight: 800;
  210. }
  211. >p{
  212. color: #191919;
  213. line-height: 1.7;
  214. font-size: 16px;
  215. font-weight: 300;
  216. }
  217. }
  218. }
  219. .map--wrap{
  220. height: 700px;
  221. }
  222. .map--desc{
  223. margin-top: 110px;
  224. h4{
  225. color: #191919;
  226. font-size: 30px;
  227. font-weight: 700;
  228. margin-bottom: 50px;
  229. text-transform: uppercase;
  230. }
  231. ul{
  232. list-style: none;
  233. display: flex;
  234. flex-wrap: wrap;
  235. gap: 25px;
  236. li{
  237. display: flex;
  238. align-items: center;
  239. font-size: 18px;
  240. font-weight: 300;
  241. text-transform: uppercase;
  242. span{
  243. margin-right: 5px;
  244. }
  245. strong{
  246. font-weight: 600;
  247. }
  248. .ico{
  249. min-width: 40px;
  250. margin-right: 20px;
  251. width: 40px;
  252. height: 40px;
  253. background-size: 18px 18px;
  254. border-radius: 50%;
  255. background-color: #1a1b20;
  256. }
  257. &:nth-child(1){
  258. width: 100%;
  259. .ico{
  260. background-image: url(../img/ico--map1.svg);
  261. }
  262. }
  263. &:nth-child(2){
  264. width: 300px;
  265. .ico{
  266. background-image: url(../img/ico--map2.svg);
  267. }
  268. }
  269. &:nth-child(3){
  270. width: calc(100% - 325px);
  271. .ico{
  272. background-image: url(../img/ico--map3.svg);
  273. }
  274. }
  275. &:nth-child(4){
  276. width: 300px;
  277. .ico{
  278. background-image: url(../img/ico--map4.svg);
  279. }
  280. }
  281. &:nth-child(5){
  282. width: calc(100% - 325px);
  283. .ico{
  284. background-image: url(../img/ico--map5.svg);
  285. }
  286. }
  287. }
  288. }
  289. }
  290. }
  291. .grt--wrap{
  292. margin-bottom: 150px;
  293. display: flex;
  294. flex-direction: column;
  295. .grt--part{
  296. display: flex;
  297. flex-direction: column;
  298. align-items: center;
  299. justify-content: center;
  300. .grt--title{
  301. padding-bottom: 70px;
  302. .grt--year{
  303. width: fit-content;
  304. color: #fff;
  305. font-size: 30px;
  306. line-height: 1;
  307. font-weight: 800;
  308. background-color: #ccc;
  309. padding: 23px 30px;
  310. position: relative;
  311. transition: all 0.3s;
  312. border-radius: 0 50px 50px 50px;
  313. &.active{
  314. background-color: #ec3237;
  315. .title--line{
  316. .line, .dot{
  317. background-color: #ec3237;
  318. }
  319. }
  320. .grt--txt{
  321. color: #EC3237;
  322. }
  323. }
  324. .grt--txt{
  325. color: #666;
  326. font-size: 20px;
  327. display: inline-block;
  328. font-weight: 800;
  329. text-align: right;
  330. position: absolute;
  331. top: 50%;
  332. transform: translateY(-50%);
  333. right: calc(100% + 50px);
  334. white-space: nowrap;
  335. }
  336. .title--line{
  337. position: absolute;
  338. z-index: 10;
  339. left: calc(50% - 3px);
  340. top: 100%;
  341. .line{
  342. display: inline-block;
  343. margin-left: 4.5px;
  344. width: 3px;
  345. height: 85px;
  346. background-color: #e4e4e4;
  347. }
  348. .dot{
  349. position: absolute;
  350. bottom: 0;
  351. left: 0;
  352. width: 12px;
  353. height: 12px;
  354. border-radius: 50%;
  355. background-color: #ccc;
  356. display: inline-block;
  357. }
  358. }
  359. }
  360. }
  361. .grt--desc{
  362. width: calc(50% + 3px);
  363. display: flex;
  364. flex-direction: column;
  365. margin-left: auto;
  366. .desc{
  367. display: flex;
  368. .desc--line{
  369. position: relative;
  370. &.active{
  371. .line{
  372. &::after{
  373. background-color: #ec3237;
  374. height: 100%;
  375. }
  376. }
  377. .dot{
  378. background-color: #ec3237;
  379. }
  380. }
  381. .line{
  382. position: relative;
  383. transition: all 0.3s;
  384. display: inline-block;
  385. width: 3px;
  386. margin-left: 4.5px;
  387. margin-top: 18px;
  388. height: 100%;
  389. background-color: #e4e4e4;
  390. &::after{
  391. transition: all 0.3s;
  392. content: '';
  393. position: absolute;
  394. width: 100%;
  395. height: 0;
  396. display: inline-block;
  397. }
  398. }
  399. .dot{
  400. transition: all 0.3s;
  401. position: absolute;
  402. bottom: -20px;
  403. left: 0;
  404. width: 12px;
  405. height: 12px;
  406. border-radius: 50%;
  407. z-index: 10;
  408. background-color: #ccc;
  409. display: inline-block;
  410. &.active{
  411. background-color: #ec3237;
  412. }
  413. }
  414. }
  415. .desc--txt{
  416. display: flex;
  417. flex-direction: column;
  418. gap: 40px;
  419. padding-left: 55px;
  420. padding-bottom: 70px;
  421. .desc--year{
  422. color: #191919;
  423. font-size: 25px;
  424. font-weight: 800;
  425. }
  426. ul{
  427. display: flex;
  428. gap: 40px;
  429. flex-direction: column;
  430. li{
  431. display: flex;
  432. > span{
  433. width: 70px;
  434. font-size: 18px;
  435. color: #333;
  436. font-weight: 700;
  437. min-width: 70px;
  438. }
  439. > p{
  440. color: #000;
  441. font-size: 16px;
  442. font-weight: 300;
  443. line-height: 1.7;
  444. }
  445. }
  446. }
  447. }
  448. }
  449. }
  450. }
  451. }
  452. .org--wrap{
  453. padding-top: 100px;
  454. >h3{
  455. color: #fff;
  456. font-size: 50px;
  457. font-weight: 800;
  458. margin-bottom: 90px;
  459. }
  460. .org--cont{
  461. .org--top{
  462. display: flex;
  463. align-items: center;
  464. margin-bottom: 100px;
  465. position: relative;
  466. .ceo--circle{
  467. width: 170px;
  468. min-width: 170px;
  469. height: 170px;
  470. border-radius: 50%;
  471. display: flex;
  472. justify-content: center;
  473. align-items: center;
  474. color: #131417;
  475. font-size: 19px;
  476. font-weight: 800;
  477. background: rgba(255, 255, 255, 0.80);
  478. backdrop-filter: blur(1.5px);
  479. &.type--2{
  480. background: rgba(255, 255, 255, 0.30);
  481. color: #fff;
  482. }
  483. &.type--3{
  484. color: #fff;
  485. background: rgba(19, 20, 23, 0.30);
  486. margin-left: -20px;
  487. }
  488. }
  489. .ceo--line{
  490. display: inline-block;
  491. width: 308px;
  492. height: 1px;
  493. background: rgba(255, 255, 255, 0.50);
  494. &.bottom--type{
  495. width: 1px;
  496. height: 100px;
  497. position: absolute;
  498. top: 100%;
  499. left: 85px;
  500. }
  501. }
  502. }
  503. .org--group--box{
  504. .org--box{
  505. width: 390px;
  506. height: 80px;
  507. color: #fff;
  508. font-weight: 600;
  509. font-size: 17px;
  510. border-radius: 18px;
  511. padding: 30px 25px;
  512. border: 1px solid rgba(255, 255, 255, 0.20);
  513. background: rgba(255, 255, 255, 0.10);
  514. backdrop-filter: blur(1.5px);
  515. }
  516. }
  517. .org--mid{
  518. position: relative;
  519. flex-wrap: wrap;
  520. display: flex;
  521. .org--line{
  522. width: 100px;
  523. height: 1px;
  524. margin-top: 40px;
  525. background-color: #fff;
  526. position: relative;
  527. &::after{
  528. content: '';
  529. width: 12px;
  530. height: 12px;
  531. right: 0;
  532. top: -6px;
  533. position: absolute;
  534. border-radius: 50%;
  535. background-color: #fff;
  536. display: inline-block;
  537. }
  538. &.bottom--type{
  539. &::after{
  540. display: none;
  541. }
  542. position: absolute;
  543. height: calc(100% - 80px);
  544. width: 1px;
  545. left: 25px;
  546. top: 80px;
  547. margin-top: 0;
  548. background: rgba(255, 255, 255, 0.50);
  549. display: inline-block;
  550. }
  551. }
  552. .org--group{
  553. padding-right: 50px;
  554. padding-bottom: 80px;
  555. position: relative;
  556. .org--line{
  557. position: absolute;
  558. width: 100%;
  559. top: 0;
  560. background-color: rgba(255, 255, 255, 0.50);
  561. &.none--circle{
  562. &::after{
  563. display: none;
  564. }
  565. &::before{
  566. display: none;
  567. }
  568. &.mt--120{
  569. margin-top: 120px;
  570. &::after{
  571. display: inline-block;
  572. left: -12px;
  573. }
  574. }
  575. }
  576. &:before{
  577. content: '';
  578. position: absolute;
  579. top: 0;
  580. display: inline-block;
  581. background-color: #fff;
  582. width: 50px;
  583. right: 0;
  584. height: 1px;
  585. }
  586. }
  587. p{
  588. color: #fff;
  589. font-size: 18px;
  590. font-weight: 700;
  591. text-transform: capitalize;
  592. margin-bottom: 45px;
  593. &.mb--60{
  594. margin-bottom: 60px;
  595. }
  596. }
  597. .org--list{
  598. list-style: none;
  599. display: flex;
  600. flex-direction: column;
  601. gap: 10px;
  602. &.w--240{
  603. li{
  604. width: 240px;
  605. }
  606. }
  607. li{
  608. background-color: #131417;
  609. border-radius: 12px;
  610. padding: 20px;
  611. color: #fff;
  612. font-size: 14px;
  613. width: 220px;
  614. text-transform: capitalize;
  615. font-weight: 400;
  616. }
  617. &.nation{
  618. li{
  619. text-transform: uppercase;
  620. }
  621. }
  622. }
  623. }
  624. }
  625. .org--bot{
  626. }
  627. }
  628. }
  629. }
  630. .quick--menu--wrap{
  631. position: fixed;
  632. width: 70px;
  633. display: flex;
  634. flex-direction: column;
  635. gap: 15px;
  636. right: 125px;
  637. top: calc(50% - 120px);
  638. opacity: 0;
  639. visibility: hidden;
  640. transition: all 0.3s;
  641. &.active{
  642. opacity: 1;
  643. visibility: visible;
  644. }
  645. >div{
  646. background-size: 30px 30px;
  647. background-repeat: no-repeat;
  648. border-radius: 50%;
  649. background-color: #fff;
  650. background-position: center;
  651. width: 70px;
  652. height: 70px;
  653. position: relative;
  654. cursor: pointer;
  655. transition: background-color 0.3s;
  656. border: 1px solid rgba(54, 55, 63, 0.50);
  657. background-image: url(../img/ico--quick1.svg);
  658. &.quick--contact{
  659. &:hover{
  660. .contact--bubble{
  661. opacity: 1;
  662. }
  663. }
  664. .contact--bubble{
  665. opacity: 0;
  666. pointer-events: none;
  667. transition: opacity 0.3s;
  668. position: absolute;
  669. top: 15px;
  670. right: calc(100% + 20px);
  671. padding: 15px 25px;
  672. background-color: #EC3237;
  673. border-radius: 50px;
  674. font-size: 17px;
  675. color: #fff;
  676. font-weight: 600;
  677. line-height: 1;
  678. text-transform: uppercase;
  679. white-space: nowrap;
  680. &::after{
  681. content: '';
  682. background-image: url(../img/ico--bubble.svg);
  683. position: absolute;
  684. right: -12px;
  685. top: 7px;
  686. background-size: 100%;
  687. background-repeat: no-repeat;
  688. width: 28px;
  689. height: 28px;
  690. display: inline-block;
  691. }
  692. }
  693. }
  694. &.quick--global{
  695. background-image: url(../img/ico--quick2.svg);
  696. &:hover{
  697. .global--bubble{
  698. opacity: 1;
  699. pointer-events: all;
  700. }
  701. }
  702. .global--bubble{
  703. opacity: 0;
  704. transition: opacity 0.3s;
  705. pointer-events: none;
  706. position: absolute;
  707. top: 0;
  708. right: calc(100% + 20px);
  709. width: 350px;
  710. padding: 25px 20px;
  711. border-radius: 20px;
  712. background-color: #EC3237;
  713. .global--title{
  714. display: flex;
  715. align-items: center;
  716. gap: 15px;
  717. margin-bottom: 20px;
  718. .ico{
  719. display: inline-block;
  720. width: 24px;
  721. height: 24px;
  722. background-image: url(../img/ico--global.svg);
  723. background-size: 100%;
  724. background-repeat: no-repeat;
  725. }
  726. h4{
  727. color: #fff;
  728. font-size: 20px;
  729. font-weight: 700;
  730. line-height: 1;
  731. }
  732. }
  733. .global--list{
  734. height: 300px;
  735. padding: 0 25px;
  736. overflow-y: scroll;
  737. &::-webkit-scrollbar {
  738. width: 8px;
  739. }
  740. &::-webkit-scrollbar-track {
  741. background: rgba(255, 255, 255, 0.1);
  742. border-radius: 4px;
  743. }
  744. &::-webkit-scrollbar-thumb {
  745. background: rgba(255, 255, 255, 0.5);
  746. border-radius: 4px;
  747. &:hover {
  748. background: rgba(255, 255, 255, 0.7);
  749. }
  750. }
  751. a{
  752. list-style: circle;
  753. position: relative;
  754. text-transform: capitalize;
  755. pointer-events: none;
  756. text-decoration: none;
  757. display: inline-block;
  758. width: 100%;
  759. margin-bottom: 15px;
  760. font-size: 17px;
  761. font-weight: 600;
  762. color: #fff;
  763. &::before{
  764. content: '';
  765. display: inline-block;
  766. width: 8px;
  767. height: 8px;
  768. border-radius: 50%;
  769. background-color: #fff;
  770. top: 8px;
  771. left: -20px;
  772. position: absolute;
  773. }
  774. &:last-child{
  775. margin-bottom: 0;
  776. }
  777. }
  778. }
  779. &::after{
  780. content: '';
  781. background-image: url(../img/ico--bubble.svg);
  782. position: absolute;
  783. right: -35px;
  784. top: 0px;
  785. background-repeat: no-repeat;
  786. background-position: center;
  787. background-size: 28px 28px;
  788. width: 70px;
  789. height: 70px;
  790. display: inline-block;
  791. }
  792. }
  793. }
  794. &:hover{
  795. border: none;
  796. background-color: #EC3237;
  797. box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
  798. background-image: url(../img/ico--quick1--white.svg);
  799. &.quick--global{
  800. background-image: url(../img/ico--quick2--white.svg);
  801. }
  802. }
  803. }
  804. >button{
  805. background-size: 24px 24px;
  806. background-repeat: no-repeat;
  807. background-color: #36373f;
  808. background-position: center;
  809. margin-top: 15px;
  810. border-radius: 0 50% 50% 50%;
  811. width: 70px;
  812. height: 70px;
  813. transform: rotate(45deg);
  814. cursor: pointer;
  815. transition: all 0.3s;
  816. border: 1px solid rgba(54, 55, 63, 0.50);
  817. position: relative;
  818. background-image: url(../img/ico--quick3.svg);
  819. }
  820. }
  821. }