especificos.css 14 KB

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