single-page.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128
  1. * {
  2. font-family: 'Jost', sans-serif;
  3. }
  4. body {
  5. overflow-x: hidden;
  6. }
  7. #portfolio .thumbnails a {
  8. text-decoration: none;
  9. }
  10. .rock3dframe {
  11. text-align: center;
  12. margin-top: 120px;
  13. }
  14. #rock3dEmbed {
  15. display: block;
  16. }
  17. #rock3dMobileEmbed {
  18. display: none;
  19. }
  20. #rock3dTitle {
  21. display: block;
  22. position: absolute;
  23. z-index: -1;
  24. background-color: #014248;
  25. color: white;
  26. font-size: 34px;
  27. font-weight: bold;
  28. padding: 50px;
  29. padding-left: 8%;
  30. width: 50%;
  31. height: 565px;
  32. margin-left: 5%;
  33. margin-top: -125px;
  34. }
  35. .rock3dLabel {
  36. font-size: 26px;
  37. color: #014248;
  38. font-weight: bold;
  39. margin-top: 40px;
  40. margin-bottom: 40px;
  41. }
  42. #rock3dInfo {
  43. margin-top: 80px;
  44. margin-bottom: 80px;
  45. }
  46. .rock3dblockLeft {
  47. padding-left: 10%;
  48. padding-right: 5%;
  49. }
  50. .rock3dblockCenter {
  51. padding-left: 8%;
  52. padding-right: 8%;
  53. }
  54. .rock3dblockRight {
  55. padding-right: 10%;
  56. padding-left: 5%;
  57. }
  58. .rock3dblockLeft i {
  59. font-size: 42px;
  60. color: #646a6d;
  61. }
  62. .rock3dblockCenter i {
  63. font-size: 42px;
  64. color: #646a6d;
  65. }
  66. .rock3dblockRight i {
  67. font-size: 42px;
  68. color: #646a6d;
  69. }
  70. .rock3dblockLeft p {
  71. font-size: 20px;
  72. color: #646a6d;
  73. }
  74. .rock3dblockCenter p {
  75. font-size: 20px;
  76. color: #646a6d;
  77. }
  78. .rock3dblockRight p {
  79. font-size: 20px;
  80. color: #646a6d;
  81. }
  82. .navbar {
  83. background-color: #fff !important;
  84. padding-top: 20px;
  85. padding-bottom: 20px;
  86. }
  87. .navbar-brand {
  88. padding-left: 10%;
  89. }
  90. .navbar-brand img {
  91. width: 30px;
  92. }
  93. .logo-mobile {
  94. display: none;
  95. }
  96. .logo-desktop {
  97. display: inline;
  98. }
  99. .nav-link {
  100. color: #014248 !important;
  101. font-size: 19px;
  102. font-weight: 500;
  103. margin-left: 30px;
  104. }
  105. .nav-link:hover {
  106. color: #fc7c35 !important;
  107. }
  108. .stock-image {
  109. background-repeat: no-repeat;
  110. background-size: cover;
  111. background-position: center center;
  112. min-height: 450px;
  113. }
  114. .stock-details {
  115. background-color: #014248;
  116. }
  117. .stock-details h1 {
  118. font-size: 54px;
  119. color: #fc7c35;
  120. margin-top: 15%;
  121. margin-left: 10%;
  122. }
  123. .stock-details h2 {
  124. color: #fff;
  125. font-size: 36px;
  126. font-weight: 500;
  127. margin-left: 10%;
  128. margin-top: 5%;
  129. width: 80%;
  130. }
  131. .stock-details p {
  132. color: #fff;
  133. font-size: 20px;
  134. color: white;
  135. margin-left: 10%;
  136. margin-top: 5%;
  137. max-width: 80%;
  138. }
  139. .stock-icon {
  140. font-size: 28px;
  141. color: white;
  142. font-weight: 500;
  143. }
  144. .stock-icon small {
  145. display: block;
  146. margin-top: 20px;
  147. }
  148. .stock-icon img {
  149. width: 52px;
  150. height: 52px;
  151. }
  152. .stock-icon-container {
  153. margin-left: 9%;
  154. margin-top: 5%;
  155. padding: 0px;
  156. margin-bottom: 15%;
  157. }
  158. .property-details {
  159. padding: 5%;
  160. padding-top: 5%;
  161. padding-right: 5%;
  162. background-color: white;
  163. font-size: 20px;
  164. color: #014248;
  165. line-height: 28px;
  166. }
  167. .property-details h3 {
  168. font-size: 36px;
  169. font-weight: 500;
  170. color: #014248;
  171. margin-bottom: 30px;
  172. }
  173. .property-details p {
  174. font-size: 20px;
  175. height: 310px;
  176. max-height: 310px;
  177. overflow: hidden;
  178. color: #646a6d;
  179. }
  180. .property-details a {
  181. font-size: 20px;
  182. font-weight: 500;
  183. color: #014248;
  184. text-decoration: none;
  185. }
  186. .property-details a:hover {
  187. color: #fc7c35;
  188. }
  189. .property-image {
  190. padding: 5%;
  191. background-color: white;
  192. text-align: center;
  193. }
  194. .property-image img {
  195. width: 100%;
  196. border-radius: 4px;
  197. }
  198. .slideshow-title {
  199. padding: 5%;
  200. padding-bottom: 0px;
  201. background-color: #014248;
  202. }
  203. .slideshow-title h3 {
  204. font-size: 36px;
  205. font-weight: 500;
  206. color: white;
  207. text-align: center;
  208. margin-bottom: 0%;
  209. }
  210. .slideshow {
  211. padding: 5%;
  212. background-color: #014248;
  213. overflow-x: hidden;
  214. }
  215. .thumbnails {
  216. max-width: 40000px;
  217. }
  218. .thumb-image {
  219. height: 400px;
  220. width: 450px;
  221. border-radius: 4px;
  222. display: inline-block;
  223. margin-right: 40px;
  224. background-repeat: no-repeat;
  225. background-size: cover;
  226. }
  227. .slide-left {
  228. display: block;
  229. position: absolute;
  230. left: 0px;
  231. background-color: black;
  232. width: 35px;
  233. height: 60px;
  234. font-size: 38px;
  235. color: white;
  236. text-decoration: none;
  237. text-align: center;
  238. margin-top: 160px;
  239. }
  240. .slide-left:hover {
  241. color: #fc7c35;
  242. background-color: black !important;
  243. }
  244. .slide-right {
  245. display: block;
  246. position: absolute;
  247. right: 0px;
  248. background-color: black;
  249. width: 35px;
  250. height: 60px;
  251. font-size: 38px;
  252. color: white;
  253. text-decoration: none;
  254. text-align: center;
  255. margin-top: 160px;
  256. }
  257. .slide-right:hover {
  258. color: #fc7c35;
  259. background-color: black !important;
  260. }
  261. .property-map {
  262. margin: 5%;
  263. padding: 0px;
  264. }
  265. .property-map h3 {
  266. font-size: 36px;
  267. font-weight: 500;
  268. color: #014248;
  269. margin-bottom: 3%;
  270. }
  271. #gmap {
  272. width: 90%;
  273. height: 600px;
  274. background-color: white;
  275. border: solid 1px #d9d9d9;
  276. border-radius: 4px;
  277. box-shadow: 5px 5px 5px #d9d9d9;
  278. }
  279. .property-info {
  280. margin: 5%;
  281. margin-top: 0;
  282. padding: 0px;
  283. margin-bottom: 25px;
  284. }
  285. .property-info h3 {
  286. font-size: 36px;
  287. font-weight: 500;
  288. color: #014248;
  289. float: left;
  290. margin-bottom: 3%;
  291. }
  292. .property-info h4 {
  293. font-size: 36px;
  294. font-weight: 500;
  295. color: #fc7c35;
  296. float: right;
  297. margin-bottom: 3%;
  298. margin-right: 10%;
  299. }
  300. .info {
  301. width: 90%;
  302. }
  303. .property-contact {
  304. margin: 5%;
  305. background-color: #1B1D1F;
  306. }
  307. td strong {
  308. color: #1B1D1F;
  309. }
  310. td {
  311. font-size: 20px;
  312. color: #727278;
  313. }
  314. .property-contact {
  315. background-color: #1B1D1F;
  316. margin: 0px;
  317. margin-top: 350px;
  318. padding: 5.5%;
  319. }
  320. .contact-text {
  321. color: #888989;
  322. }
  323. .contact-text h3 {
  324. color: #d9d9d9;
  325. font-size: 36px;
  326. font-weight: 500;
  327. }
  328. .contact-text p {
  329. font-size: 20px;
  330. max-width: 700px;
  331. }
  332. .contact-form input {
  333. background-color: transparent;
  334. border: solid 1px #888989;
  335. border-radius: 10px;
  336. height: 50px;
  337. color: #888989;
  338. margin-bottom: 15px;
  339. font-size: 20px;
  340. }
  341. .contact-form textarea {
  342. background-color: transparent;
  343. border: solid 1px #888989;
  344. border-radius: 10px;
  345. height: 150px;
  346. color: #888989;
  347. font-size: 20px;
  348. }
  349. .send-btn {
  350. background-color: #014248;
  351. border: none;
  352. border-radius: 4px;
  353. color: #d9d9d9;
  354. font-size: 16px;
  355. font-weight: 600;
  356. cursor: pointer;
  357. padding: 5px;
  358. padding-left: 20px;
  359. padding-right: 20px;
  360. text-align: center;
  361. margin-top: 15px;
  362. }
  363. .agent {
  364. background-color: #014248;
  365. border-radius: 4px;
  366. margin-top: -400px;
  367. padding: 5%;
  368. margin-bottom: 100px;
  369. }
  370. .agent-kep {
  371. height: 350px;
  372. width: 350px;
  373. border-radius: 4px;
  374. background-position: center;
  375. background-repeat: no-repeat;
  376. background-size: cover;
  377. }
  378. .agent-text {
  379. margin-left: 90px;
  380. }
  381. .agent-text h3 {
  382. font-size: 36px;
  383. font-weight: 500;
  384. color: #d9d9d9;
  385. margin-bottom: 40px;
  386. }
  387. .agent-text p {
  388. font-size: 20px;
  389. color: #d9d9d9;
  390. }
  391. .agent-text ul {
  392. list-style: none;
  393. display: inline-block;
  394. margin: 0px;
  395. padding: 0px;
  396. }
  397. .agent-text ul li {
  398. color: #d9d9d9;
  399. list-style: none;
  400. margin: 0px;
  401. padding: 0px;
  402. display: inline-block;
  403. font-size: 24px;
  404. font-weight: 500;
  405. margin-right: 60px;
  406. margin-top: 60px;
  407. }
  408. .agent-text ul li a {
  409. color: #d9d9d9;
  410. text-decoration: none;
  411. }
  412. .agent-text ul li a:hover {
  413. color: #FC7C35;
  414. }
  415. #footer {
  416. background-color: #1B1D1F;
  417. padding-left: 5%;
  418. padding-right: 5%;
  419. }
  420. #footer .footer-left {
  421. border-top: solid 1px #d9d9d9;
  422. text-align: left;
  423. padding-top: 20px;
  424. padding-bottom: 20px;
  425. font-size: 18px;
  426. font-weight: 600;
  427. color: #d9d9d9;
  428. }
  429. #footer .footer-right {
  430. border-top: solid 1px #d9d9d9;
  431. text-align: right;
  432. padding-top: 20px;
  433. padding-bottom: 20px;
  434. font-size: 18px;
  435. font-weight: 600;
  436. color: #d9d9d9;
  437. }
  438. #footer a {
  439. text-decoration: none;
  440. color: #d9d9d9;
  441. }
  442. .table-responsive-sm {
  443. display: none;
  444. }
  445. .error {
  446. border: solid 1px #ff0000 !important;
  447. }
  448. .error-message {
  449. display: none;
  450. width: 100%;
  451. height: auto;
  452. padding: 10px;
  453. padding-left: 15px;
  454. padding-right: 5px;
  455. background-color: #c77b7b;
  456. color: white;
  457. font-family: 'Open Sans';
  458. font-size: 12px;
  459. font-weight: normal;
  460. font-style: normal;
  461. font-stretch: normal;
  462. line-height: 2;
  463. letter-spacing: normal;
  464. }
  465. .success-message {
  466. display: none;
  467. width: 100%;
  468. height: auto;
  469. padding: 10px;
  470. background-color: #FC7C35;
  471. color: white;
  472. font-family: 'Open Sans';
  473. font-size: 12px;
  474. font-weight: normal;
  475. font-style: normal;
  476. font-stretch: normal;
  477. line-height: 2;
  478. letter-spacing: normal;
  479. }
  480. .showonmobile {
  481. display: none;
  482. }
  483. .showondesktop {
  484. display: block;
  485. }
  486. @media screen and (max-width: 1030px) {
  487. #rock3dEmbed {
  488. display: none;
  489. }
  490. #rock3dMobileEmbed {
  491. display: block;
  492. }
  493. #rock3dMobileEmbed {
  494. display: block;
  495. }
  496. .rock3dframer {
  497. background-color: #014248;
  498. height: 300px;
  499. }
  500. .rock3dframer h4 {
  501. color: white;
  502. font-size: 26px;
  503. font-weight: bold;
  504. text-align: center;
  505. padding-top: 50px;
  506. margin-bottom: 0px;
  507. }
  508. .rock3dembedder {
  509. margin-top: -180px;
  510. text-align: center;
  511. }
  512. .rock3dembedder iframe {
  513. width: 95% !important;
  514. }
  515. .rock3dLabel {
  516. font-size: 26px;
  517. margin-top: 20px;
  518. margin-bottom: 20px;
  519. }
  520. .rock3dblockLeft {
  521. text-align: left;
  522. margin-top: 40px;
  523. padding: 0px;
  524. padding-left: 20px;
  525. }
  526. .rock3dblockCenter {
  527. text-align: left;
  528. margin-top: 40px;
  529. padding: 0px;
  530. padding-left: 20px;
  531. }
  532. .rock3dblockRight {
  533. text-align: left;
  534. margin-top: 40px;
  535. padding: 0px;
  536. padding-left: 20px;
  537. padding-bottom: 50px;
  538. }
  539. .rock3dblockLeft i {
  540. font-size: 32px;
  541. color: #646a6d;
  542. }
  543. .rock3dblockCenter i {
  544. font-size: 32px;
  545. color: #646a6d;
  546. }
  547. .rock3dblockRight i {
  548. font-size: 32px;
  549. color: #646a6d;
  550. }
  551. .rock3dblockLeft p {
  552. font-size: 20px;
  553. color: #646a6d;
  554. }
  555. .rock3dblockCenter p {
  556. font-size: 20px;
  557. color: #646a6d;
  558. }
  559. .rock3dblockRight p {
  560. font-size: 20px;
  561. color: #646a6d;
  562. }
  563. .property-info {
  564. margin-top: 0px;
  565. margin-bottom: 0px;
  566. margin-left: 25px;
  567. margin-right: 25px;
  568. }
  569. .property-info h3 {
  570. font-size: 30px;
  571. margin-bottom: 25px;
  572. }
  573. .property-info h4 {
  574. font-size: 26px;
  575. margin-bottom: 25px;
  576. float: left;
  577. clear: both;
  578. }
  579. .agent-text {
  580. margin-left: 0px;
  581. }
  582. .property-contact {
  583. padding: 0px;
  584. padding-top: 0px;
  585. margin-top: 50px;
  586. }
  587. .showonmobile {
  588. display: block;
  589. }
  590. .showondesktop {
  591. display: none;
  592. }
  593. /*.agent {
  594. margin-top: 50px;
  595. }*/
  596. #tanacsado {
  597. margin-left: 0px;
  598. margin-right: 0px;
  599. }
  600. .agent {
  601. margin-top: 0px;
  602. margin-bottom: 50px;
  603. border-radius: 0px;
  604. padding-top: 70px;
  605. padding-left: 50px;
  606. padding-right: 50px;
  607. }
  608. .agent-kep {
  609. height: 325px;
  610. width: 100%;
  611. margin-left: 0px;
  612. background-repeat: no-repeat;
  613. background-size: cover;
  614. background-position: center center;
  615. border-radius: 4px;
  616. }
  617. .agent-text h3 {
  618. margin-top: 25px;
  619. font-size: 30px;
  620. }
  621. .agent-text p {
  622. font-size: 18px;
  623. }
  624. .agent-text ul li {
  625. margin-top: 25px;
  626. font-size: 16px;
  627. }
  628. #kapcsolat {
  629. padding-left: 25px;
  630. padding-right: 25px;
  631. padding-bottom: 50px;
  632. }
  633. }
  634. @media screen and (max-width: 900px) {
  635. *:focus {
  636. outline: 0 !important;
  637. outline-style: none !important;
  638. box-shadow: none !important;
  639. border-color: transparent !important;
  640. background-color: transparent !important;
  641. color: white;
  642. }
  643. #rock3dEmbed {
  644. display: none;
  645. }
  646. #rock3dMobileEmbed {
  647. display: block;
  648. }
  649. .rock3dframer {
  650. background-color: #014248;
  651. height: 300px;
  652. }
  653. .rock3dframer h4 {
  654. color: white;
  655. font-size: 26px;
  656. font-weight: bold;
  657. text-align: center;
  658. padding-top: 50px;
  659. margin-bottom: 0px;
  660. }
  661. .rock3dembedder {
  662. margin-top: -180px;
  663. text-align: center;
  664. }
  665. .rock3dembedder iframe {
  666. width: 95% !important;
  667. }
  668. .rock3dLabel {
  669. font-size: 26px;
  670. margin-top: 20px;
  671. margin-bottom: 20px;
  672. }
  673. .rock3dblockLeft {
  674. text-align: left;
  675. margin-top: 40px;
  676. padding: 0px;
  677. padding-left: 20px;
  678. }
  679. .rock3dblockCenter {
  680. text-align: left;
  681. margin-top: 40px;
  682. padding: 0px;
  683. padding-left: 20px;
  684. }
  685. .rock3dblockRight {
  686. text-align: left;
  687. margin-top: 40px;
  688. padding: 0px;
  689. padding-left: 20px;
  690. padding-bottom: 50px;
  691. }
  692. .rock3dblockLeft i {
  693. font-size: 32px;
  694. color: #646a6d;
  695. }
  696. .rock3dblockCenter i {
  697. font-size: 32px;
  698. color: #646a6d;
  699. }
  700. .rock3dblockRight i {
  701. font-size: 32px;
  702. color: #646a6d;
  703. }
  704. .rock3dblockLeft p {
  705. font-size: 20px;
  706. color: #646a6d;
  707. }
  708. .rock3dblockCenter p {
  709. font-size: 20px;
  710. color: #646a6d;
  711. }
  712. .rock3dblockRight p {
  713. font-size: 20px;
  714. color: #646a6d;
  715. }
  716. .navbar-collapse {
  717. background-color: #1B1D1F;
  718. margin-left: -12px;
  719. margin-right: -12px;
  720. text-align: center;
  721. padding-top: 10px;
  722. padding-bottom: 10px;
  723. }
  724. .navbar-nav {
  725. margin-left: -35px;
  726. }
  727. .navbar-brand {
  728. padding-bottom: 20px;
  729. }
  730. .showonmobile {
  731. display: block;
  732. }
  733. .showondesktop {
  734. display: none;
  735. }
  736. .table-responsive-sm {
  737. display: block;
  738. }
  739. .navbar-light .navbar-toggler {
  740. border: none;
  741. padding-bottom: 20px;
  742. outline: none;
  743. }
  744. .navbar-light .navbar-toggler::-moz-focus-inner {
  745. border: 0;
  746. }
  747. #tanacsado {
  748. margin-right: -20px;
  749. margin-left: -20px;
  750. }
  751. .agent {
  752. margin-top: 0px;
  753. margin-bottom: 50px;
  754. border-radius: 0px;
  755. padding-top: 70px;
  756. padding-left: 50px;
  757. padding-right: 50px;
  758. }
  759. .agent-kep {
  760. height: 325px;
  761. width: 100%;
  762. margin-left: 0px;
  763. background-repeat: no-repeat;
  764. background-size: cover;
  765. background-position: center center;
  766. border-radius: 4px;
  767. }
  768. .agent-text h3 {
  769. margin-top: 25px;
  770. font-size: 30px;
  771. }
  772. .agent-text p {
  773. font-size: 18px;
  774. }
  775. .agent-text ul li {
  776. margin-top: 25px;
  777. font-size: 16px;
  778. }
  779. .footer-left {
  780. width: 70%;
  781. }
  782. .footer-right {
  783. width: 30%;
  784. }
  785. .thumbnails {
  786. margin-left: -20px;
  787. }
  788. .thumb-image {
  789. height: 283px;
  790. border-radius: 0px;
  791. }
  792. .slideshow {
  793. /*padding-top: 50px;*/
  794. padding-bottom: 50px;
  795. }
  796. .slideshow h3 {
  797. font-size: 20px;
  798. margin-bottom: 50px;
  799. }
  800. .slideshow-title h3 {
  801. font-size: 20px;
  802. margin-top: 50px;
  803. margin-bottom: 50px;
  804. }
  805. .table-responsive-xl {
  806. max-height: 10px;
  807. }
  808. .table-responsive-lg {
  809. max-height: 10px;
  810. }
  811. .table-responsive-md {
  812. max-height: 10px;
  813. }
  814. .table-responsive-sm {
  815. overflow-x: unset !important;
  816. }
  817. .slide-left {
  818. margin-top: 120px;
  819. }
  820. .slide-right {
  821. margin-top: 120px;
  822. }
  823. td {
  824. font-size: 18px;
  825. }
  826. .stock-details h1 {
  827. margin-left: 25px;
  828. margin-top: 50px;
  829. font-size: 42px;
  830. }
  831. .stock-details h2 {
  832. margin-left: 25px;
  833. font-size: 30px;
  834. }
  835. .stock-details p {
  836. margin-left: 25px;
  837. font-size: 18px;
  838. }
  839. .stock-icon-container {
  840. margin-left: 25px;
  841. margin-top: 50px;
  842. margin-bottom: 50px;
  843. }
  844. .stock-icon img {
  845. width: 45px;
  846. }
  847. .stock-icon small {
  848. font-size: 20px;
  849. }
  850. .navbar {
  851. background-color: #014248 !important;
  852. padding-top: 20px;
  853. padding-bottom: 0px;
  854. }
  855. .navbar-toggler-icon {
  856. background-image: url('../images/menu.png') !important;
  857. }
  858. .nav-link {
  859. color: white !important;
  860. }
  861. .stock-image {
  862. background-repeat: no-repeat;
  863. background-size: cover;
  864. background-position: center center;
  865. height: 280px;
  866. min-height: 280px;
  867. }
  868. .property-image {
  869. display: none;
  870. }
  871. .property-details h3 {
  872. font-size: 30px;
  873. margin-bottom: 25px;
  874. }
  875. .property-details {
  876. font-size: 18px;
  877. padding-top: 50px;
  878. padding-bottom: 50px;
  879. padding-left: 25px;
  880. padding-right: 25px;
  881. }
  882. .property-map {
  883. margin-top: 50px;
  884. margin-bottom: 50px;
  885. margin-left: 20px;
  886. margin-right: 25px;
  887. }
  888. #gmap {
  889. height: 315px;
  890. }
  891. .property-map h3 {
  892. margin-bottom: 25px;
  893. font-size: 30px;
  894. width: 95%;
  895. }
  896. .property-info {
  897. margin-top: 0px;
  898. margin-bottom: 0px;
  899. margin-left: 25px;
  900. margin-right: 25px;
  901. }
  902. .property-info h3 {
  903. font-size: 30px;
  904. margin-bottom: 25px;
  905. }
  906. .property-info h4 {
  907. font-size: 26px;
  908. margin-bottom: 25px;
  909. float: left;
  910. }
  911. .contact-text {
  912. margin-top: 50px;
  913. margin-left: 5px;
  914. margin-right: 5px;
  915. }
  916. .contact-text h3 {
  917. font-size: 30px;
  918. }
  919. .contact-text p {
  920. font-size: 18px;
  921. }
  922. .contact-form {
  923. margin-bottom: 50px;
  924. }
  925. .contact-form input {
  926. font-size: 18px;
  927. }
  928. .logo-mobile {
  929. display: inline;
  930. }
  931. .logo-desktop {
  932. display: none;
  933. }
  934. .property-contact {
  935. padding: 0px !important;
  936. padding-top: 0px;
  937. }
  938. }