menu.css 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  1. @font-face {
  2. font-family: 'Champagne and Limousine';
  3. src: url('../Fonts/Champagne&Limousines.ttf');
  4. -webkit-font-smoothing: antialiased;
  5. font-weight: 700;
  6. }
  7. @font-face {
  8. font-family: "Open Sans";
  9. font-style: normal;
  10. font-weight: 300;
  11. src: url("../Fonts/OpenSans.woff") format("woff");
  12. }
  13. html, body
  14. {
  15. margin: 0px auto;
  16. font-family: 'Open Sans';
  17. -webkit-font-smoothing: antialiased;
  18. -webkit-text-stroke: 0.50px;
  19. position: relative;
  20. }
  21. /**************CONTACT DIV**************/
  22. #overlay-contact {
  23. position: fixed;
  24. top: 0;
  25. left: 0;
  26. height: 100%;
  27. width: 100%;
  28. background-color: rgba(0,0,0,0.5);
  29. z-index: 10;
  30. font-variant: normal;
  31. font-weight: normal;
  32. color: white;
  33. font-size: 26px;
  34. text-align: center;
  35. display: none;
  36. }
  37. #facebook-link{
  38. position: fixed;
  39. top: 20px;
  40. z-index: 99;
  41. right: 20px;
  42. }
  43. #message{ resize: vertical; overflow:auto; max-height: 200px;}
  44. .basic-grey {
  45. width: 50%;
  46. position: fixed;
  47. left: 50%;
  48. margin: 0 0 0 -25%;
  49. z-index: 11;
  50. background: #465A68;
  51. padding: 20px 30px 20px 30px;
  52. font-family: 'Open Sans';
  53. font-size: 14px;
  54. letter-spacing: 2px;
  55. color: #BCC9CC ;
  56. border:1px solid #DADADA;
  57. display: none;
  58. -webkit-text-stroke: 0.50px;
  59. }
  60. .basic-grey label {
  61. display: block;
  62. margin: 0px 0px 5px;
  63. }
  64. .basic-grey label>span {
  65. float: left;
  66. width: 80px;
  67. text-align: right;
  68. padding-right: 10px;
  69. margin-top: 10px;
  70. color: #BCC9CC ;
  71. -webkit-text-stroke: 0.50px;
  72. }
  73. .basic-grey input[type="text"], .basic-grey input[type="email"], .basic-grey textarea,.basic-grey select{
  74. border: 1px solid #DADADA;
  75. color: #888;
  76. height: 24px;
  77. margin-bottom: 16px;
  78. margin-right: 6px;
  79. margin-top: 2px;
  80. outline: 0 none;
  81. padding: 3px 3px 3px 5px;
  82. width: 85%;
  83. font-family: 'Open Sans';
  84. font-size: 12px;
  85. }
  86. #btnconsulta { float: right; display:block; }
  87. .basic-grey textarea{
  88. height:100px;
  89. letter-spacing: 2px;
  90. }
  91. .basic-grey .button {
  92. background: #BCC9CC;
  93. border: none;
  94. padding: 10px 25px 10px 25px;
  95. color: #465A68;
  96. }
  97. .basic-grey .button:hover {
  98. opacity: 0.5;
  99. transition: opacity 0.2s ease-in-out;
  100. }
  101. /******************RESPONSIVE MENU******************/
  102. @media (max-width: 1100px){
  103. #navbar { letter-spacing: 0px!important; }
  104. #navlist li { width: auto !important;}
  105. }
  106. @media (min-width: 791px){
  107. #navbar #responsive{ display: none; }
  108. }
  109. @media (max-width:790px){
  110. #navbar #navlist{ display:none; }
  111. #footer-outer
  112. {
  113. background-color: #475A68;
  114. font-family: 'Open Sans';
  115. font-size: 26px;
  116. color: #BCC9CC;
  117. width: 100%;
  118. height: 300px!important;
  119. }
  120. #navbar{
  121. display: table;
  122. width: 70% !important;
  123. margin: 0px auto !important;
  124. padding-bottom: 10px;
  125. font-family: 'Champagne and Limousine'!important;
  126. font-size: 120%!important;
  127. color: #485260!important;
  128. letter-spacing: 5px!important;
  129. }
  130. #responsive img{
  131. width: 55px;
  132. height: auto;
  133. }
  134. #responsive
  135. {
  136. text-transform: uppercase;
  137. text-align:center;
  138. width: 70%;
  139. padding-bottom: 30px;
  140. display: table-row;
  141. }
  142. #responsive li
  143. {
  144. vertical-align: middle;
  145. display: table-cell;
  146. text-align: center;
  147. width: 0%;
  148. }
  149. #top_wrapper{
  150. height: 70px!important;
  151. }
  152. }
  153. /*************NAVBAR************/
  154. #top_wrapper
  155. {
  156. background-color: rgba(255,255,255,255);
  157. width: 100%;
  158. position: fixed;
  159. top: 0px;
  160. box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  161. border-bottom: 1px solid ;
  162. padding-top: 10px;
  163. height: 66px;
  164. z-index: 4;
  165. }
  166. #navbar
  167. {
  168. display: table;
  169. width: 90%;
  170. margin: 0px auto;
  171. background-color:#FFF;
  172. padding-bottom: 10px;
  173. font-family: 'Open Sans';
  174. font-size: 100%;
  175. color: #485260;
  176. letter-spacing: 5px;
  177. }
  178. #navlist
  179. {
  180. text-transform: uppercase;
  181. text-align:center;
  182. width: 70%;
  183. padding-bottom: 30px;
  184. display: table-row;
  185. }
  186. #navlist li
  187. {
  188. vertical-align: middle;
  189. display: table-cell;
  190. text-align: center;
  191. width: 0%;
  192. }
  193. /*************HEADERS STYLE************/
  194. hr
  195. {
  196. color: #465A68;
  197. background-color: #465A68;
  198. height: 1px;
  199. }
  200. h2
  201. {
  202. font-family: 'Open Sans';
  203. font-weight: 300;
  204. font-size: 20px;
  205. }
  206. .tabla
  207. {
  208. margin: 50px auto;
  209. text-align: center;
  210. display:table;
  211. border: 1px solid;
  212. }
  213. h3
  214. {
  215. display: table-cell;
  216. vertical-align: middle;
  217. font-family: 'Champagne and Limousine';
  218. font-weight: normal;
  219. color: #D8DFE1;
  220. background: #475A68;
  221. width: 200px;
  222. height: 50px;
  223. text-align: center;
  224. margin: 0px auto;
  225. text-transform: uppercase;
  226. letter-spacing: 2px;
  227. }
  228. h1
  229. {
  230. font-weight:normal;
  231. width: 100%;
  232. text-align: center;
  233. border-bottom: 1px solid #465A68;
  234. line-height: 0.1em;
  235. font-family: 'Champagne and Limousine';
  236. margin: 30px auto;
  237. color: #465A68;
  238. font-size: 190%;
  239. font-style: normal;
  240. letter-spacing: 5px;
  241. }
  242. h1 span {
  243. background:#fff;
  244. padding:0 10px;
  245. }
  246. h2
  247. {
  248. text-align: center;
  249. color : #fff;
  250. }
  251. h4
  252. {
  253. font-size: 30px;
  254. color:#BCC9CC;
  255. text-align: right;
  256. font-family: 'Champagne and Limousine';
  257. font-weight: normal;
  258. margin: 0 0;
  259. }
  260. h5
  261. {
  262. letter-spacing: 1px;
  263. font-size: 30px;
  264. color:#BCC9CC;
  265. text-align: left;
  266. font-family: 'Champagne and Limousine';
  267. font-weight: normal;
  268. margin: 0 0;
  269. }
  270. h6{
  271. font-family: 'Open Sans';
  272. font-size: 16px;
  273. font-weight: normal;
  274. background-color: #2B4C5F;
  275. color: #FFF;
  276. margin-bottom: -30px;
  277. padding: 10px;
  278. }
  279. p
  280. {
  281. margin: 40px 30px 70px 30px;
  282. font-family: 'Open Sans'/*'Raleway', sans-serif*/;
  283. font-size: 16px;
  284. text-align: center;
  285. /*letter-spacing: 2px;*/
  286. color: #465A68;/*#7196A6*/
  287. font-weight: 300;
  288. line-height: 23px;
  289. }
  290. a:visited, a:link
  291. {
  292. color: #485260;
  293. text-decoration:none;
  294. }
  295. a:hover
  296. {
  297. opacity: 0.5; transition: opacity 0.3s ease-in-out;
  298. }
  299. li a
  300. {
  301. cursor: pointer;
  302. width: 200px;
  303. list-style-type: none;
  304. margin-bottom: 3px;
  305. }
  306. li:hover
  307. {
  308. opacity: 0.5;
  309. transition: opacity 0.5s ease-in-out;
  310. }
  311. .hidden { display: none;}
  312. b { font-weight: bold; }
  313. .center { display:block; margin: 0px auto; text-align:center;}
  314. .titulin { font-size: 23px; font-weight: bold;}
  315. #exit{ width: 90%; height: 30px; margin: 0 auto; cursor: pointer; float: right !important; text-align:right; }
  316. /*************SECCIONES************/
  317. #graficas{
  318. margin: 20px auto;
  319. }
  320. .seccion{
  321. width: 90%;
  322. height: auto;
  323. text-align: center;
  324. margin: 0px auto;
  325. padding-top: 70px;
  326. }
  327. .titulos{
  328. font-family: 'Champagne and Limousine';
  329. font-size: 19pt;
  330. text-align: center !important;
  331. margin: 0px auto 40px;
  332. background-color: #7B9299;
  333. color: #FFF;
  334. width: 50%;
  335. }
  336. .titulos > a:visited{
  337. color: #FFF;
  338. }
  339. /*********GALLERY************/
  340. #gallery{
  341. width: 60%;
  342. margin: 0 auto;
  343. }
  344. div.img {
  345. margin: 15px;
  346. padding: 15px;
  347. height: auto;
  348. width: auto;
  349. float: left;
  350. text-align: center;
  351. }
  352. div.img img {
  353. display: inline;
  354. margin: 5px;
  355. }
  356. div.desc {
  357. text-align: center;
  358. font-weight: normal;
  359. /*width: 120px;*/
  360. margin: 5px;
  361. }