especificos.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628
  1. @font-face {
  2. font-family: 'Champagne and Limousine';
  3. src: url('../Fonts/Champagne&Limousines.ttf');
  4. -webkit-font-smoothing: antialiased;
  5. }
  6. @font-face {
  7. font-family: "Open Sans";
  8. font-style: normal;
  9. font-weight: 300;
  10. src: url("../Fonts/OpenSans.woff") format("woff");
  11. }
  12. html, body
  13. {
  14. margin: 0px auto;
  15. font-family: 'Raleway'sans-serif;
  16. -webkit-font-smoothing: antialiased;
  17. -webkit-text-stroke: 0.50px;
  18. position: relative;
  19. }
  20. /**************CONTACT DIV**************/
  21. #overlay-contact {
  22. position: fixed;
  23. top: 0;
  24. left: 0;
  25. height: 100%;
  26. width: 100%;
  27. background-color: rgba(0,0,0,0.5);
  28. z-index: 10;
  29. margin-top: -30px;
  30. font-variant: normal;
  31. font-weight: normal;
  32. color: white;
  33. font-size: 26px;
  34. text-align: center;
  35. display: none;
  36. }
  37. #exit{
  38. width: 30px;
  39. height: 30px;
  40. margin: 0 auto;
  41. cursor: pointer;
  42. float: right;
  43. }
  44. #message{ resize: vertical; overflow:auto; max-height: 200px;}
  45. .basic-grey {
  46. width: 50%;
  47. position: fixed;
  48. left: 50%;
  49. margin: 0 0 0 -25%;
  50. z-index: 11;
  51. background: #465A68;
  52. padding: 20px 30px 20px 30px;
  53. font-family: 'Open Sans';
  54. font-size: 14px;
  55. letter-spacing: 2px;
  56. color: #BCC9CC ;
  57. border:1px solid #DADADA;
  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: 70%;
  83. font-family: 'Champagne and Limousine';
  84. font-size: 12px;
  85. }
  86. .basic-grey textarea{
  87. height:100px;
  88. letter-spacing: 2px;
  89. }
  90. .basic-grey .button {
  91. background: #BCC9CC;
  92. border: none;
  93. padding: 10px 25px 10px 25px;
  94. color: #465A68;
  95. }
  96. .basic-grey .button:hover {
  97. opacity: 0.5;
  98. transition: opacity 0.2s ease-in-out;
  99. }
  100. /******************RESPONSIVE MENU******************/
  101. @media(min-width: 801px){
  102. #navbar #responsive{ display: none; }
  103. }
  104. @media(max-width:800px){
  105. #navbar #navlist{ display:none; }
  106. #navbar{
  107. display: table;
  108. width: 70% !important;
  109. margin: 0px auto !important;
  110. padding-bottom: 10px;
  111. font-family: 'Champagne and Limousine'!important;
  112. font-size: 120%!important;
  113. color: #485260!important;
  114. letter-spacing: 5px!important;
  115. }
  116. #responsive img{
  117. width: 55px;
  118. height: auto;
  119. }
  120. #responsive
  121. {
  122. text-transform: uppercase;
  123. text-align:center;
  124. width: 70%;
  125. padding-bottom: 30px;
  126. display: table-row;
  127. }
  128. #responsive li
  129. {
  130. vertical-align: middle;
  131. display: table-cell;
  132. text-align: center;
  133. width: 0%;
  134. }
  135. #top_wrapper{
  136. height: 70px!important;
  137. }
  138. }
  139. /*************NAVBAR************/
  140. #top_wrapper
  141. {
  142. background-color: rgba(255,255,255,255);
  143. width: 100%;
  144. position: fixed;
  145. top: 0px;
  146. box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  147. border-bottom: 2px solid ;
  148. padding-top: 10px;
  149. height: 65px;
  150. }
  151. #navbar
  152. {
  153. display: table;
  154. width: 90%;
  155. margin: 0px auto;
  156. background-color:#FFF;
  157. padding-bottom: 10px;
  158. font-family: 'Champagne and Limousine';
  159. font-size: 100%;
  160. color: #485260;
  161. letter-spacing: 5px;
  162. }
  163. #navlist
  164. {
  165. text-transform: uppercase;
  166. text-align:center;
  167. width: 70%;
  168. padding-bottom: 30px;
  169. display: table-row;
  170. }
  171. #navlist li
  172. {
  173. vertical-align: middle;
  174. display: table-cell;
  175. text-align: center;
  176. width: 0%;
  177. }
  178. /*************SECCIONES************/
  179. .seccion{
  180. width: 90%;
  181. height: auto;
  182. text-align: center;
  183. margin: 70px auto;
  184. border-bottom: 1px solid #475A68;
  185. }
  186. #producto
  187. {
  188. font-family: "Champagne and Limousine";
  189. font-size: 16px;
  190. color: #7B9299;
  191. letter-spacing: 5px;
  192. width: 660px;
  193. }
  194. #banner
  195. {
  196. background: url('../Images/banner.jpg') no-repeat scroll center bottom / cover #485260 ;
  197. width: 100%;
  198. height: 70%;
  199. max-height: 100%;
  200. text-align: center;
  201. margin:30px auto;
  202. font-family: 'Champagne and Limousine';
  203. font-size: 300%;
  204. color: White;
  205. padding-top: 100px;
  206. -webkit-text-stroke: 0.20px;
  207. }
  208. #banner p{
  209. color: white;
  210. -webkit-text-stroke: 0.10px;
  211. }
  212. #productos_titulo
  213. {
  214. width: auto;
  215. height: auto;
  216. padding-top: 1px;
  217. }
  218. /*
  219. #nosotros, #actividades, #distribuidoras, #cursos
  220. {
  221. }
  222. */
  223. #productos
  224. {
  225. /*background: url('Images/productos.jpg') no-repeat scroll center bottom / cover #485260 ;
  226. height: 400px;*/
  227. max-height: 100%;
  228. width: 90%;
  229. margin: 100px auto;
  230. font-family: 'Champagne and Limousine';
  231. /*font-size: 200%;*/
  232. color: #D8DFE1;
  233. text-align: center;
  234. }
  235. .descripciones{
  236. width: 90%;
  237. text-align: center;
  238. margin-top: 0px;
  239. margin-bottom: 40px;
  240. color: #2B4C5F;
  241. font-family: "Open Sans";
  242. font-size: 14px;
  243. display: inline-block;
  244. }
  245. .descripcion{
  246. text-align: center;
  247. width: 30%;
  248. padding: 0px 10px;
  249. display: inline-table;
  250. }
  251. /*************TABLAS************/
  252. #capital-tabla, #interior-tabla
  253. {
  254. background: none repeat scroll 0% 0% #FFF;
  255. width: 480px;
  256. border-collapse: collapse;
  257. text-align: center;
  258. margin: 20px auto;
  259. }
  260. thead
  261. {
  262. font-family: 'Champagne and Limousine';
  263. font-weight: normal;
  264. font-size: 150%;
  265. vertical-align: baseline;
  266. margin: 0px auto;
  267. padding: 0px;
  268. outline: 0px none;
  269. border: 0px none;
  270. background: none repeat scroll 0% 0% transparent;
  271. }
  272. th
  273. {
  274. font-weight: normal;
  275. padding: 10px 30px;
  276. color: #475A68;
  277. border-bottom: 1px solid;
  278. width: 130px;
  279. }
  280. tbody, td
  281. {
  282. font-family: 'Open Sans';
  283. font-size: 14px;
  284. font-weight: normal;
  285. padding: 10px;
  286. text-align: center;
  287. color: #475A68;
  288. }
  289. tbody tr:nth-child(odd) {
  290. background-color: #D8DFE1;
  291. }
  292. /**************FOOTER**************/
  293. #ok:hover, #ok:active, #ok
  294. {
  295. background-color:#BCC9CC;
  296. text-indent:0px;
  297. display:inline-block;
  298. color:#475A68;
  299. font-size:18px;
  300. font-weight:normal;
  301. font-style:normal;
  302. width:96px;
  303. text-align:center;
  304. height: 31px;
  305. }
  306. #footer-outer
  307. {
  308. background-color: #475A68;
  309. font-family: 'Open Sans';
  310. font-size: 26px;
  311. color: #BCC9CC;
  312. width: 100%;
  313. height: 250px;
  314. }
  315. #footer-inner-left
  316. {
  317. font-family: 'Open Sans';
  318. padding-top: 30px;
  319. padding-left: 30px;
  320. width: 40%;
  321. float: left;
  322. display: inline;
  323. text-align: left;
  324. font-size: 15px;
  325. }
  326. #footer-inner-right
  327. {
  328. font-family: 'Open Sans';
  329. font-size: 15px;
  330. padding-top: 20px;
  331. padding-right: 30px;
  332. width: 40%;
  333. float: right;
  334. display:inline;
  335. text-align: right;
  336. }
  337. #suscribe
  338. {
  339. width : 40%;
  340. height: 30px;
  341. background-color: #BCC9CC;
  342. border: 0px;
  343. margin-top: 20px;
  344. }
  345. #input-footer{
  346. }
  347. /*************HEADERS STYLE************/
  348. hr
  349. {
  350. color: #465A68;
  351. background-color: #465A68;
  352. height: 1px;
  353. }
  354. h2
  355. {
  356. font-family: 'Open Sans';
  357. font-weight: 300;
  358. font-size: 20px;
  359. }
  360. .tabla
  361. {
  362. margin: 50px auto;
  363. text-align: center;
  364. display:table;
  365. border: 0.5px solid;
  366. }
  367. h3
  368. {
  369. display: table-cell;
  370. vertical-align: middle;
  371. font-family: 'Champagne and Limousine';
  372. font-weight: normal;
  373. color: #D8DFE1;
  374. background: #475A68;
  375. width: 200px;
  376. height: 50px;
  377. text-align: center;
  378. margin: 0px auto;
  379. text-transform: uppercase;
  380. letter-spacing: 2px;
  381. }
  382. h1
  383. {
  384. font-weight:normal;
  385. width: 100%;
  386. text-align: center;
  387. border-bottom: 0.5px solid #465A68;
  388. line-height: 0.1em;
  389. font-family: 'Champagne and Limousine';
  390. margin: 30px auto;
  391. color: #465A68;
  392. font-size: 190%;
  393. font-style: normal;
  394. letter-spacing: 5px;
  395. }
  396. h1 span {
  397. background:#fff;
  398. padding:0 10px;
  399. }
  400. h2
  401. {
  402. text-align: center;
  403. color : #fff;
  404. }
  405. h4
  406. {
  407. font-size: 30px;
  408. color:#BCC9CC;
  409. text-align: right;
  410. font-family: 'Champagne and Limousine';
  411. font-weight: normal;
  412. margin: 0 0;
  413. }
  414. h5
  415. {
  416. font-size: 30px;
  417. color:#BCC9CC;
  418. text-align: left;
  419. font-family: 'Champagne and Limousine';
  420. font-weight: normal;
  421. margin: 0 0;
  422. }
  423. p
  424. {
  425. margin: 70px 30px 70px 30px;
  426. font-family: 'Open Sans'/*'Raleway', sans-serif*/;
  427. font-size: 16px;
  428. text-align: center;
  429. /*letter-spacing: 2px;*/
  430. color: #465A68;/*#7196A6*/
  431. font-weight: 300;
  432. line-height: 23px;
  433. }
  434. a:link
  435. {
  436. color: #485260;
  437. text-decoration:none;
  438. }
  439. a:hover,
  440. {
  441. opacity: 0.5; transition: opacity 0.3s ease-in-out;
  442. }
  443. ul, li
  444. {
  445. width: 200px;
  446. list-style-type: none;
  447. margin-bottom: 3px;
  448. }
  449. li:hover
  450. {
  451. opacity: 0.5;
  452. transition: opacity 0.5s ease-in-out;
  453. }
  454. .hidden { display: none;}
  455. /********************SLIDES TODO: es necesario?
  456. @import url(http://fonts.googleapis.com/css?family=Varela+Round);
  457. .slides {
  458. float: left;
  459. padding: 0;
  460. width: 900px;
  461. height: 600px;
  462. display: block;
  463. margin: -51px auto;
  464. position: relative;
  465. }
  466. .slides * {
  467. user-select: none;
  468. -ms-user-select: none;
  469. -moz-user-select: none;
  470. -khtml-user-select: none;
  471. -webkit-user-select: none;
  472. -webkit-touch-callout: none;
  473. }
  474. .slides input { display: none; }
  475. .slide-container { display: block; }
  476. .slide {
  477. top: 0;
  478. opacity: 0;
  479. width: 900px;
  480. height: 500px;
  481. display: block;
  482. position: absolute;
  483. transform: scale(0);
  484. transition: all .7s ease-in-out;
  485. }
  486. .slide img {
  487. width: 100%;
  488. height: 100%;
  489. }
  490. .nav label
  491. {
  492. height: 120px;
  493. z-index: 9;
  494. cursor: pointer;
  495. color: #475A68;
  496. font-size: 80pt;
  497. text-align: center;
  498. font-family: "Varela Round", sans-serif;
  499. margin: auto auto;
  500. margin-top: 170px;
  501. }
  502. .slide:hover + .nav label { opacity: 0.5; }
  503. .nav label:hover { opacity: 0.2; transition: opacity 1s ease-in-out;}
  504. .nav .next { right: 0; }
  505. input:checked + .slide-container .slide {
  506. opacity: 1;
  507. transition: opacity 1s ease-in-out;
  508. }
  509. input:checked + .slide-container .nav label { display: block; }
  510. .nav-dots {
  511. width: 100%;
  512. bottom: 9px;
  513. height: 11px;
  514. display: inline-block;
  515. position: absolute;
  516. text-align: center;
  517. }
  518. .nav-dots .nav-dot {
  519. top: -5px;
  520. width: 11px;
  521. height: 11px;
  522. margin: 0 4px;
  523. position: relative;
  524. border-radius: 100%;
  525. display: inline-block;
  526. background-color: rgba(0, 0, 0, 0.6);
  527. }
  528. .nav-dots .nav-dot:hover {
  529. cursor: pointer;
  530. background-color: rgba(0, 0, 0, 0.8);
  531. input#img-1:checked ~ .nav-dots label#img-dot-1,
  532. input#img-2:checked ~ .nav-dots label#img-dot-2,
  533. input#img-3:checked ~ .nav-dots label#img-dot-3,
  534. input#img-4:checked ~ .nav-dots label#img-dot-4,
  535. input#img-5:checked ~ .nav-dots label#img-dot-5,
  536. input#img-6:checked ~ .nav-dots label#img-dot-6 {
  537. background: rgba(0, 0, 0, 0.8);
  538. }
  539. ********************/