style.css 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. /*! =========================================================
  2. *
  3. * BioThermSolutions.com
  4. *
  5. * by: https://davidawindham.com
  6. *
  7. * Thanks:
  8. * https://material.io/
  9. * https://getbootstrap.com/
  10. * https://fezvrasta.github.io/bootstrap-material-design/
  11. * https://demos.creative-tim.com/material-kit/index.html
  12. *
  13. *
  14. * ========================================================= */
  15. /*! @import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:400,700'); */
  16. @font-face {
  17. font-family: 'Roboto';
  18. font-style: normal;
  19. font-weight: 300;
  20. src: local('Roboto Light'), local('Roboto-Light'),
  21. url('../fonts/roboto-v18-latin-300.woff2') format('woff2'),
  22. url('../fonts/roboto-v18-latin-300.woff') format('woff');
  23. }
  24. @font-face {
  25. font-family: 'Roboto';
  26. font-style: normal;
  27. font-weight: 400;
  28. src: local('Roboto'), local('Roboto-Regular'),
  29. url('../fonts/roboto-v18-latin-regular.woff2') format('woff2'),
  30. url('../fonts/roboto-v18-latin-regular.woff') format('woff');
  31. }
  32. @font-face {
  33. font-family: 'Roboto';
  34. font-style: normal;
  35. font-weight: 500;
  36. src: local('Roboto Medium'), local('Roboto-Medium'),
  37. url('../fonts/roboto-v18-latin-500.woff2') format('woff2'),
  38. url('../fonts/roboto-v18-latin-500.woff') format('woff');
  39. }
  40. @font-face {
  41. font-family: 'Roboto';
  42. font-style: normal;
  43. font-weight: 700;
  44. src: local('Roboto Bold'), local('Roboto-Bold'),
  45. url('../fonts/roboto-v18-latin-700.woff2') format('woff2'),
  46. url('../fonts/roboto-v18-latin-700.woff') format('woff');
  47. }
  48. @font-face {
  49. font-family: 'Roboto Slab';
  50. font-style: normal;
  51. font-weight: 400;
  52. src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'),
  53. url('../fonts/roboto-slab-v7-latin-regular.woff2') format('woff2'),
  54. url('../fonts/roboto-slab-v7-latin-regular.woff') format('woff');
  55. }
  56. @font-face {
  57. font-family: 'Roboto Slab';
  58. font-style: normal;
  59. font-weight: 700;
  60. src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'),
  61. url('../fonts/roboto-slab-v7-latin-700.woff2') format('woff2'),
  62. url('../fonts/roboto-slab-v7-latin-700.woff') format('woff');
  63. }
  64. p {
  65. font-size: 16px;
  66. }
  67. a {
  68. color:#1c8bed;
  69. }
  70. a:hover {
  71. color:#16c462;
  72. }
  73. .row-deep {
  74. margin-bottom:25px;
  75. }
  76. .form-control, .is-focused .form-control {
  77. background-image: linear-gradient(to top, #16c462 2px, #9c27b000 2px), linear-gradient(to top, #d2d2d2 1px, #d2d2d200 1px);
  78. }
  79. .dark-primary-color { background: #388E3C; }
  80. .default-primary-color { background: #4CAF50; }
  81. .light-primary-color { background: #C8E6C9; }
  82. .text-primary-color { color: #FFFFFF; }
  83. .accent-color { background: #448AFF; }
  84. .primary-text-color { color: #212121; }
  85. .secondary-text-color { color: #757575; }
  86. .divider-color { border-color: #BDBDBD; }
  87. .biotherm-heat-icon{
  88. fill:#ec2024;
  89. color:#ec2024 !important;
  90. }
  91. .biotherm-hydro-icon{
  92. fill:#1c8bed;
  93. color:#1c8bed !important;
  94. }
  95. .biotherm-tech-icon{
  96. fill:#16c462;
  97. color:#16c462 !important;
  98. }
  99. .btn.btn-hydro.signup {
  100. margin:20px 0 0 0;
  101. }
  102. .btn.btn-hydro {
  103. color: #fff;
  104. background-color: #1c8bed;
  105. border-color: #2b5580;
  106. box-shadow: 0 2px 2px 0 rgba(18, 88, 150, 0.14), 0 3px 1px -2px rgba(18, 88, 150, 0.2), 0 1px 5px 0 rgba(18, 88, 150, 0.12);
  107. }
  108. .btn.btn-hydro:hover {
  109. box-shadow: 0 14px 26px -12px rgba(28, 139, 237, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(28, 139, 237, 0.2);
  110. }
  111. .btn.btn-heat {
  112. color: #fff;
  113. background-color: #ed1c24;
  114. border-color: #a91c14;
  115. box-shadow: 0 2px 2px 0 rgba(169, 28, 20, 0.14), 0 3px 1px -2px rgba(169, 28, 20, 0.2), 0 1px 5px 0 rgba(169, 28, 20, 0.12);
  116. }
  117. .btn.btn-heat:hover {
  118. box-shadow: 0 14px 26px -12px rgba(169, 28, 20, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(28, 139, 237, 0.2);
  119. }
  120. .text-info {
  121. color: #1c8bed !important;
  122. }
  123. .icon.icon-info {
  124. color: #4284c5;
  125. }
  126. .navbar-brand img {
  127. padding:0 15px 20px 0;
  128. margin: 0 0 0 -20px;
  129. }
  130. .navbar .navbar-nav .nav-item .nav-link {
  131. font-size:15px;
  132. font-weight: 800;
  133. }
  134. .dropdown-menu {
  135. position: absolute;
  136. top: 100%;
  137. left: 0;
  138. z-index: 1000;
  139. display: none;
  140. float: left;
  141. min-width: 8.5rem;
  142. padding: 0.5rem 0;
  143. margin: 0.125rem 0 0;
  144. font-size: 1rem;
  145. color: #212529;
  146. text-align: left;
  147. list-style: none;
  148. background-color: #fff;
  149. background-clip: padding-box;
  150. border: 1px solid #00000026;
  151. border-radius: 0.55rem;
  152. box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  153. }
  154. .dropdown-menu .dropdown-item:hover,
  155. .dropdown-menu .dropdown-item:focus,
  156. .dropdown-menu a:hover,
  157. .dropdown-menu a:focus,
  158. .dropdown-menu a:active {
  159. box-shadow: none;
  160. background-color: #525252;
  161. color: #FFFFFF;
  162. border-radius:5px;
  163. }
  164. .dropdown-menu.columns-2 {
  165. min-width: 300px;
  166. }
  167. .dropdown-menu li a {
  168. padding: 5px 15px;
  169. font-weight: 300;
  170. }
  171. @media (max-width: 767px) {
  172. .dropdown-menu.multi-column {
  173. min-width: 240px !important;
  174. overflow-x: hidden;
  175. }
  176. .navbar-brand img {
  177. padding:0 15px 20px 0;
  178. margin: 0 0 0 0px;
  179. }
  180. }
  181. .page-header.header-smaller {
  182. height: 200px;
  183. min-height: 200px;
  184. }
  185. .header-image-credit {
  186. margin: 50px 0 -100px 0;
  187. position: relative;
  188. color: #fff;
  189. }
  190. .header-image-credit a {
  191. color:#fff;
  192. }
  193. .footer-big h5, .footer-big h4, .media .media-heading {
  194. font-weight: 500;
  195. font-family: "Roboto Slab", "Times New Roman", serif;
  196. }
  197. footer .copyright {
  198. padding: 45px 0;
  199. }
  200. .product-card-text {
  201. min-height:160px;
  202. }
  203. .gallery-feed img {
  204. width: 20%;
  205. margin-right: 5%;
  206. margin-bottom: 5%;
  207. float: left;
  208. }
  209. .back-background, .card-background, .front-background {
  210. background-position: 50%;
  211. background-size: cover;
  212. text-align: center;
  213. }
  214. .card .card-header-info,
  215. .card.bg-info,
  216. .card.card-rotate.bg-info .front,
  217. .card.card-rotate.bg-info .back {
  218. background: linear-gradient(60deg, #1c8bed, #65a4dc);
  219. }
  220. .contactus-2 .map {
  221. width: 100%;
  222. height: 800px;
  223. position: absolute;
  224. }
  225. .quote-container {
  226. background:#cecece;
  227. padding: 50px 0;
  228. }
  229. .quote {
  230. background:#fff;
  231. padding: 50px 0;
  232. border-radius: 15px;
  233. }
  234. .section-gray {
  235. background: #e5e5e5;
  236. }
  237. .instagram {
  238. float:left;
  239. max-width:150px;
  240. padding: 0 1px;
  241. border-radius: 10px;
  242. }
  243. .instagram:hover {
  244. -webkit-filter: blur(2px);
  245. filter: blur(2px);
  246. }
  247. ul.social-buttons li {
  248. display: inline-block;
  249. }
  250. footer ul.links-vertical li a {
  251. padding: 0px;
  252. }
  253. .footer a {
  254. color:#999;
  255. }
  256. .footer-white {
  257. margin: 100px 0;
  258. }
  259. footer ul li a {
  260. color: inherit;
  261. padding: 0.9375rem;
  262. font-weight: 100;
  263. font-size: 12px;
  264. text-transform: uppercase;
  265. border-radius: 3px;
  266. text-decoration: none;
  267. position: relative;
  268. display: block;
  269. }
  270. .card .card-header.card-header-image {
  271. position: relative;
  272. padding: 0;
  273. z-index: 1;
  274. margin-left: 15px;
  275. margin-right: 15px;
  276. margin-top: -30px;
  277. border-radius: 6px;
  278. }
  279. .card-raised {
  280. -webkit-box-shadow: 0 16px 38px -12px rgba(0,0,0,0.56), 0 4px 25px 0 rgba(0,0,0,0.12), 0 8px 10px -5px rgba(0,0,0,0.2);
  281. box-shadow: 0 16px 38px -12px rgba(0,0,0,0.56), 0 4px 25px 0 rgba(0,0,0,0.12), 0 8px 10px -5px rgba(0,0,0,0.2);
  282. }
  283. .card-background .card-description, .card-background small, .back-background .card-category, .back-background .card-description, .back-background small, .front-background .card-category, .front-background .card-description, .front-background small {
  284. color: #ffffff !important;
  285. }
  286. .card-profile .card-avatar,
  287. .card-testimonial .card-avatar {
  288. max-width: 130px;
  289. max-height: 130px;
  290. margin: -50px auto 0;
  291. overflow: hidden;
  292. padding: 0;
  293. box-shadow: 0 16px 38px -12px rgba(0, 0, 0, .56), 0 4px 25px 0 rgba(0, 0, 0, .12), 0 8px 10px -5px rgba(0, 0, 0, .2)
  294. }
  295. .card-profile .card-avatar+.card-body,
  296. .card-testimonial .card-avatar+.card-body {
  297. margin-top: 15px
  298. }
  299. .card-profile .card-avatar img,
  300. .card-testimonial .card-avatar img {
  301. width: 100%;
  302. height: auto
  303. }
  304. .card-profile .card-body+.card-footer,
  305. .card-testimonial .card-body+.card-footer {
  306. margin-top: -15px
  307. }
  308. .card-profile .card-footer .btn.btn-just-icon,
  309. .card-testimonial .card-footer .btn.btn-just-icon {
  310. font-size: 20px;
  311. padding: 0 12px;
  312. line-height: 1em
  313. }
  314. .card-profile.card-plain .card-avatar,
  315. .card-testimonial.card-plain .card-avatar {
  316. margin-top: 0
  317. }
  318. .ekko-lightbox{display:-ms-flexbox!important;display:flex!important;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;padding-right:0!important}.ekko-lightbox-container{position:relative}.ekko-lightbox-container>div.ekko-lightbox-item{position:absolute;top:0;left:0;bottom:0;right:0;width:100%}.ekko-lightbox iframe{width:100%;height:100%}.ekko-lightbox-nav-overlay{z-index:1;position:absolute;top:0;left:0;width:100%;height:100%;display:-ms-flexbox;display:flex}.ekko-lightbox-nav-overlay a{-ms-flex:1;flex:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;opacity:0;transition:opacity .5s;color:#fff;font-size:30px;z-index:1}.ekko-lightbox-nav-overlay a>*{-ms-flex-positive:1;flex-grow:1}.ekko-lightbox-nav-overlay a>:focus{outline:none}.ekko-lightbox-nav-overlay a span{padding:0 30px}.ekko-lightbox-nav-overlay a:last-child span{text-align:right}.ekko-lightbox-nav-overlay a:hover{text-decoration:none}.ekko-lightbox-nav-overlay a:focus{outline:none}.ekko-lightbox-nav-overlay a.disabled{cursor:default;visibility:hidden}.ekko-lightbox a:hover{opacity:1;text-decoration:none}.ekko-lightbox .modal-dialog{display:none}.ekko-lightbox .modal-footer{text-align:left}.ekko-lightbox-loader{position:absolute;top:0;left:0;bottom:0;right:0;width:100%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.ekko-lightbox-loader>div{width:40px;height:40px;position:relative;text-align:center}.ekko-lightbox-loader>div>div{width:100%;height:100%;border-radius:50%;background-color:#fff;opacity:.6;position:absolute;top:0;left:0;animation:a 2s infinite ease-in-out}.ekko-lightbox-loader>div>div:last-child{animation-delay:-1s}.modal-dialog .ekko-lightbox-loader>div>div{background-color:#333}@keyframes a{0%,to{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}