styles.min.css 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. html {
  2. height: 100%;
  3. }
  4. body {
  5. font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  6. min-height: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. }
  10. main {
  11. flex: 1;
  12. }
  13. h1,
  14. h2,
  15. h3,
  16. h4,
  17. h5,
  18. h6 {
  19. font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  20. font-weight: 700;
  21. }
  22. a {
  23. color: #C41C22;
  24. }
  25. a:hover {
  26. color: #a2171c;
  27. }
  28. .section {
  29. padding-top: 2rem;
  30. padding-bottom: 2rem;
  31. }
  32. @media (min-width: 768px) {
  33. .section {
  34. padding-top: 6rem;
  35. padding-bottom: 6rem;
  36. }
  37. }
  38. .section-small {
  39. padding-top: 2rem;
  40. padding-bottom: 2rem;
  41. }
  42. @media (min-width: 768px) {
  43. .section-small {
  44. padding-top: 4rem !important;
  45. padding-bottom: 4rem !important;
  46. }
  47. }
  48. @media (min-width: 576px) {
  49. .container {
  50. max-width: 100%;
  51. }
  52. }
  53. @media (min-width: 768px) {
  54. .container {
  55. max-width: 720px;
  56. }
  57. }
  58. @media (min-width: 992px) {
  59. .container {
  60. max-width: 1180px;
  61. }
  62. }
  63. @media (min-width: 768px) {
  64. .w-content {
  65. width: 80%;
  66. margin-left: auto;
  67. margin-right: auto;
  68. }
  69. }
  70. .box-info-container {
  71. margin-bottom: 30px;
  72. }
  73. .box-info-container .label {
  74. font-weight: 600;
  75. }
  76. .box-info-container .label-ref {
  77. font-size: 19px;
  78. font-weight: 600;
  79. }
  80. .box-info-container > .row {
  81. margin-bottom: 10px;
  82. }
  83. .box-info {
  84. background-color: white;
  85. border-radius: 10px;
  86. padding: 35px 25px;
  87. }
  88. .box-info #time {
  89. color: #898989;
  90. font-style: italic;
  91. font-weight: 400;
  92. font-size: 19px;
  93. }
  94. .box-info .box-info-subtitle {
  95. font-style: italic;
  96. font-weight: 400;
  97. color: #696969;
  98. font-size: 24px;
  99. }
  100. .box-info-title {
  101. margin-bottom: 35px;
  102. }
  103. .box-info-main-title {
  104. color: #b61924;
  105. font-weight: 400;
  106. font-size: 32px;
  107. margin-bottom: 0;
  108. }
  109. .box_info-tabs {
  110. height: 100%;
  111. border: 1px solid #dee2e6;
  112. padding: 5px 13px;
  113. }
  114. #map_buttons a {
  115. color: #30383f;
  116. font-size: 15px;
  117. }
  118. #map_buttons a:not(:last-child) {
  119. margin-right: 20px;
  120. }
  121. #col_graph {
  122. background-color: #b61924;
  123. color: #fff;
  124. font-size: 16px;
  125. padding: 10px 0;
  126. }
  127. .nav-tabs .nav-link {
  128. background-color: transparent;
  129. padding: 0 15px;
  130. font-size: 15px;
  131. border: 0;
  132. font-weight: 700;
  133. text-transform: uppercase;
  134. border-bottom: 2px solid transparent;
  135. }
  136. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus, .nav-tabs .nav-link:active, .nav-tabs .nav-link.active {
  137. border-bottom: 2px solid #C41C22;
  138. outline: none;
  139. color: black;
  140. }
  141. .navbar-light {
  142. box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  143. }
  144. .navbar-nav .nav-item {
  145. position: relative;
  146. }
  147. @media (min-width: 992px) {
  148. .navbar-nav .nav-item:hover:before {
  149. content: "";
  150. width: 100%;
  151. border-top: 4px solid #C41C22;
  152. position: absolute;
  153. top: 3px;
  154. }
  155. }
  156. @media (min-width: 992px) {
  157. .navbar-nav .nav-item.active:before {
  158. content: "";
  159. width: 100%;
  160. border-top: 4px solid #C41C22;
  161. position: absolute;
  162. top: 3px;
  163. }
  164. }
  165. .navbar-nav .nav-item.active .nav-link {
  166. color: #C41C22;
  167. }
  168. .navbar-nav .nav-item .nav-link {
  169. color: #3d3d3d;
  170. }
  171. @media (min-width: 992px) {
  172. .navbar-expand-lg .navbar-nav .nav-link {
  173. padding-right: 0.625rem;
  174. padding-left: 0.625rem;
  175. padding-bottom: 0;
  176. font-size: 1.0625rem;
  177. }
  178. }
  179. .navbar-toggler {
  180. padding: 0.3125rem;
  181. }
  182. .form-control:focus {
  183. border-color: rgba(242, 206, 57, 0.8);
  184. box-shadow: 0 0 0 1px rgba(242, 206, 57, 0.8);
  185. }
  186. .btn:focus {
  187. border-color: rgba(242, 206, 57, 0.8);
  188. box-shadow: 0 0 0 1px rgba(242, 206, 57, 0.8);
  189. }
  190. .btn-theme-primary {
  191. background-color: #891D26;
  192. border-color: #891D26;
  193. color: white;
  194. }
  195. .btn-theme-primary:hover {
  196. color: white;
  197. background-color: #69161d;
  198. border-color: #69161d;
  199. }
  200. a.btn-icon {
  201. color: #000;
  202. }
  203. .masthead {
  204. position: relative;
  205. background-color: #343a40;
  206. background: url("../img/bg-masthead.jpg") no-repeat center center;
  207. -webkit-background-size: cover;
  208. -moz-background-size: cover;
  209. -o-background-size: cover;
  210. background-size: cover;
  211. padding-top: 2rem;
  212. padding-bottom: 2rem;
  213. }
  214. .masthead .overlay {
  215. position: absolute;
  216. background-color: #212529;
  217. height: 100%;
  218. width: 100%;
  219. top: 0;
  220. left: 0;
  221. opacity: 0.3;
  222. }
  223. .masthead h1 {
  224. font-size: 3rem;
  225. }
  226. .masthead h2 {
  227. font-size: 1.5rem;
  228. }
  229. @media (min-width: 768px) {
  230. .masthead {
  231. padding-top: 6rem;
  232. padding-bottom: 6rem;
  233. }
  234. .masthead h1 {
  235. font-size: 4rem;
  236. }
  237. .masthead h2 {
  238. font-size: 2rem;
  239. }
  240. }
  241. .showcase .showcase-text {
  242. padding: 3rem;
  243. }
  244. .showcase .showcase-img {
  245. min-height: 30rem;
  246. background-size: cover;
  247. }
  248. @media (min-width: 768px) {
  249. .showcase .showcase-text {
  250. padding: 7rem;
  251. }
  252. }
  253. .features-icons .features-icons-item {
  254. max-width: 20rem;
  255. margin: auto;
  256. }
  257. .features-icons .features-icons-item .features-icons-icon {
  258. width: 10rem;
  259. height: 10rem;
  260. margin: auto;
  261. border-radius: 100%;
  262. box-shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.3);
  263. display: flex;
  264. justify-content: center;
  265. align-items: center;
  266. transition-duration: 200ms;
  267. }
  268. .features-icons .features-icons-item .features-icons-icon img {
  269. height: 5rem;
  270. }
  271. .features-icons .features-icons-item .features-icons-icon:hover {
  272. transform: scale(1.05);
  273. transition-property: all;
  274. transition-timing-function: linear;
  275. }
  276. .features-icons .features-icons-item .title {
  277. font-size: 1.4375rem;
  278. margin-top: 0.625rem;
  279. }
  280. .features-icons .index-btn:hover .title {
  281. color: #C41C22;
  282. }
  283. .testimonials .testimonial-item {
  284. max-width: 100%;
  285. }
  286. .testimonials .testimonial-item img {
  287. width: 7rem;
  288. height: 7rem;
  289. box-shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.3);
  290. object-fit: contain;
  291. background: white;
  292. }
  293. .testimonials .section-title {
  294. font-size: 2.5rem;
  295. font-weight: 400;
  296. }
  297. .call-to-action {
  298. position: relative;
  299. background-color: #343a40;
  300. background: url("../img/bg-masthead.jpg") no-repeat center center;
  301. -webkit-background-size: cover;
  302. -moz-background-size: cover;
  303. -o-background-size: cover;
  304. background-size: cover;
  305. padding-top: 7rem;
  306. padding-bottom: 7rem;
  307. }
  308. .call-to-action .overlay {
  309. position: absolute;
  310. background-color: #212529;
  311. height: 100%;
  312. width: 100%;
  313. top: 0;
  314. left: 0;
  315. opacity: 0.3;
  316. }
  317. footer.footer {
  318. background-color: #a2171c;
  319. color: white;
  320. padding-top: 3rem;
  321. padding-bottom: 3rem;
  322. }
  323. footer.footer a {
  324. color: white;
  325. }
  326. footer.footer .partner-list {
  327. background-color: rgba(250, 250, 250, 0.5);
  328. border-radius: 6px;
  329. padding: 10px 0;
  330. }
  331. /*# sourceMappingURL=styles.min.css.map */