style.css 17 KB

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