style.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976
  1. @charset "UTF-8";
  2. /* 顏色設定 */
  3. :root {
  4. --color-scheme: dark;
  5. --blue: #0084b4;
  6. --indigo: #6610f2;
  7. --purple: #6f42c1;
  8. --pink: #e83e8c;
  9. --red: #dc3545;
  10. --orange: #fd7e14;
  11. --yellow: beige;
  12. --green: #28a745;
  13. --teal: #20c997;
  14. --cyan: #17a2b8;
  15. --white: #fff;
  16. --gray: #6c757d;
  17. --gray-dark: #212529;
  18. --primary: #0084b4;
  19. --secondary: #6c757d;
  20. --success: #28a745;
  21. --info: #17a2b8;
  22. --warning: beige;
  23. --danger: #dc3545;
  24. --light: #dee2e6;
  25. --dark: #212529;
  26. --breakpoint-xs: 0;
  27. --breakpoint-sm: 576px;
  28. --breakpoint-md: 768px;
  29. --breakpoint-lg: 992px;
  30. --breakpoint-xl: 1200px;
  31. --font-family-sans-serif: "Roboto Condensed", sans-serif;
  32. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
  33. ;
  34. }
  35. @media all {
  36. .bg-warning {
  37. color: #212529;
  38. }
  39. }
  40. @media all {
  41. #sidebar {
  42. background: #212529;
  43. }
  44. }
  45. .sidebar-close {
  46. background: transparent;
  47. }
  48. @media all {
  49. .sidebar-close {
  50. color: #f8f9fa;
  51. }
  52. }
  53. *,
  54. *::before,
  55. *::after {
  56. -webkit-box-sizing: border-box;
  57. box-sizing: border-box;
  58. }
  59. html {
  60. font-family: sans-serif;
  61. line-height: 1.15;
  62. -webkit-text-size-adjust: 100%;
  63. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  64. }
  65. article,
  66. aside,
  67. figcaption,
  68. figure,
  69. footer,
  70. header,
  71. hgroup,
  72. main,
  73. nav,
  74. section {
  75. display: block;
  76. }
  77. body {
  78. margin: 0;
  79. font-family: 'Noto Sans TC', sans-serif;
  80. font-weight: 400;
  81. line-height: 1.5;
  82. text-align: left;
  83. font-size: 1rem;
  84. letter-spacing: 2px;
  85. }
  86. @media all {
  87. body {
  88. color: #f8f9fa;
  89. background-color: #212529;
  90. }
  91. }
  92. [tabindex="-1"]:focus:not(:focus-visible) {
  93. outline: 0;
  94. }
  95. hr {
  96. -webkit-box-sizing: content-box;
  97. box-sizing: content-box;
  98. height: 0;
  99. overflow: visible;
  100. }
  101. p {
  102. margin-top: 0;
  103. margin-bottom: 1rem;
  104. }
  105. .mt-1 {
  106. margin-top: 0.25rem !important;
  107. }
  108. .mt-2 {
  109. margin-top: 0.5rem !important;
  110. }
  111. .mt-3 {
  112. margin-top: 1rem !important;
  113. }
  114. .mt-4 {
  115. margin-top: 1.5rem !important;
  116. }
  117. .mt-5 {
  118. margin-top: 3rem !important;
  119. }
  120. .mb-1 {
  121. margin-bottom: 0.25rem !important;
  122. }
  123. .mb-2 {
  124. margin-bottom: 0.5rem !important;
  125. }
  126. .mb-3 {
  127. margin-bottom: 1rem !important;
  128. }
  129. .mb-4 {
  130. margin-bottom: 1.5rem !important;
  131. }
  132. .mb-5 {
  133. margin-bottom: 3rem !important;
  134. }
  135. .ms-auto {
  136. margin-left: auto !important;
  137. }
  138. .ms-1 {
  139. margin-left: 0.25rem !important;
  140. }
  141. .ms-2 {
  142. margin-left: 0.5rem !important;
  143. }
  144. .ms-3 {
  145. margin-left: 1rem !important;
  146. }
  147. .ms-4 {
  148. margin-left: 1.5rem !important;
  149. }
  150. .ms-5 {
  151. margin-left: 3rem !important;
  152. }
  153. .me-auto {
  154. margin-right: auto !important;
  155. }
  156. .me-1 {
  157. margin-right: 0.25rem !important;
  158. }
  159. .me-2 {
  160. margin-right: 0.5rem !important;
  161. }
  162. .me-3 {
  163. margin-right: 1rem !important;
  164. }
  165. .me-4 {
  166. margin-right: 1.5rem !important;
  167. }
  168. .me-5 {
  169. margin-right: 3rem !important;
  170. }
  171. .mx-2 {
  172. margin-right: 0.5rem !important;
  173. margin-left: 0.5rem !important;
  174. }
  175. .p-1 {
  176. padding: 0.25rem !important;
  177. }
  178. .p-2 {
  179. padding: 0.5rem !important;
  180. }
  181. .p-3 {
  182. padding: 1rem !important;
  183. }
  184. .p-4 {
  185. padding: 1.5rem !important;
  186. }
  187. .p-5 {
  188. padding: 3rem !important;
  189. }
  190. .mx-auto {
  191. margin-right: auto !important;
  192. margin-left: auto !important;
  193. }
  194. .row {
  195. --bs-gutter-x: 1.5rem;
  196. --bs-gutter-y: 1rem;
  197. display: -webkit-box;
  198. display: -ms-flexbox;
  199. display: flex;
  200. -ms-flex-wrap: wrap;
  201. flex-wrap: wrap;
  202. margin-top: calc(var(--bs-gutter-y) * -1);
  203. margin-right: calc(var(--bs-gutter-x) / -2);
  204. margin-left: calc(var(--bs-gutter-x) / -2);
  205. }
  206. .col {
  207. -webkit-box-flex: 100%;
  208. -ms-flex: 100%;
  209. flex: 100%;
  210. }
  211. .w-50 {
  212. width: 50% !important;
  213. }
  214. .h-100 {
  215. height: 100% !important;
  216. }
  217. .row-cols-auto > * {
  218. -webkit-box-flex: 0;
  219. -ms-flex: 0 0 auto;
  220. flex: 0 0 auto;
  221. width: auto;
  222. }
  223. .row-cols-1 > * {
  224. -webkit-box-flex: 0;
  225. -ms-flex: 0 0 auto;
  226. flex: 0 0 auto;
  227. width: 100%;
  228. }
  229. .row-cols-2 > * {
  230. -webkit-box-flex: 0;
  231. -ms-flex: 0 0 auto;
  232. flex: 0 0 auto;
  233. width: 50%;
  234. }
  235. .row-cols-3 > * {
  236. -webkit-box-flex: 0;
  237. -ms-flex: 0 0 auto;
  238. flex: 0 0 auto;
  239. width: 33.3333333333%;
  240. }
  241. .row-cols-4 > * {
  242. -webkit-box-flex: 0;
  243. -ms-flex: 0 0 auto;
  244. flex: 0 0 auto;
  245. width: 25%;
  246. }
  247. .row-cols-5 > * {
  248. -webkit-box-flex: 0;
  249. -ms-flex: 0 0 auto;
  250. flex: 0 0 auto;
  251. width: 20%;
  252. }
  253. .row-cols-6 > * {
  254. -webkit-box-flex: 0;
  255. -ms-flex: 0 0 auto;
  256. flex: 0 0 auto;
  257. width: 16.6666666667%;
  258. }
  259. @media (min-width: 576px) {
  260. .col-sm {
  261. -webkit-box-flex: 1;
  262. -ms-flex: 1 0 0%;
  263. flex: 1 0 0%;
  264. }
  265. .row-cols-sm-auto > * {
  266. -webkit-box-flex: 0;
  267. -ms-flex: 0 0 auto;
  268. flex: 0 0 auto;
  269. width: auto;
  270. }
  271. .row-cols-sm-1 > * {
  272. -webkit-box-flex: 0;
  273. -ms-flex: 0 0 auto;
  274. flex: 0 0 auto;
  275. width: 100%;
  276. }
  277. .row-cols-sm-2 > * {
  278. -webkit-box-flex: 0;
  279. -ms-flex: 0 0 auto;
  280. flex: 0 0 auto;
  281. width: 50%;
  282. }
  283. .row-cols-sm-3 > * {
  284. -webkit-box-flex: 0;
  285. -ms-flex: 0 0 auto;
  286. flex: 0 0 auto;
  287. width: 33.3333333333%;
  288. }
  289. .row-cols-sm-4 > * {
  290. -webkit-box-flex: 0;
  291. -ms-flex: 0 0 auto;
  292. flex: 0 0 auto;
  293. width: 25%;
  294. }
  295. .row-cols-sm-5 > * {
  296. -webkit-box-flex: 0;
  297. -ms-flex: 0 0 auto;
  298. flex: 0 0 auto;
  299. width: 20%;
  300. }
  301. .row-cols-sm-6 > * {
  302. -webkit-box-flex: 0;
  303. -ms-flex: 0 0 auto;
  304. flex: 0 0 auto;
  305. width: 16.6666666667%;
  306. }
  307. .p-sm-1 {
  308. padding: 0.25rem !important;
  309. }
  310. .p-sm-2 {
  311. padding: 0.5rem !important;
  312. }
  313. .p-sm-3 {
  314. padding: 1rem !important;
  315. }
  316. .p-sm-4 {
  317. padding: 1.5rem !important;
  318. }
  319. .p-sm-5 {
  320. padding: 3rem !important;
  321. }
  322. }
  323. @media (min-width: 992px) {
  324. .col-lg {
  325. -webkit-box-flex: 100%;
  326. -ms-flex: 100%;
  327. flex: 100%;
  328. }
  329. .row-cols-lg-auto > * {
  330. -webkit-box-flex: 0;
  331. -ms-flex: 0 0 auto;
  332. flex: 0 0 auto;
  333. width: auto;
  334. }
  335. .row-cols-lg-1 > * {
  336. -webkit-box-flex: 0;
  337. -ms-flex: 0 0 auto;
  338. flex: 0 0 auto;
  339. width: 100%;
  340. }
  341. .row-cols-lg-2 > * {
  342. -webkit-box-flex: 0;
  343. -ms-flex: 0 0 auto;
  344. flex: 0 0 auto;
  345. width: 50%;
  346. }
  347. .row-cols-lg-3 > * {
  348. -webkit-box-flex: 0;
  349. -ms-flex: 0 0 auto;
  350. flex: 0 0 auto;
  351. width: 33.3333333333%;
  352. }
  353. .row-cols-lg-4 > * {
  354. -webkit-box-flex: 0;
  355. -ms-flex: 0 0 auto;
  356. flex: 0 0 auto;
  357. width: 25%;
  358. }
  359. .row-cols-lg-5 > * {
  360. -webkit-box-flex: 0;
  361. -ms-flex: 0 0 auto;
  362. flex: 0 0 auto;
  363. width: 20%;
  364. }
  365. .row-cols-lg-6 > * {
  366. -webkit-box-flex: 0;
  367. -ms-flex: 0 0 auto;
  368. flex: 0 0 auto;
  369. width: 16.6666666667%;
  370. }
  371. }
  372. @media (min-width: 1400px) {
  373. .col-xxl {
  374. -webkit-box-flex: 1;
  375. -ms-flex: 1 0 0%;
  376. flex: 1 0 0%;
  377. }
  378. .row-cols-xxl-auto > * {
  379. -webkit-box-flex: 0;
  380. -ms-flex: 0 0 auto;
  381. flex: 0 0 auto;
  382. width: auto;
  383. }
  384. .row-cols-xxl-1 > * {
  385. -webkit-box-flex: 0;
  386. -ms-flex: 0 0 auto;
  387. flex: 0 0 auto;
  388. width: 100%;
  389. }
  390. .row-cols-xxl-2 > * {
  391. -webkit-box-flex: 0;
  392. -ms-flex: 0 0 auto;
  393. flex: 0 0 auto;
  394. width: 50%;
  395. }
  396. .row-cols-xxl-3 > * {
  397. -webkit-box-flex: 0;
  398. -ms-flex: 0 0 auto;
  399. flex: 0 0 auto;
  400. width: 33.3333333333%;
  401. }
  402. .row-cols-xxl-4 > * {
  403. -webkit-box-flex: 0;
  404. -ms-flex: 0 0 auto;
  405. flex: 0 0 auto;
  406. width: 25%;
  407. }
  408. .row-cols-xxl-5 > * {
  409. -webkit-box-flex: 0;
  410. -ms-flex: 0 0 auto;
  411. flex: 0 0 auto;
  412. width: 20%;
  413. }
  414. .row-cols-xxl-6 > * {
  415. -webkit-box-flex: 0;
  416. -ms-flex: 0 0 auto;
  417. flex: 0 0 auto;
  418. width: 16.6666666667%;
  419. }
  420. }
  421. .toggle,
  422. [id^=drop] {
  423. display: none;
  424. }
  425. /* Change ' +' in order to change the Dropdown symbol */
  426. li > a:after {
  427. content: ' +';
  428. }
  429. li > a:only-child:after {
  430. content: '';
  431. }
  432. /* Media Queries
  433. --------------------------------------------- */
  434. .d-none {
  435. display: none !important;
  436. }
  437. .d-block {
  438. display: block !important;
  439. }
  440. @media (min-width: 576px) {
  441. .d-sm-block {
  442. display: block !important;
  443. }
  444. }
  445. @media (min-width: 768px) {
  446. .d-md-block {
  447. display: block !important;
  448. }
  449. .d-md-none {
  450. display: none !important;
  451. }
  452. }
  453. @media (min-width: 992px) {
  454. .d-lg-none {
  455. display: none !important;
  456. }
  457. }
  458. input[type="radio"][class="style"]:checked + label {
  459. color: white;
  460. background: #6666ff;
  461. }
  462. .align-items-center {
  463. -webkit-box-align: center !important;
  464. -ms-flex-align: center !important;
  465. align-items: center !important;
  466. }
  467. .order-1 {
  468. -webkit-box-ordinal-group: 2 !important;
  469. -ms-flex-order: 1 !important;
  470. order: 1 !important;
  471. }
  472. .order-2 {
  473. -webkit-box-ordinal-group: 3 !important;
  474. -ms-flex-order: 2 !important;
  475. order: 2 !important;
  476. }
  477. .title {
  478. font-size: 1.3rem;
  479. }
  480. .footer {
  481. color: #656565;
  482. }
  483. .footer a {
  484. color: #656565;
  485. text-decoration: none;
  486. }
  487. .footer a:hover {
  488. color: #78AD42;
  489. }
  490. .footer h5 {
  491. color: black;
  492. font-weight: 600;
  493. padding-bottom: 15px;
  494. }
  495. .footer .link {
  496. padding-bottom: 20px;
  497. }
  498. @media (min-width: 992px) {
  499. .order-lg-1 {
  500. -webkit-box-ordinal-group: 2 !important;
  501. -ms-flex-order: 1 !important;
  502. order: 1 !important;
  503. }
  504. .order-lg-2 {
  505. -webkit-box-ordinal-group: 3 !important;
  506. -ms-flex-order: 2 !important;
  507. order: 2 !important;
  508. }
  509. }
  510. /* Airspace Template SCSS */
  511. .w-25 {
  512. width: 25% !important;
  513. }
  514. .w-50 {
  515. width: 50% !important;
  516. }
  517. .w-75 {
  518. width: 75% !important;
  519. }
  520. .w-100 {
  521. width: 100% !important;
  522. }
  523. .blank {
  524. height: 130px;
  525. width: 100%;
  526. background-color: white;
  527. }
  528. .btn-yellow {
  529. outline: none;
  530. border: 3px solid #FFCC00;
  531. background-color: transparent;
  532. padding: .5rem 1rem;
  533. color: #FFCC00;
  534. -webkit-transition: all .4s;
  535. transition: all .4s;
  536. }
  537. .btn-yellow:hover {
  538. background-color: rgba(255, 255, 255, 0.246);
  539. }
  540. .btn-yellow__fill {
  541. color: black;
  542. background-color: #FFCC00;
  543. -webkit-transition: all .4s;
  544. transition: all .4s;
  545. }
  546. .btn-yellow__fill:hover {
  547. background-color: #ffcc0078;
  548. }
  549. .btn-blue {
  550. display: inline-block;
  551. outline: none;
  552. border: 3px solid #2980B8;
  553. background-color: #2980B8;
  554. color: white;
  555. padding: .5rem 1rem;
  556. -webkit-transition: all .4s;
  557. transition: all .4s;
  558. }
  559. .btn-blue:hover {
  560. background-color: #0e7fc5;
  561. }
  562. .nav-link {
  563. cursor: pointer;
  564. }
  565. .hero {
  566. height: 42rem;
  567. background-position: center;
  568. background-size: cover;
  569. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(41, 128, 184, 0.8)), to(rgba(41, 128, 184, 0.1))), url(../imgs/hero-img.jpg);
  570. background-image: linear-gradient(to bottom, rgba(41, 128, 184, 0.8), rgba(41, 128, 184, 0.1)), url(../imgs/hero-img.jpg);
  571. }
  572. .hero__imgfr {
  573. margin: 0 9rem;
  574. -webkit-transform: translateY(-90px);
  575. transform: translateY(-90px);
  576. position: relative;
  577. }
  578. @media (max-width: 992px) {
  579. .hero__imgfr {
  580. margin: 0 3rem;
  581. }
  582. }
  583. @media (max-width: 576px) {
  584. .hero__imgfr {
  585. margin: 0 0rem;
  586. }
  587. }
  588. .hero__stamp {
  589. position: absolute;
  590. left: -6rem;
  591. bottom: -4rem;
  592. width: 150px;
  593. }
  594. @media (max-width: 992px) {
  595. .hero__stamp {
  596. width: 120px;
  597. }
  598. }
  599. @media (max-width: 576px) {
  600. .hero__stamp {
  601. -webkit-transform: translateX(-50%);
  602. transform: translateX(-50%);
  603. left: 50%;
  604. bottom: -3rem;
  605. }
  606. }
  607. .hero__underline {
  608. width: 50%;
  609. height: 6px;
  610. background-color: transparent;
  611. border: none;
  612. border-top: 2px solid black;
  613. border-bottom: 2px solid black;
  614. margin: 2.5rem auto;
  615. }
  616. .hero__h2 {
  617. font-size: 3rem;
  618. letter-spacing: 2px;
  619. }
  620. @media (max-width: 992px) {
  621. .hero__h2 {
  622. margin: 0 6rem;
  623. }
  624. }
  625. @media (max-width: 576px) {
  626. .hero__h2 {
  627. font-size: 2rem;
  628. margin: 0rem;
  629. }
  630. }
  631. .hero__p {
  632. color: black;
  633. margin: 0 12rem;
  634. }
  635. @media (max-width: 992px) {
  636. .hero__p {
  637. margin: 0 6rem;
  638. }
  639. }
  640. .text-dark {
  641. color: black;
  642. }
  643. .footer {
  644. background-color: #CAD7E6;
  645. padding: 3rem;
  646. }
  647. .footer .right-column {
  648. border-left: 1px solid black;
  649. }
  650. @media (max-width: 830px) {
  651. .footer .right-column {
  652. border-left: none;
  653. }
  654. }
  655. .footer .row {
  656. display: -webkit-box;
  657. display: -ms-flexbox;
  658. display: flex;
  659. -webkit-box-align: center;
  660. -ms-flex-align: center;
  661. align-items: center;
  662. }
  663. .footer .footer-aigirl {
  664. font-weight: 600;
  665. font-size: 2rem;
  666. margin-top: 1rem;
  667. margin-bottom: 2.5rem;
  668. }
  669. .footer .footer-follow {
  670. font-size: 1.6rem;
  671. margin-bottom: 1rem;
  672. color: black;
  673. font-size: 1rem;
  674. font-weight: 600;
  675. margin-top: 2rem;
  676. }
  677. .footer .footer-socials a {
  678. margin-right: 5px;
  679. }
  680. .logos {
  681. padding-bottom: 10rem;
  682. }
  683. .logos__img {
  684. width: 22rem;
  685. height: 12rem;
  686. background-size: contain;
  687. background-repeat: no-repeat;
  688. background-position: center;
  689. }
  690. @media (max-width: 576px) {
  691. .logos {
  692. padding-bottom: 3rem;
  693. }
  694. }
  695. .cards .card__imgfr {
  696. position: relative;
  697. cursor: pointer;
  698. }
  699. .cards .card__imgfr::before {
  700. content: " ";
  701. position: absolute;
  702. width: 100%;
  703. height: 100%;
  704. top: 0;
  705. left: 0;
  706. background-color: rgba(0, 0, 0, 0.25);
  707. display: none;
  708. }
  709. .cards .card__imgfr:hover::before {
  710. display: block;
  711. }
  712. .cards .card__imgfr:hover .card__comingSoon {
  713. display: inline-block;
  714. }
  715. .cards .card__play {
  716. position: absolute;
  717. left: 50%;
  718. top: 50%;
  719. -webkit-transform: translate(-50%, -50%);
  720. transform: translate(-50%, -50%);
  721. }
  722. .cards .card-text {
  723. color: #848484;
  724. }
  725. .cards .card-learn {
  726. color: #2980B8;
  727. text-decoration: none;
  728. }
  729. .cards .card-body {
  730. height: 340px;
  731. }
  732. .cards .card__comingSoon {
  733. display: inline-block;
  734. border: 2px solid white;
  735. font-weight: 600;
  736. color: white;
  737. padding: .3rem;
  738. position: absolute;
  739. left: 50%;
  740. top: 50%;
  741. -webkit-transform: translate(-50%, -50%);
  742. transform: translate(-50%, -50%);
  743. display: none;
  744. }
  745. .cards .card-img-top {
  746. height: auto;
  747. }
  748. @media (max-width: 576px) {
  749. .cards .card-img-top {
  750. height: auto;
  751. }
  752. }
  753. .condition .imgfr {
  754. position: absolute;
  755. left: 5rem;
  756. bottom: -3.5rem;
  757. width: 22rem;
  758. height: 22rem;
  759. background-image: url(../imgs/pexels-bess-hamiti-35537.png);
  760. background-size: cover;
  761. background-repeat: no-repeat;
  762. background-position: center;
  763. }
  764. @media (max-width: 860px) {
  765. .condition .imgfr {
  766. width: 16rem;
  767. height: 16rem;
  768. }
  769. }
  770. .carousels {
  771. color: black;
  772. background-color: white;
  773. }
  774. .carousels .items > .item {
  775. width: 100%;
  776. height: 16rem;
  777. }
  778. .carousels .strong {
  779. font-size: 2rem;
  780. position: relative;
  781. z-index: 2;
  782. }
  783. .carousels .strong::after {
  784. position: absolute;
  785. width: 100%;
  786. height: .8rem;
  787. background-color: #FFCC00;
  788. left: 0;
  789. bottom: 0;
  790. content: "";
  791. z-index: -1;
  792. }
  793. .carousels .left_quotation, .carousels .right_quotation {
  794. position: absolute;
  795. }
  796. .carousels .left_quotation {
  797. left: 0;
  798. top: 0;
  799. }
  800. .carousels .right_quotation {
  801. right: 0;
  802. bottom: 0;
  803. }
  804. .footer-contacts {
  805. width: 60%;
  806. }
  807. @media (max-width: 860px) {
  808. .footer-contacts {
  809. width: 90%;
  810. }
  811. }
  812. @media (min-width: 1400px) {
  813. .hero .container {
  814. max-width: 1190px;
  815. }
  816. }
  817. @media (min-width: 1400px) {
  818. .condition .container {
  819. max-width: 1190px;
  820. }
  821. }
  822. .dropdown-menu__bg {
  823. background-color: white;
  824. }
  825. @media (max-width: 576px) {
  826. .dropdown-menu__bg {
  827. background-color: transparent;
  828. }
  829. }
  830. .dropdown-menu__bg a {
  831. color: black;
  832. }
  833. @media (max-width: 576px) {
  834. .dropdown-menu__bg a {
  835. color: white;
  836. }
  837. }
  838. /*# sourceMappingURL=style.css.map */