BCB Bank static website
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

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