style.css 18 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031
  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. }
  674. @media screen and (max-width: 1024px) {
  675. #contact-us #contact-form #fb-button p {
  676. top: 2vw;
  677. right: 10vw;
  678. font-size: 20px;
  679. }
  680. }
  681. @media screen and (max-width: 767px) {
  682. #contact-us #contact-form #fb-button p {
  683. top: 1.8vw;
  684. right: 1vw;
  685. }
  686. }
  687. @media screen and (max-width: 350px) {
  688. #contact-us #contact-form #fb-button p {
  689. font-size: 16px;
  690. }
  691. }
  692. #contact-us #contact-form #fb-button p .sapn-line {
  693. padding-right: 1vw;
  694. font-size: 28px;
  695. color: #8E8E8E;
  696. font-weight: 100;
  697. }
  698. @media screen and (min-width: 700px) {
  699. #contact-us #contact-form #fb-button p .sapn-line {
  700. display: none;
  701. }
  702. }
  703. @media screen and (max-width: 767px) {
  704. #contact-us #contact-form #fb-button p .sapn-line {
  705. padding-right: 5vw;
  706. }
  707. }
  708. @media screen and (max-width: 400px) {
  709. #contact-us #contact-form #fb-button p .sapn-line {
  710. padding-right: 2vw;
  711. }
  712. }
  713. @media screen and (max-width: 350px) {
  714. #contact-us #contact-form #fb-button p .sapn-line {
  715. padding-right: 3vw;
  716. font-size: 27px;
  717. }
  718. }
  719. #contact-us #contact-form #fb-button img {
  720. position: absolute;
  721. left: 30px;
  722. top: 15px;
  723. width: 32px;
  724. height: 32px;
  725. -webkit-filter: invert(29%) sepia(70%) saturate(712%) hue-rotate(186deg) brightness(89%) contrast(81%);
  726. filter: invert(29%) sepia(70%) saturate(712%) hue-rotate(186deg) brightness(89%) contrast(81%);
  727. }
  728. @media screen and (max-width: 350px) {
  729. #contact-us #contact-form #fb-button img {
  730. left: 15px;
  731. }
  732. }
  733. #contact-us #contact-form #fb-button:hover {
  734. background-color: #2a4f91;
  735. color: #fff;
  736. }
  737. #contact-us #contact-form #fb-button:hover img {
  738. -webkit-filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  739. filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  740. }
  741. #contact-us #contact-form a {
  742. text-decoration: none;
  743. color: #ee751b;
  744. }
  745. #contact-us #contact-form #checkbox {
  746. margin-top: 30px;
  747. }
  748. #contact-us #contact-form #email,
  749. #contact-us #contact-form #name,
  750. #contact-us #contact-form #phone {
  751. background: none;
  752. background-color: #fff;
  753. }
  754. #contact-us #contact-form .option {
  755. width: 85%;
  756. }
  757. #contact-us #form {
  758. text-align: center;
  759. position: relative;
  760. }
  761. #contact-us #form #phone {
  762. position: absolute;
  763. left: 500px;
  764. }
  765. #footer {
  766. padding-top: 50px;
  767. width: 100vw;
  768. height: 150px;
  769. background-color: #ebe6e2;
  770. color: #4b515e;
  771. text-align: center;
  772. font-size: 16px;
  773. line-height: 2;
  774. font-weight: 900;
  775. }
  776. #footer a {
  777. text-decoration: none;
  778. color: #4b515e;
  779. }
  780. #footer p {
  781. margin-left: 5px;
  782. display: inline;
  783. }
  784. #menu-box {
  785. top: 60px;
  786. height: 25vh;
  787. width: 100vw;
  788. position: fixed;
  789. z-index: 5;
  790. overflow: hidden;
  791. }
  792. @media screen and (max-width: 767px) {
  793. #menu-box {
  794. height: 47vh;
  795. }
  796. }
  797. @media screen and (max-width: 350px) {
  798. #menu-box {
  799. height: 55vh;
  800. }
  801. }
  802. #menu-box hr {
  803. display: inline-block;
  804. margin: 0px auto !important;
  805. width: 90vw;
  806. background: #65584c;
  807. }
  808. #menu-box #menu-box2 {
  809. width: 100vw;
  810. height: 25vh;
  811. background-color: #f4f4f3;
  812. opacity: 0.9;
  813. z-index: 7;
  814. text-align: center;
  815. }
  816. @media screen and (max-width: 767px) {
  817. #menu-box #menu-box2 {
  818. height: 45vh;
  819. }
  820. }
  821. @media screen and (max-width: 350px) {
  822. #menu-box #menu-box2 {
  823. height: 55vh;
  824. }
  825. }
  826. #menu-box #menu-box2 #menu-link {
  827. display: -ms-grid;
  828. display: grid;
  829. -ms-grid-columns: (1fr)[3];
  830. grid-template-columns: repeat(3, 1fr);
  831. width: 80vw;
  832. margin: 0 auto;
  833. }
  834. #menu-box #menu-box2 .menu-logo {
  835. opacity: 1;
  836. }
  837. #menu-box #menu-box2 .menu-logo img {
  838. width: 40px;
  839. height: 40px;
  840. -webkit-filter: invert(34%) sepia(7%) saturate(1111%) hue-rotate(347deg) brightness(98%) contrast(88%);
  841. filter: invert(34%) sepia(7%) saturate(1111%) hue-rotate(347deg) brightness(98%) contrast(88%);
  842. }
  843. @media screen and (max-width: 767px) {
  844. #menu-box #menu-box2 .menu-logo img {
  845. width: 35px;
  846. height: 35px;
  847. }
  848. }
  849. @media screen and (max-width: 350px) {
  850. #menu-box #menu-box2 .menu-logo img {
  851. width: 35px;
  852. height: 35px;
  853. }
  854. }
  855. #menu-box #menu-box2 a {
  856. display: inline-block;
  857. text-decoration: none;
  858. color: #65584c;
  859. font-size: 16px;
  860. margin-top: 20px;
  861. font-weight: 900;
  862. }
  863. @media screen and (max-width: 767px) {
  864. #menu-box #menu-box2 a {
  865. margin-top: 4vw;
  866. }
  867. }
  868. #menu-box #menu-box2 .menu-text {
  869. width: 100vw;
  870. text-align: center;
  871. margin-bottom: 10px;
  872. }
  873. @media screen and (max-width: 767px) {
  874. #menu-box #menu-box2 .menu-text {
  875. margin-bottom: 5px !important;
  876. }
  877. }
  878. /*# sourceMappingURL=style.css.map */