style.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843
  1. @charset "UTF-8";
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. -webkit-box-sizing: border-box;
  6. box-sizing: border-box;
  7. font-family: 微軟正黑體;
  8. }
  9. body {
  10. position: relative;
  11. background: #363636;
  12. }
  13. @media screen and (max-width: 767px) {
  14. body {
  15. background: #363636;
  16. }
  17. }
  18. body .arrow {
  19. position: fixed;
  20. right: 30px;
  21. bottom: 150px;
  22. width: 45px;
  23. height: 40px;
  24. z-index: 10;
  25. }
  26. body .arrow a {
  27. margin: 30px 0px;
  28. }
  29. @media screen and (max-width: 767px) {
  30. body .arrow .icon {
  31. display: none;
  32. }
  33. }
  34. body .arrow:hover {
  35. -webkit-box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  36. box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  37. }
  38. @media screen and (max-width: 767px) {
  39. body .arrow {
  40. position: absolute;
  41. bottom: 200px;
  42. }
  43. }
  44. #Navigation {
  45. background: rgba(112, 112, 112, 0.75);
  46. height: 4.5vw;
  47. width: 100vw !important;
  48. position: fixed;
  49. z-index: 10;
  50. }
  51. @media screen and (max-width: 1024px) {
  52. #Navigation {
  53. height: 8vw;
  54. }
  55. }
  56. @media screen and (max-width: 767px) {
  57. #Navigation {
  58. height: 20vw;
  59. position: fixed;
  60. z-index: 5;
  61. background: rgba(0, 0, 0, 0.8);
  62. }
  63. }
  64. #Navigation #nav {
  65. width: 100vw;
  66. margin: 0 auto;
  67. }
  68. #Navigation #logo {
  69. padding-top: 0.5vw;
  70. }
  71. @media screen and (max-width: 767px) {
  72. #Navigation #logo {
  73. padding-top: 5vw;
  74. text-align: center;
  75. }
  76. }
  77. #Navigation #logo img {
  78. width: 120px;
  79. }
  80. #Navigation #link {
  81. text-align: right;
  82. padding: 1.5vw 3vw;
  83. }
  84. @media screen and (max-width: 1024px) {
  85. #Navigation #link {
  86. padding-top: 2vw;
  87. }
  88. }
  89. @media screen and (max-width: 767px) {
  90. #Navigation #link {
  91. display: none;
  92. }
  93. }
  94. #Navigation #link a {
  95. text-decoration: none;
  96. color: #fff;
  97. letter-spacing: 1px;
  98. font-size: 0.9rem;
  99. font-weight: 600;
  100. cursor: pointer;
  101. padding: 5px;
  102. position: relative;
  103. }
  104. #Navigation #link a img {
  105. -o-object-fit: cover;
  106. object-fit: cover;
  107. }
  108. #Navigation #menu-btn1 {
  109. position: absolute;
  110. right: 1vw;
  111. top: 1vw;
  112. width: 18vw;
  113. z-index: 6;
  114. }
  115. @media screen and (min-width: 1025px) {
  116. #Navigation #menu-btn1 {
  117. display: none;
  118. }
  119. }
  120. @media screen and (min-width: 768px) {
  121. #Navigation #menu-btn1 {
  122. display: none;
  123. }
  124. }
  125. #Navigation2 {
  126. background: rgba(112, 112, 112, 0.75);
  127. height: 4.5vw;
  128. width: 100vw !important;
  129. position: fixed;
  130. bottom: 0px;
  131. z-index: 10;
  132. }
  133. @media screen and (min-width: 1025px) {
  134. #Navigation2 {
  135. display: none;
  136. }
  137. }
  138. @media screen and (max-width: 1024px) {
  139. #Navigation2 {
  140. height: 8vw;
  141. }
  142. }
  143. @media screen and (max-width: 767px) {
  144. #Navigation2 {
  145. height: 15vw;
  146. position: fixed;
  147. z-index: 5;
  148. background: rgba(0, 0, 0, 0.8);
  149. }
  150. }
  151. #Navigation2 #nav {
  152. width: 90vw;
  153. margin: 0 auto;
  154. display: -ms-grid;
  155. display: grid;
  156. -ms-grid-columns: (1fr)[5];
  157. grid-template-columns: repeat(5, 1fr);
  158. text-align: center;
  159. }
  160. #Navigation2 #nav a {
  161. text-decoration: none;
  162. color: #fff;
  163. letter-spacing: 1px;
  164. font-size: 0.9rem;
  165. font-weight: 600;
  166. cursor: pointer;
  167. position: relative;
  168. }
  169. #Navigation2 #nav a img {
  170. margin: 10px auto;
  171. -o-object-fit: cover;
  172. object-fit: cover;
  173. }
  174. #banner {
  175. position: relative;
  176. }
  177. #banner .banner-filter {
  178. position: absolute;
  179. z-index: -1;
  180. }
  181. #banner .banner-filter .bannerfilter {
  182. width: 100vw;
  183. -o-object-fit: cover;
  184. object-fit: cover;
  185. height: 50vw;
  186. -webkit-animation-name: Picture2;
  187. animation-name: Picture2;
  188. -webkit-animation-duration: 1s;
  189. animation-duration: 1s;
  190. -webkit-animation-delay: 0.1s;
  191. animation-delay: 0.1s;
  192. }
  193. @media screen and (max-width: 767px) {
  194. #banner .banner-filter .bannerfilter {
  195. height: 80vh;
  196. }
  197. }
  198. #banner #bannerdes-img {
  199. position: absolute;
  200. z-index: -2;
  201. opacity: 1;
  202. }
  203. #banner #bannerdes-img .banner-img {
  204. width: 100vw;
  205. -o-object-fit: cover;
  206. object-fit: cover;
  207. height: 50vw;
  208. -webkit-animation-name: Picture;
  209. animation-name: Picture;
  210. -webkit-animation-duration: 1s;
  211. animation-duration: 1s;
  212. }
  213. @media screen and (max-width: 767px) {
  214. #banner #bannerdes-img .banner-img {
  215. height: 80vh;
  216. }
  217. }
  218. @media screen and (max-width: 767px) {
  219. #banner {
  220. background-size: 115vw;
  221. background-repeat: no-repeat;
  222. }
  223. }
  224. #banner #banner-container {
  225. width: 90vw;
  226. padding-top: 18vw;
  227. }
  228. @media screen and (max-width: 767px) {
  229. #banner #banner-container {
  230. padding-top: 0vw;
  231. width: 95vw;
  232. }
  233. }
  234. @media screen and (max-width: 767px) {
  235. #banner #banner-container .banner-des {
  236. display: none;
  237. }
  238. }
  239. #banner #banner-container .banner-des .banner-1 {
  240. background: rgba(141, 194, 31, 0.8);
  241. }
  242. @media screen and (max-width: 767px) {
  243. #banner #banner-container .banner-des .banner-1 {
  244. margin: 0;
  245. }
  246. }
  247. #banner #banner-container .banner-des .banner-1 .banner1-1 {
  248. font-size: 22px;
  249. }
  250. #banner #banner-container .banner-des .banner-1 .btn {
  251. color: #fff;
  252. width: 60px;
  253. height: 40px;
  254. -webkit-box-shadow: none;
  255. box-shadow: none;
  256. }
  257. #banner #banner-container .banner-des .banner-1 .btn :focus {
  258. outline: 0 !important;
  259. -webkit-box-shadow: none;
  260. box-shadow: none;
  261. }
  262. #banner #banner-container .banner-des .banner-1 .btn img {
  263. width: 24px;
  264. -o-object-fit: cover;
  265. object-fit: cover;
  266. -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  267. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  268. }
  269. #banner #banner-container .banner-des .banner-2 {
  270. overflow: hidden;
  271. }
  272. #banner #banner-container .banner-des .banner-2 img {
  273. margin-bottom: -30px;
  274. -o-object-fit: cover;
  275. object-fit: cover;
  276. width: 100%;
  277. }
  278. #banner #banner-container .banner-m {
  279. padding-top: 10vw;
  280. }
  281. @media screen and (min-width: 1025px) {
  282. #banner #banner-container .banner-m {
  283. display: none;
  284. }
  285. }
  286. #banner #banner-container .banner-m .bannerm-1 {
  287. background: rgba(141, 194, 31, 0.8);
  288. }
  289. @media screen and (max-width: 767px) {
  290. #banner #banner-container .banner-m .bannerm-1 {
  291. padding-right: 5px;
  292. padding-left: 7px;
  293. }
  294. }
  295. @media screen and (max-width: 767px) {
  296. #banner #banner-container .banner-m .bannerm-1 {
  297. margin: 0;
  298. }
  299. }
  300. #banner #banner-container .banner-m .bannerm-1 .btn {
  301. color: #fff;
  302. width: 55px;
  303. height: 40px;
  304. -webkit-box-shadow: none;
  305. box-shadow: none;
  306. }
  307. #banner #banner-container .banner-m .bannerm-1 .btn :focus {
  308. outline: 0 !important;
  309. -webkit-box-shadow: none;
  310. box-shadow: none;
  311. }
  312. #banner #banner-container .banner-m .bannerm-1 .btn img {
  313. width: 22px;
  314. -o-object-fit: cover;
  315. object-fit: cover;
  316. -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  317. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  318. }
  319. #banner #banner-container .banner-m .bannerm-1 .banner1-1 {
  320. font-size: 18px;
  321. }
  322. #banner #banner-container #sec01 {
  323. padding-top: 5vw;
  324. }
  325. @media screen and (max-width: 767px) {
  326. #banner #banner-container #sec01 {
  327. padding-top: 0;
  328. }
  329. }
  330. #banner #banner-container #sec01 .col-lg-2 {
  331. background: #80ab29;
  332. position: relative;
  333. -webkit-transition: 0.5s ease-in-out;
  334. transition: 0.5s ease-in-out;
  335. cursor: pointer;
  336. overflow: hidden;
  337. }
  338. #banner #banner-container #sec01 .col-lg-2 img {
  339. width: 100%;
  340. height: 20vw;
  341. -o-object-fit: cover;
  342. object-fit: cover;
  343. margin-bottom: -40px;
  344. }
  345. @media screen and (max-width: 767px) {
  346. #banner #banner-container #sec01 .col-lg-2 img {
  347. height: 40vw;
  348. margin-bottom: -20px;
  349. }
  350. }
  351. #banner #banner-container #sec01 .col-lg-2 .sec02-p-m {
  352. color: #fff;
  353. text-align: center;
  354. font-size: 14px;
  355. font-weight: 900;
  356. -webkit-transition: 0.5s;
  357. transition: 0.5s;
  358. }
  359. @media screen and (max-width: 767px) {
  360. #banner #banner-container #sec01 .col-lg-2 .sec02-p-m {
  361. display: none;
  362. }
  363. }
  364. @media screen and (min-width: 1025px) {
  365. #banner #banner-container #sec01 .col-lg-2 .sec02-p-m {
  366. width: 100%;
  367. position: absolute;
  368. top: 40%;
  369. left: 0px;
  370. font-size: 16px;
  371. opacity: 0;
  372. }
  373. }
  374. #banner #banner-container #sec01 .col-lg-2:hover .sec02-p-m,
  375. #banner #banner-container #sec01 .col-lg-2:hover .sec03-p-m {
  376. opacity: 1;
  377. }
  378. #banner #banner-container #sec01 .col-lg-2:hover img {
  379. opacity: 0.2;
  380. }
  381. @media screen and (max-width: 767px) {
  382. #banner #banner-container #sec01 .col-lg-2:hover img {
  383. opacity: 1;
  384. }
  385. }
  386. #footer {
  387. background: #363636;
  388. text-align: center;
  389. width: 80vw;
  390. margin: 0 auto !important;
  391. }
  392. @media screen and (max-width: 767px) {
  393. #footer {
  394. width: 100vw;
  395. padding-bottom: 30vw;
  396. }
  397. }
  398. #footer a {
  399. text-decoration: none;
  400. color: #fff;
  401. }
  402. #footer p {
  403. padding: 15px;
  404. color: #fff;
  405. }
  406. @media screen and (max-width: 767px) {
  407. #footer p {
  408. padding: 10px;
  409. }
  410. }
  411. @-webkit-keyframes Picture {
  412. 0% {
  413. -webkit-transform: scale(1.3);
  414. transform: scale(1.3);
  415. }
  416. 100% {
  417. -webkit-transform: scale(1);
  418. transform: scale(1);
  419. }
  420. }
  421. @keyframes Picture {
  422. 0% {
  423. -webkit-transform: scale(1.3);
  424. transform: scale(1.3);
  425. }
  426. 100% {
  427. -webkit-transform: scale(1);
  428. transform: scale(1);
  429. }
  430. }
  431. @-webkit-keyframes Picture2 {
  432. 0% {
  433. -webkit-transform: scale(1.3);
  434. transform: scale(1.3);
  435. }
  436. 100% {
  437. -webkit-transform: scale(1);
  438. transform: scale(1);
  439. }
  440. }
  441. @keyframes Picture2 {
  442. 0% {
  443. -webkit-transform: scale(1.3);
  444. transform: scale(1.3);
  445. }
  446. 100% {
  447. -webkit-transform: scale(1);
  448. transform: scale(1);
  449. }
  450. }
  451. #modal-dialog {
  452. width: 90vw;
  453. }
  454. #modal-dialog .modal-content {
  455. width: 80vw;
  456. }
  457. @media screen and (max-width: 767px) {
  458. #modal-dialog .modal-content {
  459. width: 90vw;
  460. }
  461. }
  462. #light-box #form-lightbox {
  463. margin: 0 auto;
  464. padding: 15px;
  465. }
  466. @media screen and (max-width: 767px) {
  467. #light-box #form-lightbox {
  468. width: 85vw;
  469. padding: 0px;
  470. }
  471. }
  472. #light-box #form-lightbox .form-title {
  473. margin: 0 auto;
  474. color: #5c5248;
  475. }
  476. #light-box #form-lightbox .form-title h1 {
  477. text-align: center;
  478. font-size: 32px;
  479. font-weight: 900;
  480. }
  481. @media screen and (max-width: 767px) {
  482. #light-box #form-lightbox .form-title h1 {
  483. font-size: 24px;
  484. }
  485. }
  486. @media screen and (max-width: 350px) {
  487. #light-box #form-lightbox .form-title h1 {
  488. font-size: 20px;
  489. }
  490. }
  491. #light-box #form-lightbox .form-title h1 span {
  492. font-size: 38px;
  493. }
  494. @media screen and (max-width: 767px) {
  495. #light-box #form-lightbox .form-title h1 span {
  496. font-size: 28px;
  497. }
  498. }
  499. @media screen and (max-width: 350px) {
  500. #light-box #form-lightbox .form-title h1 span {
  501. font-size: 24px;
  502. }
  503. }
  504. #light-box #form-lightbox .contact-text {
  505. margin: 0 auto;
  506. }
  507. #light-box #form-lightbox .contact-text .text-p {
  508. margin-left: 15px;
  509. padding-left: 12px;
  510. font-size: 16px;
  511. font-weight: 600;
  512. }
  513. @media screen and (max-width: 767px) {
  514. #light-box #form-lightbox .contact-text .text-p {
  515. margin-left: 0px;
  516. padding-left: 0px;
  517. }
  518. }
  519. @media screen and (max-width: 350px) {
  520. #light-box #form-lightbox .contact-text .text-p {
  521. font-size: 14px;
  522. }
  523. }
  524. #light-box #form-lightbox .contact-form1 {
  525. margin: 0 auto;
  526. }
  527. #light-box #form-lightbox .contact-form1 #contact-form {
  528. margin-top: 10px;
  529. }
  530. #light-box #form-lightbox .contact-form1 #contact-form .col-lg-1 .divider {
  531. position: relative;
  532. width: 1px;
  533. height: 100%;
  534. border-left: 1px solid rgba(0, 0, 0, 0.12);
  535. }
  536. #light-box #form-lightbox .contact-form1 #contact-form #loc,
  537. #light-box #form-lightbox .contact-form1 #contact-form #type,
  538. #light-box #form-lightbox .contact-form1 #contact-form #modal,
  539. #light-box #form-lightbox .contact-form1 #contact-form #budget,
  540. #light-box #form-lightbox .contact-form1 #contact-form #square,
  541. #light-box #form-lightbox .contact-form1 #contact-form #style,
  542. #light-box #form-lightbox .contact-form1 #contact-form #datepicker,
  543. #light-box #form-lightbox .contact-form1 #contact-form #email,
  544. #light-box #form-lightbox .contact-form1 #contact-form #name,
  545. #light-box #form-lightbox .contact-form1 #contact-form #phone,
  546. #light-box #form-lightbox .contact-form1 #contact-form #gender {
  547. width: 100%;
  548. height: 50px;
  549. margin: 10px 0;
  550. padding-left: 10px;
  551. border: 1px solid rgba(0, 0, 0, 0.3);
  552. padding: 10px 15px;
  553. font-size: 16px;
  554. border-radius: 3px;
  555. -webkit-appearance: none;
  556. -moz-appearance: none;
  557. appearance: none;
  558. background: url(./img/icondown.webp) 95% 50% no-repeat scroll transparent;
  559. background-size: 10px 10px;
  560. background-color: #fff;
  561. }
  562. #light-box #form-lightbox .contact-form1 #contact-form #form-left {
  563. margin: 0 auto;
  564. }
  565. #light-box #form-lightbox .contact-form1 #contact-form #form-left #rooms,
  566. #light-box #form-lightbox .contact-form1 #contact-form #form-left #livingroom,
  567. #light-box #form-lightbox .contact-form1 #contact-form #form-left #bathroom {
  568. width: 28.8%;
  569. border: 1px solid rgba(0, 0, 0, 0.3);
  570. height: 50px;
  571. margin: 15px 0;
  572. padding-right: 50px;
  573. padding: 10px 15px;
  574. font-size: 16px;
  575. border-radius: 3px;
  576. -webkit-appearance: none;
  577. -moz-appearance: none;
  578. appearance: none;
  579. background: url(./img/icondown.webp) 85% 50% no-repeat scroll transparent;
  580. background-size: 10px 10px;
  581. background-color: #fff;
  582. }
  583. @media screen and (max-width: 767px) {
  584. #light-box #form-lightbox .contact-form1 #contact-form #form-left #rooms,
  585. #light-box #form-lightbox .contact-form1 #contact-form #form-left #livingroom,
  586. #light-box #form-lightbox .contact-form1 #contact-form #form-left #bathroom {
  587. width: 31%;
  588. }
  589. }
  590. #light-box #form-lightbox .contact-form1 #contact-form #form-left #square,
  591. #light-box #form-lightbox .contact-form1 #contact-form #form-left #datepicker {
  592. background: none;
  593. background-color: #fff;
  594. }
  595. #light-box #form-lightbox .contact-form1 #contact-form #form-right {
  596. margin: 0 auto;
  597. }
  598. @media screen and (min-width: 1025px) {
  599. #light-box #form-lightbox .contact-form1 #contact-form #form-right hr {
  600. display: none;
  601. }
  602. }
  603. #light-box #form-lightbox .contact-form1 #contact-form #fb-button {
  604. margin-top: 12px;
  605. width: 100%;
  606. height: 50px;
  607. border: 1px solid #3b5998;
  608. text-align: right;
  609. padding-right: 60px;
  610. background-size: 32px 32px;
  611. border-radius: 3px;
  612. background-color: #fff;
  613. -webkit-transition: 0.3s;
  614. transition: 0.3s;
  615. position: relative;
  616. }
  617. @media screen and (max-width: 767px) {
  618. #light-box #form-lightbox .contact-form1 #contact-form #fb-button {
  619. margin: 10px 0;
  620. }
  621. }
  622. #light-box #form-lightbox .contact-form1 #contact-form #fb-button p {
  623. position: absolute;
  624. top: 1vw;
  625. left: 12vw;
  626. color: #626262;
  627. }
  628. @media screen and (max-width: 767px) {
  629. #light-box #form-lightbox .contact-form1 #contact-form #fb-button p {
  630. left: 32vw;
  631. top: 3vw;
  632. }
  633. }
  634. #light-box #form-lightbox .contact-form1 #contact-form #fb-button #line {
  635. position: absolute;
  636. color: #9b9b9b;
  637. opacity: 0.8;
  638. left: 8vw;
  639. top: -0.1vw;
  640. }
  641. @media screen and (max-width: 767px) {
  642. #light-box #form-lightbox .contact-form1 #contact-form #fb-button #line {
  643. left: 20vw;
  644. }
  645. }
  646. #light-box #form-lightbox .contact-form1 #contact-form #fb-button img {
  647. position: absolute;
  648. left: 50px;
  649. top: 10px;
  650. width: 32px;
  651. height: 32px;
  652. -webkit-filter: invert(29%) sepia(70%) saturate(712%) hue-rotate(186deg) brightness(89%) contrast(81%);
  653. filter: invert(29%) sepia(70%) saturate(712%) hue-rotate(186deg) brightness(89%) contrast(81%);
  654. }
  655. @media screen and (max-width: 767px) {
  656. #light-box #form-lightbox .contact-form1 #contact-form #fb-button img {
  657. left: 20px;
  658. }
  659. }
  660. #light-box #form-lightbox .contact-form1 #contact-form #fb-button:hover {
  661. background-color: #2a4f91;
  662. color: #fff;
  663. }
  664. #light-box #form-lightbox .contact-form1 #contact-form #fb-button:hover img {
  665. -webkit-filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  666. filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  667. }
  668. #light-box #form-lightbox .contact-form1 #contact-form #fb-button:hover p {
  669. color: #fff;
  670. }
  671. #light-box #form-lightbox .contact-form1 #contact-form #fb-button:hover #line {
  672. color: #fff;
  673. }
  674. #light-box #form-lightbox .contact-form1 #contact-form a {
  675. text-decoration: none;
  676. color: #ee751b;
  677. font-weight: 900;
  678. }
  679. #light-box #form-lightbox .contact-form1 #contact-form #email,
  680. #light-box #form-lightbox .contact-form1 #contact-form #name,
  681. #light-box #form-lightbox .contact-form1 #contact-form #phone {
  682. background: none;
  683. background-color: #fff;
  684. }
  685. #light-box #form-lightbox .btn {
  686. margin: 50px auto;
  687. border: none;
  688. padding: 15px;
  689. background: #edbc96;
  690. color: #4b515e;
  691. font-size: 20px;
  692. width: 400px;
  693. border-radius: 10px;
  694. }
  695. @media screen and (max-width: 767px) {
  696. #light-box #form-lightbox .btn {
  697. width: 100%;
  698. }
  699. }
  700. #light-box #form-lightbox .btn:hover {
  701. color: #fff;
  702. background-color: #745c54;
  703. }
  704. #light-box #form-lightbox .form-btn {
  705. text-align: center;
  706. position: relative;
  707. width: 70vw;
  708. margin: 0 auto;
  709. }
  710. @media screen and (max-width: 767px) {
  711. #light-box #form-lightbox .form-btn {
  712. width: 80vw;
  713. margin: 0 auto;
  714. }
  715. }
  716. #light-box #form-lightbox .form-btn #phone1 {
  717. position: absolute;
  718. left: 500px;
  719. }
  720. /*# sourceMappingURL=style.css.map */