style.css 18 KB

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