Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

site.css 11KB

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