style.css 18 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033
  1. @charset "UTF-8";
  2. @import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;600&display=swap");
  3. * {
  4. margin: 0;
  5. padding: 0;
  6. -webkit-box-sizing: border-box;
  7. box-sizing: border-box;
  8. }
  9. @font-face {
  10. font-family: 追奇手寫體;
  11. src: url(./drechifont-proportional.ttf);
  12. font-weight: 900;
  13. }
  14. body .title {
  15. font-weight: bolder;
  16. padding: 15px;
  17. font-family: 'Noto Serif TC', serif !important;
  18. color: #4b515e;
  19. text-align: center;
  20. }
  21. @media screen and (max-width: 1024px) {
  22. body .title {
  23. font-size: 48px;
  24. }
  25. }
  26. @media screen and (max-width: 767px) {
  27. body .title {
  28. font-size: 40px;
  29. }
  30. }
  31. @media screen and (max-width: 400px) {
  32. body .title {
  33. font-size: 30px !important;
  34. }
  35. }
  36. body .btn {
  37. width: 100vw;
  38. text-align: center;
  39. }
  40. body .btn-main {
  41. -webkit-box-shadow: 0 10px 9px rgba(0, 0, 0, 0.5);
  42. box-shadow: 0 10px 9px rgba(0, 0, 0, 0.5);
  43. border: none;
  44. padding: 15px;
  45. background: #404854;
  46. color: #fff;
  47. font-size: 16px;
  48. letter-spacing: 1px;
  49. width: 280px;
  50. border-radius: 30px;
  51. -webkit-transition: 0.3s;
  52. transition: 0.3s;
  53. }
  54. body .btn-main:hover {
  55. background-color: #9c857b;
  56. width: 285px;
  57. font-size: 16px;
  58. }
  59. @media screen and (max-width: 1024px) {
  60. body .btn-main {
  61. font-size: 16px;
  62. padding: 15px;
  63. }
  64. }
  65. body .arrow {
  66. position: fixed;
  67. right: 3vw;
  68. bottom: 100px;
  69. width: 45px;
  70. height: 40px;
  71. z-index: 10;
  72. background-color: #E06649;
  73. }
  74. body .arrow:hover {
  75. -webkit-box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  76. box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  77. }
  78. .navigation {
  79. width: 100vw;
  80. height: 60px;
  81. background: #fff;
  82. -webkit-box-shadow: 0 5px 9px rgba(0, 0, 0, 0.3);
  83. box-shadow: 0 5px 9px rgba(0, 0, 0, 0.3);
  84. z-index: 5;
  85. position: fixed;
  86. overflow: hidden;
  87. }
  88. .navigation .logo {
  89. padding: 10px;
  90. margin-bottom: 5px;
  91. }
  92. .navigation .logo img {
  93. width: 128px;
  94. }
  95. .navigation #menu-btn1 {
  96. position: absolute;
  97. right: 40px;
  98. top: 15px;
  99. width: 32px;
  100. height: 32px;
  101. z-index: 6;
  102. }
  103. #banner-box {
  104. height: 50vh;
  105. overflow: hidden;
  106. position: relative;
  107. }
  108. @media screen and (max-width: 767px) {
  109. #banner-box {
  110. height: 90vh;
  111. }
  112. }
  113. #banner-box .banner-slider {
  114. height: 45vh;
  115. }
  116. @media screen and (max-width: 767px) {
  117. #banner-box .banner-slider {
  118. height: 80vh;
  119. }
  120. }
  121. #banner-box .banner-slider .slick-dots {
  122. margin-bottom: 50px;
  123. }
  124. #banner-box .banner-slider .slick-dots ::before {
  125. color: #fff;
  126. }
  127. @media screen and (max-width: 1024px) {
  128. #banner-box .banner-slider .slick-dots {
  129. font-size: 48px;
  130. }
  131. }
  132. #banner-box .banner-slider .banner1,
  133. #banner-box .banner-slider .banner2,
  134. #banner-box .banner-slider .banner3 {
  135. width: 100vw;
  136. height: 45vh;
  137. background-repeat: no-repeat;
  138. background-size: cover;
  139. background-position: center center;
  140. }
  141. @media screen and (max-width: 767px) {
  142. #banner-box .banner-slider .banner1,
  143. #banner-box .banner-slider .banner2,
  144. #banner-box .banner-slider .banner3 {
  145. height: 80vh;
  146. }
  147. }
  148. @media screen and (min-height: 800px) {
  149. #banner-box .banner-slider .banner1,
  150. #banner-box .banner-slider .banner2,
  151. #banner-box .banner-slider .banner3 {
  152. background-position: 55% 50%;
  153. }
  154. }
  155. #banner-box .banner-slider .banner1 h1,
  156. #banner-box .banner-slider .banner2 h1,
  157. #banner-box .banner-slider .banner3 h1 {
  158. line-height: 40vh;
  159. text-align: center;
  160. padding: 15px;
  161. color: #fff;
  162. font-family: 追奇手寫體;
  163. font-size: 72px;
  164. }
  165. @media screen and (max-width: 767px) {
  166. #banner-box .banner-slider .banner1 h1,
  167. #banner-box .banner-slider .banner2 h1,
  168. #banner-box .banner-slider .banner3 h1 {
  169. line-height: 80vh;
  170. }
  171. }
  172. #banner-box .banner-slider .banner1 .img,
  173. #banner-box .banner-slider .banner2 .img,
  174. #banner-box .banner-slider .banner3 .img {
  175. width: 20px;
  176. }
  177. #banner-box .banner-slider .banner1 {
  178. background-image: url(./img/banner/001.webp);
  179. }
  180. #banner-box .banner-slider .banner2 {
  181. background-image: url(./img/banner/002.webp);
  182. }
  183. #banner-box .banner-slider .banner3 {
  184. background-image: url(./img/banner/003.webp);
  185. }
  186. #content1 {
  187. margin-top: 100px;
  188. width: 100vw;
  189. }
  190. #content1 .title {
  191. text-align: center;
  192. margin: 30px 0px;
  193. font-family: "Times New Roman", Times, serif;
  194. }
  195. @media screen and (max-width: 767px) {
  196. #content1 .title {
  197. font-size: 30px;
  198. }
  199. }
  200. @media screen and (max-width: 400px) {
  201. #content1 .title {
  202. font-size: 25px;
  203. }
  204. }
  205. #content1 .box {
  206. margin: 0 auto;
  207. width: 85vw;
  208. }
  209. @media screen and (max-width: 350px) {
  210. #content1 .box {
  211. width: 90vw;
  212. }
  213. }
  214. #content1 .text {
  215. position: relative;
  216. }
  217. #content1 .text .text2 {
  218. position: absolute;
  219. top: 15vw;
  220. left: 10vw;
  221. z-index: 1;
  222. }
  223. @media screen and (max-width: 1024px) {
  224. #content1 .text .text2 {
  225. width: 65vw;
  226. height: 30vw;
  227. }
  228. }
  229. @media screen and (max-width: 767px) {
  230. #content1 .text .text2 {
  231. width: 80vw;
  232. left: 5vw;
  233. }
  234. }
  235. @media screen and (max-width: 350px) {
  236. #content1 .text .text2 {
  237. width: 85vw;
  238. left: 3vw;
  239. }
  240. }
  241. #content1 .text .text2 h2 {
  242. line-height: 1.5;
  243. color: #fff;
  244. text-align-last: left;
  245. font-size: 20px;
  246. letter-spacing: 1px;
  247. font-weight: 900;
  248. }
  249. @media screen and (max-width: 1024px) {
  250. #content1 .text .text2 h2 {
  251. font-size: 32px;
  252. }
  253. }
  254. @media screen and (max-width: 767px) {
  255. #content1 .text .text2 h2 {
  256. font-size: 1.3rem;
  257. }
  258. }
  259. @media screen and (max-width: 400px) {
  260. #content1 .text .text2 h2 {
  261. font-size: 1.1rem;
  262. }
  263. }
  264. #content1 img {
  265. margin: 15px auto;
  266. width: 85vw;
  267. height: 30vh;
  268. -o-object-fit: cover;
  269. object-fit: cover;
  270. -webkit-filter: brightness(70%);
  271. filter: brightness(70%);
  272. }
  273. @media screen and (max-width: 767px) {
  274. #content1 img {
  275. width: 85vw;
  276. }
  277. }
  278. @media screen and (max-width: 350px) {
  279. #content1 img {
  280. width: 90vw;
  281. }
  282. }
  283. #service {
  284. width: 100vw;
  285. text-align: center;
  286. }
  287. @media screen and (max-width: 400px) {
  288. #service h1 {
  289. margin: 50px 0;
  290. padding: 0;
  291. font-size: 30px !important;
  292. }
  293. }
  294. #service .text {
  295. font-size: 1.5rem;
  296. display: inline;
  297. text-align: left;
  298. }
  299. @media screen and (max-width: 767px) {
  300. #service .text {
  301. font-size: 1rem;
  302. }
  303. }
  304. @media screen and (max-width: 576px) {
  305. #service .text {
  306. font-size: 0.8rem;
  307. }
  308. }
  309. #service .text .left-box .left-text {
  310. color: #000;
  311. font-weight: 900;
  312. }
  313. @media screen and (max-width: 769px) {
  314. #service .text .left-box .left-text {
  315. padding-top: 3vw;
  316. }
  317. }
  318. @media screen and (max-width: 576px) {
  319. #service .text .left-box .left-text {
  320. font-size: 0.9rem;
  321. padding-top: 5vw;
  322. }
  323. }
  324. @media screen and (max-width: 400px) {
  325. #service .text .left-box .left-text {
  326. font-size: 0.7rem;
  327. }
  328. }
  329. @media screen and (max-width: 769px) {
  330. #service .text .left-box {
  331. width: 45vw;
  332. padding-left: 50px;
  333. margin-top: 30px;
  334. }
  335. }
  336. @media screen and (max-width: 576px) {
  337. #service .text .left-box {
  338. padding-left: 30px;
  339. margin-top: 20px;
  340. }
  341. }
  342. @media screen and (max-width: 400px) {
  343. #service .text .left-box {
  344. padding-top: 5px;
  345. margin-top: 15px;
  346. padding-left: 10px;
  347. }
  348. }
  349. #service .icon {
  350. width: 20vw;
  351. }
  352. #service h1 {
  353. margin: 50px;
  354. }
  355. @media screen and (max-width: 767px) {
  356. #service h1 {
  357. font-size: 34px;
  358. }
  359. }
  360. @media screen and (max-width: 400px) {
  361. #service h1 {
  362. font-size: 30px !important;
  363. }
  364. }
  365. #service-process {
  366. margin: 0 auto;
  367. width: 65vw;
  368. background-color: #f7f7f7;
  369. }
  370. @media screen and (max-width: 767px) {
  371. #service-process {
  372. width: 85vw;
  373. }
  374. }
  375. @media screen and (max-width: 1024px) {
  376. #service-process h1 {
  377. margin-bottom: 150px;
  378. }
  379. }
  380. @media screen and (max-width: 767px) {
  381. #service-process h1 {
  382. font-size: 32px;
  383. margin-bottom: 30px;
  384. }
  385. }
  386. #service-process #box1-text {
  387. margin-top: 100px;
  388. }
  389. @media screen and (max-width: 767px) {
  390. #service-process #box1-text {
  391. margin-top: 50px;
  392. }
  393. }
  394. #service-process .process-box {
  395. width: 65vw;
  396. display: -ms-grid;
  397. display: grid;
  398. margin: 0px auto;
  399. -ms-grid-columns: (1fr)[2];
  400. grid-template-columns: repeat(2, 1fr);
  401. grid-gap: 3vw;
  402. }
  403. @media screen and (max-width: 767px) {
  404. #service-process .process-box {
  405. width: 75vw;
  406. }
  407. }
  408. #service-process img {
  409. width: 128px;
  410. height: 128px;
  411. -o-object-fit: cover;
  412. object-fit: cover;
  413. }
  414. @media screen and (max-width: 1024px) {
  415. #service-process img {
  416. height: 256px;
  417. width: 256px;
  418. }
  419. }
  420. @media screen and (max-width: 767px) {
  421. #service-process img {
  422. width: 128px;
  423. height: 128px;
  424. }
  425. }
  426. #service-process .process-title {
  427. text-align: center;
  428. width: 190px;
  429. }
  430. @media screen and (max-width: 1024px) {
  431. #service-process .process-title {
  432. width: 30vw;
  433. }
  434. }
  435. @media screen and (max-width: 1024px) {
  436. #service-process .process-title {
  437. width: 40vw;
  438. }
  439. }
  440. #service-process .process-title .p-text {
  441. font-size: 20px;
  442. font-family: 微軟正黑體;
  443. font-weight: bolder;
  444. color: #6f645a;
  445. }
  446. @media screen and (max-width: 1024px) {
  447. #service-process .process-title .p-text {
  448. width: 40vw;
  449. font-size: 38px;
  450. }
  451. }
  452. @media screen and (max-width: 767px) {
  453. #service-process .process-title .p-text {
  454. font-size: 18px;
  455. width: 40vw;
  456. }
  457. }
  458. @media screen and (max-width: 350px) {
  459. #service-process .process-title .p-text {
  460. font-size: 16px;
  461. }
  462. }
  463. @media screen and (max-width: 1024px) {
  464. #service-process .process-title img {
  465. margin-top: 80px;
  466. width: 40px;
  467. height: 40px;
  468. }
  469. }
  470. @media screen and (max-width: 767px) {
  471. #service-process .process-title img {
  472. width: 8vw;
  473. height: 8vw;
  474. margin-top: 10px;
  475. }
  476. }
  477. #feedback {
  478. margin: auto;
  479. width: 70vw;
  480. padding-top: 50px;
  481. }
  482. @media screen and (max-width: 767px) {
  483. #feedback {
  484. width: 90vw;
  485. }
  486. }
  487. #feedback .feedback-slider1 {
  488. width: 70vw;
  489. }
  490. @media screen and (max-width: 767px) {
  491. #feedback .feedback-slider1 {
  492. width: 90vw;
  493. }
  494. }
  495. #feedback h1 {
  496. margin-bottom: 50px;
  497. }
  498. #feedback .box {
  499. position: relative;
  500. }
  501. #feedback .box p {
  502. margin: 20px;
  503. text-align: center;
  504. font-size: 18px;
  505. font-weight: 600;
  506. }
  507. #feedback .box img {
  508. width: 390px;
  509. height: 195px;
  510. -o-object-fit: cover;
  511. object-fit: cover;
  512. }
  513. @media screen and (max-width: 1024px) {
  514. #feedback .box img {
  515. width: 70vw;
  516. height: 30vh;
  517. }
  518. }
  519. @media screen and (max-width: 767px) {
  520. #feedback .box img {
  521. width: 90vw;
  522. }
  523. }
  524. #feedback .box .play {
  525. position: absolute;
  526. left: 32vw;
  527. top: 15vw;
  528. width: 10vw;
  529. height: 10vw;
  530. opacity: 0.8;
  531. z-index: 10;
  532. }
  533. @media screen and (max-width: 767px) {
  534. #feedback .box .play {
  535. left: 40vw;
  536. top: 20vw;
  537. width: 15vw;
  538. height: 15vw;
  539. opacity: 0.8;
  540. z-index: 10;
  541. }
  542. }
  543. #contact-us {
  544. margin-top: 100px;
  545. }
  546. #contact-us p {
  547. font-size: 16px;
  548. font-weight: 600;
  549. margin: 0px 10px;
  550. }
  551. @media screen and (max-width: 1024px) {
  552. #contact-us p {
  553. font-size: 24px;
  554. text-align: center;
  555. }
  556. }
  557. @media screen and (max-width: 767px) {
  558. #contact-us p {
  559. font-size: 16px;
  560. }
  561. }
  562. #contact-us #form-title {
  563. padding-top: 100px;
  564. margin-bottom: 50px;
  565. color: #4b515e;
  566. }
  567. #contact-us #form-text {
  568. width: 100vw;
  569. margin: 30px auto;
  570. }
  571. @media screen and (max-width: 1024px) {
  572. #contact-us #form-text {
  573. font-size: 24px;
  574. text-align: center;
  575. margin: 30px auto;
  576. }
  577. }
  578. @media screen and (max-width: 767px) {
  579. #contact-us #form-text {
  580. font-size: 16px;
  581. margin: 30px auto;
  582. }
  583. }
  584. #contact-us h1 {
  585. text-align: center;
  586. font-size: 24px;
  587. font-weight: 900;
  588. }
  589. @media screen and (max-width: 1024px) {
  590. #contact-us h1 {
  591. font-size: 36px;
  592. }
  593. }
  594. @media screen and (max-width: 767px) {
  595. #contact-us h1 {
  596. font-size: 24px;
  597. }
  598. }
  599. #contact-us #contact-form {
  600. text-align: center;
  601. }
  602. #contact-us #contact-form .btn {
  603. margin: 50px auto;
  604. border: none;
  605. padding: 15px;
  606. background: #ffaf60;
  607. color: #404854;
  608. font-size: 20px;
  609. width: 300px;
  610. border-radius: 30px;
  611. }
  612. #contact-us #contact-form .btn:hover {
  613. color: #fff;
  614. background-color: #745c54;
  615. }
  616. #contact-us #contact-form #location,
  617. #contact-us #contact-form #type,
  618. #contact-us #contact-form #modal,
  619. #contact-us #contact-form #budget,
  620. #contact-us #contact-form #square,
  621. #contact-us #contact-form #style,
  622. #contact-us #contact-form #date,
  623. #contact-us #contact-form #email,
  624. #contact-us #contact-form #name,
  625. #contact-us #contact-form #phone,
  626. #contact-us #contact-form #gender,
  627. #contact-us #contact-form #rooms,
  628. #contact-us #contact-form #livingroom,
  629. #contact-us #contact-form #bathroom {
  630. border-radius: 3px;
  631. width: 85%;
  632. height: 60px;
  633. margin: 15px 0;
  634. padding-left: 15px;
  635. border: 1px solid rgba(0, 0, 0, 0.3);
  636. font-size: 18px;
  637. -webkit-appearance: none;
  638. -moz-appearance: none;
  639. appearance: none;
  640. background: url(./img/icondown.webp) 95% 50% no-repeat scroll transparent;
  641. background-size: 10px 10px;
  642. background-color: #fff;
  643. }
  644. #contact-us #contact-form #square,
  645. #contact-us #contact-form #date,
  646. #contact-us #contact-form #email,
  647. #contact-us #contact-form #name,
  648. #contact-us #contact-form #phone {
  649. font-size: 18px;
  650. width: 85%;
  651. background: none;
  652. }
  653. #contact-us #contact-form #gender {
  654. display: block;
  655. margin: 0 auto;
  656. }
  657. #contact-us #contact-form #fb-button {
  658. margin: 15px auto;
  659. width: 85vw;
  660. height: 60px;
  661. border: 1px solid #3B5998;
  662. text-align: right;
  663. background-color: #fff;
  664. -webkit-transition: 0.3s;
  665. transition: 0.3s;
  666. position: relative;
  667. color: #3C3C3C;
  668. }
  669. #contact-us #contact-form #fb-button p {
  670. position: absolute;
  671. top: 2vw;
  672. font-weight: normal;
  673. color: #626262;
  674. }
  675. @media screen and (max-width: 1024px) {
  676. #contact-us #contact-form #fb-button p {
  677. top: 2vw;
  678. right: 10vw;
  679. font-size: 20px;
  680. }
  681. }
  682. @media screen and (max-width: 767px) {
  683. #contact-us #contact-form #fb-button p {
  684. top: 1.8vw;
  685. right: 5vw;
  686. font-size: 16px;
  687. }
  688. }
  689. @media screen and (max-width: 350px) {
  690. #contact-us #contact-form #fb-button p {
  691. font-size: 16px;
  692. }
  693. }
  694. #contact-us #contact-form #fb-button p .sapn-line {
  695. padding-right: 1vw;
  696. font-size: 28px;
  697. color: #8E8E8E;
  698. font-weight: 100;
  699. }
  700. @media screen and (min-width: 700px) {
  701. #contact-us #contact-form #fb-button p .sapn-line {
  702. display: none;
  703. }
  704. }
  705. @media screen and (max-width: 767px) {
  706. #contact-us #contact-form #fb-button p .sapn-line {
  707. padding-right: 5vw;
  708. }
  709. }
  710. @media screen and (max-width: 400px) {
  711. #contact-us #contact-form #fb-button p .sapn-line {
  712. padding-right: 2vw;
  713. }
  714. }
  715. @media screen and (max-width: 350px) {
  716. #contact-us #contact-form #fb-button p .sapn-line {
  717. padding-right: 3vw;
  718. font-size: 27px;
  719. }
  720. }
  721. #contact-us #contact-form #fb-button img {
  722. position: absolute;
  723. left: 30px;
  724. top: 15px;
  725. width: 32px;
  726. height: 32px;
  727. -webkit-filter: invert(29%) sepia(70%) saturate(712%) hue-rotate(186deg) brightness(89%) contrast(81%);
  728. filter: invert(29%) sepia(70%) saturate(712%) hue-rotate(186deg) brightness(89%) contrast(81%);
  729. }
  730. @media screen and (max-width: 350px) {
  731. #contact-us #contact-form #fb-button img {
  732. left: 15px;
  733. }
  734. }
  735. #contact-us #contact-form #fb-button:hover {
  736. background-color: #2a4f91;
  737. color: #fff;
  738. }
  739. #contact-us #contact-form #fb-button:hover img {
  740. -webkit-filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  741. filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  742. }
  743. #contact-us #contact-form a {
  744. text-decoration: none;
  745. color: #ee751b;
  746. }
  747. #contact-us #contact-form #checkbox {
  748. margin-top: 30px;
  749. }
  750. #contact-us #contact-form #email,
  751. #contact-us #contact-form #name,
  752. #contact-us #contact-form #phone {
  753. background: none;
  754. background-color: #fff;
  755. }
  756. #contact-us #contact-form .option {
  757. width: 85%;
  758. }
  759. #contact-us #form {
  760. text-align: center;
  761. position: relative;
  762. }
  763. #contact-us #form #phone {
  764. position: absolute;
  765. left: 500px;
  766. }
  767. #footer {
  768. padding-top: 50px;
  769. width: 100vw;
  770. height: 150px;
  771. background-color: #ebe6e2;
  772. color: #4b515e;
  773. text-align: center;
  774. font-size: 16px;
  775. line-height: 2;
  776. font-weight: 900;
  777. }
  778. #footer a {
  779. text-decoration: none;
  780. color: #4b515e;
  781. }
  782. #footer p {
  783. margin-left: 5px;
  784. display: inline;
  785. }
  786. #menu-box {
  787. top: 60px;
  788. height: 25vh;
  789. width: 100vw;
  790. position: fixed;
  791. z-index: 5;
  792. overflow: hidden;
  793. }
  794. @media screen and (max-width: 767px) {
  795. #menu-box {
  796. height: 47vh;
  797. }
  798. }
  799. @media screen and (max-width: 350px) {
  800. #menu-box {
  801. height: 55vh;
  802. }
  803. }
  804. #menu-box hr {
  805. display: inline-block;
  806. margin: 0px auto !important;
  807. width: 90vw;
  808. background: #65584c;
  809. }
  810. #menu-box #menu-box2 {
  811. width: 100vw;
  812. height: 25vh;
  813. background-color: #f4f4f3;
  814. opacity: 0.9;
  815. z-index: 7;
  816. text-align: center;
  817. }
  818. @media screen and (max-width: 767px) {
  819. #menu-box #menu-box2 {
  820. height: 45vh;
  821. }
  822. }
  823. @media screen and (max-width: 350px) {
  824. #menu-box #menu-box2 {
  825. height: 55vh;
  826. }
  827. }
  828. #menu-box #menu-box2 #menu-link {
  829. display: -ms-grid;
  830. display: grid;
  831. -ms-grid-columns: (1fr)[3];
  832. grid-template-columns: repeat(3, 1fr);
  833. width: 80vw;
  834. margin: 0 auto;
  835. }
  836. #menu-box #menu-box2 .menu-logo {
  837. opacity: 1;
  838. }
  839. #menu-box #menu-box2 .menu-logo img {
  840. width: 40px;
  841. height: 40px;
  842. -webkit-filter: invert(34%) sepia(7%) saturate(1111%) hue-rotate(347deg) brightness(98%) contrast(88%);
  843. filter: invert(34%) sepia(7%) saturate(1111%) hue-rotate(347deg) brightness(98%) contrast(88%);
  844. }
  845. @media screen and (max-width: 767px) {
  846. #menu-box #menu-box2 .menu-logo img {
  847. width: 35px;
  848. height: 35px;
  849. }
  850. }
  851. @media screen and (max-width: 350px) {
  852. #menu-box #menu-box2 .menu-logo img {
  853. width: 35px;
  854. height: 35px;
  855. }
  856. }
  857. #menu-box #menu-box2 a {
  858. display: inline-block;
  859. text-decoration: none;
  860. color: #65584c;
  861. font-size: 16px;
  862. margin-top: 20px;
  863. font-weight: 900;
  864. }
  865. @media screen and (max-width: 767px) {
  866. #menu-box #menu-box2 a {
  867. margin-top: 4vw;
  868. }
  869. }
  870. #menu-box #menu-box2 .menu-text {
  871. width: 100vw;
  872. text-align: center;
  873. margin-bottom: 10px;
  874. }
  875. @media screen and (max-width: 767px) {
  876. #menu-box #menu-box2 .menu-text {
  877. margin-bottom: 5px !important;
  878. }
  879. }
  880. /*# sourceMappingURL=style.css.map */