BCB Bank static website
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

602 wiersze
11 KiB

  1. @font-face {
  2. src: url("fonts/Archivo_Black/ArchivoBlack-Regular.ttf") format("truetype");
  3. font-family: archivo-black;
  4. font-style: normal;
  5. }
  6. @font-face {
  7. src: url("fonts/Open_Sans/OpenSans-Bold.ttf") format("truetype");
  8. font-family: open-sans;
  9. font-weight: bolder;
  10. }
  11. @font-face {
  12. src: url("fonts/Open_Sans/OpenSans-SemiBold.ttf") format("truetype");
  13. font-family: open-sans;
  14. font-weight: bold;
  15. }
  16. @font-face {
  17. src: url("fonts/Open_Sans/OpenSans-Regular.ttf") format("truetype");
  18. font-family: open-sans;
  19. font-style: normal;
  20. }
  21. @font-face {
  22. src: url("fonts/Open_Sans/OpenSans-LightItalic.ttf") format("truetype");
  23. font-family: open-sans;
  24. font-weight: normal;
  25. font-style: italic;
  26. }
  27. section h3 {
  28. font-size: 36px;
  29. font-family: "Archivo Black", sans-serif;
  30. line-height: 1.2;
  31. color: #403e41;
  32. }
  33. @media screen and (max-width: 1024px) {
  34. section h3 {
  35. text-align: center;
  36. }
  37. }
  38. section h3 mark {
  39. color: #28aae2;
  40. }
  41. section p {
  42. color: #808285;
  43. font-size: 16px;
  44. letter-spacing: 0.8px;
  45. }
  46. section figure {
  47. width: 50%;
  48. }
  49. section figure img {
  50. width: 100%;
  51. height: 100%;
  52. }
  53. section .description {
  54. width: 50%;
  55. align-self: center;
  56. }
  57. @media screen and (max-width: 1024px) {
  58. section .description {
  59. width: 100%;
  60. }
  61. }
  62. section .description p {
  63. line-height: 1.8;
  64. }
  65. #home {
  66. box-shadow: 0 8px 20px -6px #a6a8ab;
  67. display: flex;
  68. height: 80vh;
  69. }
  70. @media screen and (max-width: 1024px) {
  71. #home {
  72. flex-direction: column;
  73. }
  74. }
  75. #home p {
  76. padding: 30px 0;
  77. width: 75%;
  78. }
  79. @media screen and (max-width: 1024px) {
  80. #home p {
  81. margin: 0 auto;
  82. }
  83. }
  84. #home figure {
  85. opacity: 1;
  86. transition: opacity 500ms ease;
  87. text-align: center;
  88. align-self: flex-end;
  89. }
  90. @media screen and (max-width: 1024px) {
  91. #home figure {
  92. width: 100%;
  93. margin-top: 30px;
  94. }
  95. }
  96. #home figure.hide {
  97. opacity: 0;
  98. }
  99. #home figure img {
  100. width: 90%;
  101. }
  102. #home .description {
  103. overflow-x: hidden;
  104. }
  105. #home .description p,
  106. #home .description button {
  107. position: relative;
  108. left: 0;
  109. opacity: 1;
  110. transition: left 500ms ease, opacity 500ms ease;
  111. }
  112. #home .description h3 {
  113. opacity: 1;
  114. left: 0;
  115. position: relative;
  116. transition: left 500ms ease, opacity 500ms ease;
  117. }
  118. @media screen and (max-width: 1024px) {
  119. #home .description h3 {
  120. position: absolute;
  121. left: 50%;
  122. width: 100%;
  123. transform: translateX(-50%);
  124. }
  125. }
  126. #home .description p {
  127. transition-delay: 500ms;
  128. }
  129. #home .description button {
  130. transition-delay: 1000ms;
  131. }
  132. #home .description.hide h3,
  133. #home .description.hide p,
  134. #home .description.hide button {
  135. left: 10%;
  136. opacity: 0;
  137. }
  138. #home button {
  139. border: none;
  140. background-color: #28aae2;
  141. color: white;
  142. padding: 20px 30px;
  143. outline: none;
  144. font-size: 16px;
  145. cursor: pointer;
  146. }
  147. @media screen and (max-width: 1024px) {
  148. #home button {
  149. display: block;
  150. margin: 0 auto;
  151. margin-bottom: 40px;
  152. }
  153. }
  154. #home button .fas {
  155. padding-left: 12px;
  156. font-size: 14px;
  157. position: relative;
  158. left: 0;
  159. transition: left 500ms ease;
  160. }
  161. #home button:hover .fas {
  162. left: 10px;
  163. }
  164. #home,
  165. #about {
  166. position: relative;
  167. }
  168. @media screen and (max-width: 1024px) {
  169. #home,
  170. #about {
  171. padding-top: 100px;
  172. }
  173. }
  174. @media screen and (max-width: 1024px) {
  175. #home h3,
  176. #about h3 {
  177. position: absolute;
  178. top: 35px;
  179. left: 50%;
  180. transform: translateX(-50%);
  181. width: 100%;
  182. }
  183. }
  184. #about {
  185. background-color: #f0f0f0;
  186. display: block;
  187. margin-bottom: 225px;
  188. }
  189. @media screen and (max-width: 1024px) {
  190. #about {
  191. margin-bottom: 50px;
  192. }
  193. }
  194. #about .wrapper {
  195. width: 85%;
  196. margin: 0 auto;
  197. display: flex;
  198. justify-content: space-around;
  199. }
  200. @media screen and (max-width: 1024px) {
  201. #about .wrapper {
  202. flex-direction: column-reverse;
  203. padding-bottom: 30px;
  204. }
  205. }
  206. #about .wrapper a {
  207. display: inline-block;
  208. margin: 10px 0;
  209. }
  210. #about .wrapper a button {
  211. color: white;
  212. padding: 10px 15px;
  213. background-color: #28aae2;
  214. border: none;
  215. font-size: 16px;
  216. cursor: pointer;
  217. outline: none;
  218. transition: background-color 500ms ease;
  219. }
  220. #about .wrapper a button:hover {
  221. background-color: #403e41;
  222. }
  223. #about figure {
  224. width: 35%;
  225. position: relative;
  226. left: 6%;
  227. opacity: 0;
  228. transition: left 1000ms ease, opacity 1000ms ease;
  229. }
  230. #about figure.show {
  231. left: 0;
  232. opacity: 1;
  233. }
  234. @media screen and (max-width: 1024px) {
  235. #about figure {
  236. width: 100%;
  237. display: block;
  238. margin: 0 auto;
  239. }
  240. }
  241. #about figure img {
  242. transform: scale(1.3);
  243. top: 25%;
  244. position: relative;
  245. width: 100%;
  246. }
  247. @media screen and (max-width: 1024px) {
  248. #about figure img {
  249. transform: scale(1);
  250. }
  251. }
  252. #about .description {
  253. opacity: 0;
  254. transition: opacity 1000ms ease;
  255. width: 55%;
  256. }
  257. @media screen and (max-width: 1024px) {
  258. #about .description {
  259. width: 100%;
  260. }
  261. }
  262. #about .description.show {
  263. opacity: 1;
  264. }
  265. #about p {
  266. padding: 14px 0;
  267. }
  268. #about p:nth-of-type(1) {
  269. font-style: italic;
  270. font-weight: bold;
  271. color: black;
  272. }
  273. #service {
  274. display: block;
  275. }
  276. #service h3 {
  277. text-align: center;
  278. }
  279. #service p {
  280. width: 50%;
  281. margin: 0 auto;
  282. text-align: center;
  283. padding: 20px 0 40px;
  284. line-height: 1.8;
  285. }
  286. @media screen and (max-width: 1024px) {
  287. #service p {
  288. width: 90%;
  289. }
  290. }
  291. #service .owl-service {
  292. width: 82%;
  293. margin: 0 auto;
  294. display: block;
  295. }
  296. @media screen and (max-width: 1024px) {
  297. #service .owl-service {
  298. width: 100%;
  299. }
  300. }
  301. #service .owl-service li {
  302. list-style: none;
  303. background-color: #f0f0f0;
  304. width: 90%;
  305. margin: 0 auto;
  306. }
  307. #service .owl-service li .inner-contents {
  308. padding-top: 20px;
  309. }
  310. #service .owl-service li .inner-contents img {
  311. width: 50px;
  312. height: 50px;
  313. display: block;
  314. margin: 0 auto;
  315. padding-top: 20px;
  316. }
  317. #service .owl-service li .inner-contents p {
  318. width: 90%;
  319. margin: 0 auto;
  320. font-size: 14px;
  321. }
  322. #service .owl-service li .inner-contents .title {
  323. text-align: center;
  324. padding-top: 20px;
  325. color: #403e41;
  326. font-size: 14px;
  327. font-weight: bold;
  328. }
  329. #service .service-carousel-btn {
  330. margin: 20px auto;
  331. text-align: center;
  332. padding: 20px 0;
  333. }
  334. #service .service-carousel-btn i {
  335. font-size: 16px;
  336. padding: 0 10px;
  337. color: #28aae2;
  338. cursor: pointer;
  339. }
  340. #branches {
  341. background-color: #f0f0f0;
  342. padding: 20px 0;
  343. }
  344. #branches h3 {
  345. text-align: center;
  346. padding: 20px 0;
  347. }
  348. #branches p {
  349. text-align: center;
  350. width: 50%;
  351. margin: 0 auto;
  352. }
  353. @media screen and (max-width: 1024px) {
  354. #branches p {
  355. width: 90%;
  356. }
  357. }
  358. #branches .owl-branches {
  359. width: 80%;
  360. margin: 0 auto;
  361. height: 55vh;
  362. }
  363. @media screen and (max-width: 1024px) {
  364. #branches .owl-branches {
  365. width: 100%;
  366. }
  367. }
  368. #branches .owl-branches .owl-item-branches {
  369. width: 97%;
  370. background-color: white;
  371. margin: 50px 0;
  372. }
  373. @media screen and (max-width: 1024px) {
  374. #branches .owl-branches .owl-item-branches {
  375. width: 90%;
  376. margin: 50px auto;
  377. }
  378. }
  379. #branches .owl-branches .owl-item-branches figure {
  380. width: 100%;
  381. height: 90%;
  382. }
  383. #branches .owl-branches .owl-item-branches figure img {
  384. width: 100%;
  385. height: 100%;
  386. object-fit: cover;
  387. }
  388. #branches .owl-branches .owl-item-branches .description {
  389. margin: 0 20px;
  390. padding: 10px 0;
  391. }
  392. #branches .owl-branches .owl-item-branches .description .person-name,
  393. #branches .owl-branches .owl-item-branches .description .person-info {
  394. font-size: 14px;
  395. font-weight: bold;
  396. }
  397. #branches .owl-branches .owl-item-branches .description .person-info {
  398. padding: 2px 0;
  399. color: #808285;
  400. }
  401. #branches .owl-branches .owl-item-branches .description .person-name {
  402. color: #28aae2;
  403. }
  404. #branches .branches-carousel-btn {
  405. text-align: center;
  406. padding-bottom: 30px;
  407. position: relative;
  408. z-index: 2;
  409. }
  410. #branches .branches-carousel-btn i {
  411. padding: 10px;
  412. background-color: #d2d4d5;
  413. color: #57595b;
  414. margin: 0 0 0 12px;
  415. cursor: pointer;
  416. }
  417. @media screen and (max-width: 1024px) {
  418. #branches .branches-carousel-btn i {
  419. margin: 50px 0 0 12px;
  420. }
  421. }
  422. #enquiry {
  423. background: linear-gradient(#28aae2, #2b3991);
  424. }
  425. #enquiry h3 {
  426. text-align: center;
  427. color: white;
  428. padding: 60px 0 30px;
  429. }
  430. #enquiry p {
  431. width: 50%;
  432. margin: 0 auto;
  433. text-align: center;
  434. color: #fafafa;
  435. line-height: 1.8;
  436. }
  437. @media screen and (max-width: 1024px) {
  438. #enquiry p {
  439. width: 90%;
  440. }
  441. }
  442. #enquiry form fieldset {
  443. border: none;
  444. width: 35%;
  445. margin: 0 auto;
  446. padding: 30px 0;
  447. }
  448. @media screen and (max-width: 1024px) {
  449. #enquiry form fieldset {
  450. width: 90%;
  451. }
  452. }
  453. #enquiry form fieldset input {
  454. background-color: transparent;
  455. border: 2px solid white;
  456. padding: 8px 18px;
  457. clear: both;
  458. width: 48%;
  459. margin: 10px 0;
  460. }
  461. #enquiry form fieldset input:nth-child(even) {
  462. float: right;
  463. }
  464. #enquiry form fieldset ::-webkit-input-placeholder {
  465. color: #fafafa;
  466. }
  467. @media screen and (max-width: 1024px) {
  468. #enquiry form fieldset ::-webkit-input-placeholder {
  469. padding-left: 13px;
  470. }
  471. }
  472. #enquiry form fieldset ::-moz-placeholder {
  473. color: #fafafa;
  474. }
  475. @media screen and (max-width: 1024px) {
  476. #enquiry form fieldset ::-moz-placeholder {
  477. padding-left: 13px;
  478. }
  479. }
  480. #enquiry form fieldset :-ms-input-placeholder {
  481. color: #fafafa;
  482. }
  483. @media screen and (max-width: 1024px) {
  484. #enquiry form fieldset :-ms-input-placeholder {
  485. padding-left: 13px;
  486. }
  487. }
  488. #enquiry form fieldset :-moz-placeholder {
  489. color: #fafafa;
  490. }
  491. @media screen and (max-width: 1024px) {
  492. #enquiry form fieldset :-moz-placeholder {
  493. padding-left: 13px;
  494. }
  495. }
  496. #enquiry form fieldset textarea {
  497. background-color: transparent;
  498. border: 2px solid white;
  499. width: 100%;
  500. padding: 8px;
  501. font-family: open-sans;
  502. }
  503. #enquiry form fieldset button {
  504. display: block;
  505. margin: 20px auto;
  506. padding: 8px 18px;
  507. width: 40%;
  508. background-color: transparent;
  509. border: none;
  510. border: 2px solid white;
  511. color: white;
  512. font-size: 14px;
  513. }
  514. #contact {
  515. padding: 30px 0;
  516. }
  517. #contact h3 {
  518. text-align: center;
  519. padding: 10px 0 20px;
  520. }
  521. #contact p {
  522. width: 50%;
  523. margin: 0 auto;
  524. text-align: center;
  525. line-height: 1.8;
  526. }
  527. @media screen and (max-width: 1024px) {
  528. #contact p {
  529. width: 90%;
  530. }
  531. }
  532. #contact .inner-container {
  533. display: flex;
  534. width: 80%;
  535. margin: 40px auto;
  536. padding: 20px 0;
  537. justify-content: space-between;
  538. }
  539. @media screen and (max-width: 1024px) {
  540. #contact .inner-container {
  541. flex-direction: column;
  542. width: 90%;
  543. }
  544. }
  545. #contact .inner-container figure {
  546. width: 60%;
  547. }
  548. @media screen and (max-width: 1024px) {
  549. #contact .inner-container figure {
  550. width: 100%;
  551. }
  552. }
  553. #contact .inner-container .description-container {
  554. width: 30%;
  555. }
  556. @media screen and (max-width: 1024px) {
  557. #contact .inner-container .description-container {
  558. width: 100%;
  559. }
  560. }
  561. #contact .inner-container .description-container li {
  562. display: flex;
  563. justify-content: space-evenly;
  564. padding: 15px 0;
  565. }
  566. #contact .inner-container .description-container li address {
  567. font-size: 16px;
  568. color: #57595b;
  569. font-family: open-sans;
  570. font-style: normal;
  571. line-height: 1.8;
  572. }
  573. #contact .inner-container .description-container li label {
  574. color: #57595b;
  575. font-weight: bold;
  576. font-size: 16px;
  577. }
  578. #contact .inner-container .description-container li address,
  579. #contact .inner-container .description-container li .contact-content {
  580. width: 70%;
  581. }
  582. #contact .inner-container .description-container li .contact-content {
  583. display: flex;
  584. font-size: 16px;
  585. }
  586. #contact .inner-container .description-container li .contact-content li {
  587. color: #57595b;
  588. padding: 0 15px 0 0;
  589. }
  590. #contact .inner-container .description-container li .contact-content li i {
  591. font-size: 18px;
  592. }
  593. /*# sourceMappingURL=home.css.map */