especificos.css 11 KB

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