Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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