Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

site.css 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754
  1. /*General Style*/
  2. @font-face {
  3. font-family: 'Space Grotesk';
  4. src: url('../assets/fonts/SpaceGrotesk-VariableFont_wght.ttf') format('truetype');
  5. font-style: normal;
  6. }
  7. @font-face {
  8. font-family: 'Nasalization Rg';
  9. src: url('../assets/fonts/Nasalization_Rg.otf') format('truetype');
  10. font-style: normal;
  11. }
  12. * {
  13. margin: 0;
  14. font-family: 'Space Grotesk', sans-serif;
  15. color: #001F3F;
  16. }
  17. h1 {
  18. font-size: clamp(2em, 5vw, 6.25em);
  19. font-weight: 400;
  20. }
  21. h2 {
  22. font-size: clamp(1.5em, 3.906vw, 4.688em);
  23. font-weight: 400;
  24. }
  25. h4 {
  26. font-size: clamp(1em, 2.6vw, 3.063em);
  27. font-weight: 400;
  28. }
  29. h5 {
  30. font-size: clamp(1.83em, 1.563vw, 1.875em);
  31. font-weight: 400;
  32. }
  33. .hero-section{
  34. width: 100%;
  35. min-height: 120vh;
  36. }
  37. .hero-section video{
  38. height: 120vh;
  39. object-fit: cover;
  40. filter: brightness(50%);
  41. }
  42. .hero-section .text-highlight{
  43. z-index: 10;
  44. top:30%;
  45. left: 50%;
  46. transform: translate(-50%,-50%);
  47. width:85%;
  48. position: absolute;
  49. text-align: center;
  50. }
  51. .hero-section .cta{
  52. z-index: 10;
  53. bottom:25%;
  54. left: 50%;
  55. transform: translate(-50%,-50%);
  56. width: 100%;
  57. }
  58. .hero-section .text-highlight .title{
  59. color: #FFF;
  60. font-size: clamp(3.3em, 5vw, 5.5em);
  61. font-weight: 600;
  62. line-height: 60px;
  63. margin-bottom: 30px
  64. }
  65. .hero-section .text-highlight .description{
  66. font-size: 1.6em;
  67. width: 90%;
  68. }
  69. .p-small {
  70. font-size: clamp(0.85em, 1.042vw, 1.25em);
  71. }
  72. p {
  73. font-size: clamp(1em, 1.2vw, 1.6em);
  74. }
  75. .px-6 {
  76. padding-right: 1rem;
  77. padding-left: 1rem;
  78. }
  79. .btn-amics {
  80. font-size: clamp(0.8em, 1vw, 1.2em);
  81. background-color: rgba(255, 255, 255, 0);
  82. color: #000;
  83. border: 3px solid rgb(212, 175, 55);
  84. transition: all 0.2s ease-in-out;
  85. padding: 16px 60px;
  86. border-radius: 50px;
  87. }
  88. .btn-amics:hover {
  89. background-color: rgb(212, 175, 55);
  90. color: #FFF;
  91. }
  92. .btn-amics-small {
  93. font-size: clamp(0.8em, 1vw, 1.2em);
  94. background-color: rgba(255, 255, 255, 0);
  95. color: #FFF;
  96. border: 2px solid rgb(212, 175, 55);
  97. transition: all 0.2s ease-in-out;
  98. padding: 16px 30px;
  99. border-radius: 50px;
  100. }
  101. .btn-amics-small:hover {
  102. background-color: rgb(212, 175, 55);
  103. color: #FFF;
  104. }
  105. .text-primary2 {
  106. color: #D4AF37
  107. }
  108. .text-secondary2 {
  109. color: #909090
  110. }
  111. .navbar-custom {
  112. background: rgba(0, 0, 0, 0.4) !important;
  113. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  114. }
  115. .navbar-custom .navbar-brand,
  116. .navbar-custom .nav-link {
  117. font-size: clamp(0.85em, 1.042vw, 1.25em);
  118. color: white !important;
  119. /* White text */
  120. }
  121. .navbar-custom .nav-link:hover {
  122. color: #f8d210 !important;
  123. /* Highlight color */
  124. }
  125. .navbar-custom .navbar-toggler {
  126. background: transparent !important;
  127. /* Transparent background */
  128. border: none;
  129. /* Remove border */
  130. }
  131. .navbar-custom .navbar-toggler-icon {
  132. filter: brightness(0) invert(1);
  133. /* Makes the icon white */
  134. }
  135. .card {
  136. border: none;
  137. border-radius: 25px;
  138. overflow: hidden;
  139. }
  140. .card-img-top {
  141. border-radius: 50px;
  142. }
  143. .round-btn {
  144. width: 60px;
  145. height: 60px;
  146. border-radius: 50%;
  147. display: flex;
  148. align-items: center;
  149. justify-content: center;
  150. overflow: hidden;
  151. padding: 0;
  152. }
  153. .round-btn img {
  154. width: 60%;
  155. height: auto;
  156. }
  157. /* HOME */
  158. .section {
  159. padding-top: 40px;
  160. border-radius: 50px 50px 0 0;
  161. transform: translateY(-7%);
  162. }
  163. .section .text-highlight{
  164. font-size: clamp(3em, 5vw, 6.25em);
  165. font-weight: 500;
  166. width: 90%;
  167. margin: 0 auto;
  168. margin-bottom: 100px;
  169. }
  170. .section .text-highlight2{
  171. margin-bottom: 50px;
  172. }
  173. .section .text-highlight2 img{
  174. vertical-align:middle;
  175. margin-bottom: 45px;
  176. width: 70%;
  177. vertical-align:middle;
  178. }
  179. .section .text-highlight3{
  180. font-size: clamp(3em, 5vw, 6.25em);
  181. font-weight: 500;
  182. margin-bottom: 50px;
  183. }
  184. .amics-logo{
  185. width: 110px
  186. }
  187. .section2 {
  188. border-radius: 50px 50px 0 0;
  189. background-image: #FFF;
  190. }
  191. .section2 .inner{
  192. padding-top: 40px;
  193. border-radius: 50px 50px 0 0;
  194. transform: translateY(2%);
  195. background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(0,41,105,1) 70%, rgba(50,47,36,1) 100%);
  196. }
  197. .logo-text-highlight{
  198. margin-bottom: 50px;
  199. }
  200. .logo-text-highlight img{
  201. vertical-align:middle;
  202. margin-bottom: 45px;
  203. width: 70%;
  204. vertical-align:middle;
  205. }
  206. .section2 .text-highlight3{
  207. width: 80%;
  208. margin-bottom: 50px;
  209. color: #FFF;
  210. }
  211. .section2 .text-highlight4{
  212. width: 100%;
  213. color: #FFF;
  214. }
  215. .section3 {
  216. padding-top: 50px;
  217. border-radius: 50px 50px 0 0;
  218. }
  219. .section3 .text-highlight3{
  220. margin-bottom: 30px;
  221. padding-left:30px;
  222. border-left: 5px solid rgb(212, 175, 55);
  223. }
  224. .section3 .text-highlight4{
  225. margin-bottom: 50px;
  226. }
  227. .section4 {
  228. border-bottom: 2px solid #ddd;
  229. border-radius: 150px 150px 0 0;
  230. }
  231. .section5 {
  232. padding: 70px;
  233. border-radius: 150px 150px 0 0;
  234. transform: translateY(-10%);
  235. }
  236. .video-player {
  237. width: 100vw;
  238. height: 100vh;
  239. display: flex;
  240. justify-content: center;
  241. align-items: center;
  242. background: black;
  243. }
  244. .video-player video {
  245. width: 100%;
  246. height: 100%;
  247. object-fit: cover;
  248. }
  249. /*PRICING PAGE*/
  250. .pricing-hero-section {
  251. min-height: 120vh;
  252. background: url(../assets/images/wallpaper7.jpg) no-repeat center center;
  253. }
  254. .pricing-section1 {
  255. padding-top: 105px;
  256. border-radius: 150px 150px 0 0;
  257. transform: translateY(-7%);
  258. }
  259. .pricing-section2 {
  260. border-bottom: 2px solid #ddd;
  261. border-radius: 150px 150px 0 0;
  262. }
  263. .pricing-section3 {}
  264. .pricing-section4 {
  265. padding-top: 80px;
  266. }
  267. .trial-banner {}
  268. .trial-banner h3,
  269. .trial-banner i {
  270. color: #FFF;
  271. font-weight: 600;
  272. display: inline;
  273. margin-right: 10px;
  274. }
  275. .pricing-card {
  276. border-radius: 50px;
  277. overflow: hidden;
  278. background-color: rgba(247, 247, 247, 1);
  279. min-height: 100px;
  280. transition: all 0.3s ease-in-out;
  281. position: relative;
  282. }
  283. .pricing-card.middle {
  284. background: linear-gradient(195deg,
  285. rgba(0, 31, 63, 1) 45%,
  286. rgba(212, 175, 55, 1) 100%);
  287. transition: all 0.3s ease-in-out;
  288. }
  289. .pricing-card:hover.middle {
  290. background: linear-gradient(to right,
  291. rgba(247, 247, 247, 0),
  292. /* Start with 80% opacity */
  293. rgba(200, 200, 200, 0)
  294. /* End with 50% opacity */
  295. );
  296. }
  297. .pricing-card.middle span,
  298. .pricing-card.middle p,
  299. .pricing-card.middle h5,
  300. .pricing-card.middle li,
  301. .pricing-card.middle button {
  302. color: #FFF !important;
  303. }
  304. .pricing-card:hover {
  305. border-radius: 50px;
  306. background-color: rgba(247, 247, 247, 0);
  307. min-height: 100px;
  308. transition: all 0.3s ease-in-out;
  309. position: relative;
  310. }
  311. .pricing-card:hover span,
  312. .pricing-card:hover h5,
  313. .pricing-card:hover li,
  314. .pricing-card:hover button {
  315. color: #FFF !important;
  316. }
  317. .pricing-card ul {
  318. list-style-image: url(../assets/images/checklist-icon.png);
  319. }
  320. .pricing-card ul li {
  321. font-size: clamp(1.83em, 1.563vw, 1.875em);
  322. margin-bottom: 22px;
  323. }
  324. .pricing-card .pricepoint {
  325. font-size: clamp(1.23em, 1.302vw, 1.463em);
  326. }
  327. #pricng-email-input {
  328. font-size: clamp(0.8em, 1vw, 1.2em);
  329. color: #FFF;
  330. }
  331. #pricng-email-input::placeholder {
  332. color: #FFF;
  333. font-weight: bold;
  334. font-size: clamp(0.8em, 1vw, 1.2em);
  335. opacity: 1;
  336. /* Firefox */
  337. }
  338. #pricng-email-input2 {
  339. font-size: clamp(0.8em, 1vw, 1.2em);
  340. color: #000;
  341. background-color: rgba(255, 255, 255, 0.2);
  342. border: 1px solid gray;
  343. padding: 20px 50px;
  344. border-radius: 50px;
  345. }
  346. #pricng-email-input2::placeholder {
  347. color: #000;
  348. font-weight: bold;
  349. font-size: clamp(0.8em, 1vw, 1.2em);
  350. opacity: 1;
  351. /* Firefox */
  352. }
  353. .plan-feature-card {
  354. background-color: #FFF;
  355. box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  356. border-radius: 50px;
  357. padding: 30px;
  358. }
  359. /* CONTACT PAGE */
  360. .contact-section {
  361. padding-top: 80px;
  362. }
  363. .bg-contact {
  364. background: url(../assets/images/wallpaper8.jpg);
  365. padding-top: 50%;
  366. background-size: cover;
  367. }
  368. .contact-form {
  369. background-color: #F7F7F7;
  370. border: none;
  371. }
  372. .contact-form input {
  373. border: none;
  374. transition: all 0.3s ease-in-out;
  375. outline: none;
  376. padding: 10px 15px;
  377. border-radius: 50px;
  378. border: 1px solid #ADADAD;
  379. font-size: clamp(1em, 1.242vw, 1.45em);
  380. margin-bottom: 20px;
  381. }
  382. .contact-form input:focus-visible {
  383. border: none;
  384. outline: 1px solid #D4AF37;
  385. }
  386. .contact-form input::placeholder {
  387. color: #ADADAD;
  388. }
  389. .contact-form .btn-submit {
  390. font-size: clamp(0.8em, 1vw, 1.2em);
  391. color: #FFF;
  392. border: 3px solid rgb(212, 175, 55);
  393. background-color: rgb(212, 175, 55);
  394. transition: all 0.2s ease-in-out;
  395. padding: 16px 60px;
  396. border-radius: 50px;
  397. width: 100%;
  398. }
  399. .contact-form .btn-submit:hover {
  400. background-color: rgba(255, 255, 255, 0);
  401. color: #000;
  402. }
  403. /* NAVBAR */
  404. .navbar-innner-container {
  405. padding: 10px 20px;
  406. }
  407. /* FOOTER */
  408. .footer-text {
  409. font-family: 'Nasalization Rg', sans-serif !important;
  410. font-weight: 400;
  411. margin-bottom: 40px;
  412. font-size: clamp(2em, 4.7vw, 5.64em);
  413. }
  414. .footer-text span {
  415. font-family: 'Nasalization Rg', sans-serif !important;
  416. border-bottom: 1px solid;
  417. padding: 0;
  418. }
  419. .footer-section {
  420. border-bottom: 2px solid #ddd;
  421. border-radius: 150px 150px 0 0;
  422. background: linear-gradient(to left, #D4AF37, #001F3F);
  423. padding-top: 20px;
  424. padding-bottom: 0;
  425. }
  426. .footer-inner {
  427. padding-top: 105px;
  428. border-radius: 140px 140px 0 0;
  429. background: rgb(0, 31, 63);
  430. background: linear-gradient(195deg, rgba(0, 31, 63, 1) 36%, rgba(75, 64, 25, 1) 100%);
  431. }
  432. .footer-menu-container {
  433. padding: 0px;
  434. }
  435. .footer-column {
  436. margin-bottom: 40px;
  437. }
  438. .footer-column h5 {
  439. font-weight: 400;
  440. color: #FFF;
  441. letter-spacing: 1px;
  442. margin-bottom: 30px;
  443. }
  444. .footer-column ul {
  445. padding: 0;
  446. list-style: none;
  447. }
  448. .footer-column ul li {
  449. margin-bottom: 15px;
  450. }
  451. .footer-column ul li a {
  452. color: #FFF;
  453. text-decoration: none;
  454. transition: all 0.3s ease-in-out;
  455. }
  456. .footer-column ul li a:hover {
  457. color: #D4AF37;
  458. transform: translateX(5px);
  459. }
  460. .footer-bottom {
  461. text-align: center;
  462. padding-top: 15px;
  463. font-size: 14px;
  464. color: #ccc;
  465. }
  466. .footer-link-menu-icon {
  467. font-size: 25px;
  468. gap: 35px
  469. }
  470. .footer-link-menu2 {
  471. gap: 30px;
  472. list-style: none;
  473. }
  474. .footer-link-menu2 li a {
  475. color: #FFF;
  476. text-decoration: none;
  477. transition: color 0.3s ease-in-out;
  478. }
  479. .footer-link-menu2 li a:hover {
  480. color: #D4AF37;
  481. }
  482. /*BOOTSTRAP RESPONSIVE*/
  483. /* Small devices (≥576px) - sm */
  484. @media (min-width: 576px) {
  485. .footer-menu-container {
  486. padding: 0px 60px;
  487. }
  488. }
  489. /* Medium devices (≥768px) - md */
  490. @media (min-width: 768px) {
  491. .hero-section .cta{
  492. z-index: 10;
  493. bottom:15%;
  494. left: 50%;
  495. transform: translate(-50%,-50%);
  496. width: 100%;
  497. }
  498. .section {
  499. padding-top: 105px;
  500. border-radius: 150px 150px 0 0;
  501. transform: translateY(-7%);
  502. }
  503. .section .text-highlight{
  504. font-size: clamp(3em, 5vw, 6.25em);
  505. font-weight: 400;
  506. margin: 0 auto;
  507. width: 100%;
  508. margin-bottom: 100px;
  509. }
  510. .section .text-highlight2{
  511. margin-bottom: 50px;
  512. }
  513. .section .text-highlight2 img{
  514. vertical-align:middle;
  515. margin-right: 45px;
  516. width: 120px;
  517. vertical-align:middle;
  518. }
  519. .section .text-highlight3{
  520. font-size: clamp(3em, 5vw, 6.25em);
  521. font-weight: 400;
  522. margin-bottom: 50px;
  523. }
  524. .amics-logo{
  525. width: 250px
  526. }
  527. .section2 {
  528. border-bottom: 2px solid #ddd;
  529. border-radius: 150px 150px 0 0;
  530. background-image: linear-gradient(to right, #D4AF37 , #001F3F);
  531. transform: translateY(-5%);
  532. }
  533. .section2 .inner{
  534. padding-top: 105px;
  535. border-radius: 150px 150px 0 0;
  536. transform: translateY(2%);
  537. background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(0,41,105,1) 70%, rgba(50,47,36,1) 100%);
  538. }
  539. .logo-text-highlight{
  540. margin-bottom: 50px;
  541. }
  542. .logo-text-highlight img{
  543. vertical-align:middle;
  544. margin-right: 45px;
  545. width: 120px;
  546. vertical-align:middle;
  547. }
  548. .section2 .text-highlight3{
  549. width: 80%;
  550. margin-bottom: 50px;
  551. color: #909090;
  552. }
  553. .section2 .text-highlight4{
  554. width: 100%;
  555. margin-bottom: 50px;
  556. color: #909090;
  557. }
  558. .section3 {
  559. padding-top: 105px;
  560. border-radius: 150px 150px 0 0;
  561. transform: translateY(-16%);
  562. }
  563. .footer-menu-container {
  564. padding: 0px 15px;
  565. }
  566. .hero-section{
  567. width: 100%;
  568. min-height: 140vh;
  569. }
  570. .hero-section video{
  571. height: 140vh;
  572. object-fit: cover;
  573. filter: brightness(50%);
  574. }
  575. .hero-section .text-highlight{
  576. z-index: 10;
  577. top:43%;
  578. left: 50%;
  579. transform: translate(-50%,-50%);
  580. width:80%;
  581. position: absolute;
  582. text-align: center;
  583. }
  584. .contact-form input {
  585. border: none;
  586. transition: all 0.3s ease-in-out;
  587. outline: none;
  588. padding: 25px 40px;
  589. border-radius: 50px;
  590. border: 1px solid #ADADAD;
  591. margin-bottom: 20px;
  592. }
  593. .hero-section .text-highlight .title{
  594. color: #FFF;
  595. font-size: clamp(3em, 5vw, 5.5em);
  596. font-weight: 600;
  597. line-height: 70px;
  598. margin-bottom: 30px
  599. }
  600. }
  601. /* Large devices (≥992px) - lg */
  602. @media (min-width: 992px) {
  603. .footer-menu-container {
  604. padding: 0px 5px;
  605. }
  606. .px-6 {
  607. padding-right: 7rem;
  608. padding-left: 7rem;
  609. }
  610. }
  611. /* Extra large devices (≥1200px) - xl */
  612. @media (min-width: 1200px) {
  613. .footer-menu-container {
  614. padding: 0px 120px;
  615. }
  616. }
  617. /* XXL devices (≥1400px) - xxl */
  618. @media (min-width: 1400px) {
  619. .footer-menu-container {
  620. padding: 0px 190px;
  621. }
  622. }