about.css 26 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214
  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. @media screen and (max-width: 767px) {
  27. body .arrow {
  28. top: 525px;
  29. }
  30. }
  31. @media screen and (max-width: 350px) {
  32. body .arrow {
  33. top: 445px;
  34. }
  35. }
  36. body .arrow a {
  37. margin: 30px 0px;
  38. }
  39. @media screen and (max-width: 767px) {
  40. body .arrow .icon {
  41. display: none;
  42. }
  43. }
  44. body .arrow:hover {
  45. -webkit-box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  46. box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  47. }
  48. #Navigation {
  49. background: rgba(112, 112, 112, 0.5);
  50. height: 4.5vw;
  51. width: 100vw !important;
  52. position: fixed;
  53. z-index: 10;
  54. }
  55. @media screen and (max-width: 1024px) {
  56. #Navigation {
  57. height: 8vw;
  58. }
  59. }
  60. @media screen and (max-width: 767px) {
  61. #Navigation {
  62. height: 20vw;
  63. position: fixed;
  64. z-index: 5;
  65. background: rgba(0, 0, 0, 0.8);
  66. }
  67. }
  68. #Navigation #nav {
  69. width: 100vw;
  70. margin: 0 auto;
  71. }
  72. #Navigation #logo {
  73. padding-top: 0.5vw;
  74. }
  75. @media screen and (max-width: 767px) {
  76. #Navigation #logo {
  77. padding-top: 5vw;
  78. text-align: center;
  79. }
  80. }
  81. #Navigation #logo img {
  82. width: 120px;
  83. }
  84. #Navigation #arrow-left {
  85. padding-left: 5vw;
  86. padding-top: 8vw;
  87. }
  88. @media screen and (min-width: 1025px) {
  89. #Navigation #arrow-left {
  90. display: none;
  91. }
  92. }
  93. #Navigation #arrow-left img {
  94. -o-object-fit: cover;
  95. object-fit: cover;
  96. width: 26px;
  97. }
  98. #Navigation #link {
  99. text-align: right;
  100. padding: 1.5vw 3vw;
  101. }
  102. @media screen and (max-width: 1024px) {
  103. #Navigation #link {
  104. padding-top: 2vw;
  105. }
  106. }
  107. @media screen and (max-width: 767px) {
  108. #Navigation #link {
  109. display: none;
  110. }
  111. }
  112. #Navigation #link a {
  113. text-decoration: none;
  114. color: #fff;
  115. letter-spacing: 1px;
  116. font-size: 0.9rem;
  117. font-weight: 600;
  118. cursor: pointer;
  119. padding: 5px;
  120. position: relative;
  121. }
  122. #Navigation #link a img {
  123. -o-object-fit: cover;
  124. object-fit: cover;
  125. }
  126. #Navigation #menu-btn1 {
  127. position: absolute;
  128. right: 1vw;
  129. top: 1vw;
  130. width: 18vw;
  131. z-index: 6;
  132. }
  133. @media screen and (min-width: 1025px) {
  134. #Navigation #menu-btn1 {
  135. display: none;
  136. }
  137. }
  138. @media screen and (min-width: 768px) {
  139. #Navigation #menu-btn1 {
  140. display: none;
  141. }
  142. }
  143. #Navigation2 {
  144. background: rgba(112, 112, 112, 0.75);
  145. height: 4.5vw;
  146. width: 100vw !important;
  147. position: fixed;
  148. bottom: 0px;
  149. z-index: 10;
  150. }
  151. @media screen and (min-width: 1025px) {
  152. #Navigation2 {
  153. display: none;
  154. }
  155. }
  156. @media screen and (max-width: 1024px) {
  157. #Navigation2 {
  158. height: 8vw;
  159. }
  160. }
  161. @media screen and (max-width: 767px) {
  162. #Navigation2 {
  163. height: 15vw;
  164. position: fixed;
  165. z-index: 5;
  166. background: rgba(0, 0, 0, 0.8);
  167. }
  168. }
  169. #Navigation2 #nav {
  170. width: 90vw;
  171. margin: 0 auto;
  172. display: -ms-grid;
  173. display: grid;
  174. -ms-grid-columns: (1fr)[5];
  175. grid-template-columns: repeat(5, 1fr);
  176. text-align: center;
  177. }
  178. #Navigation2 #nav a {
  179. text-decoration: none;
  180. color: #fff;
  181. letter-spacing: 1px;
  182. font-size: 0.9rem;
  183. font-weight: 600;
  184. cursor: pointer;
  185. position: relative;
  186. }
  187. #Navigation2 #nav a img {
  188. margin: 10px auto;
  189. -o-object-fit: cover;
  190. object-fit: cover;
  191. }
  192. #banner {
  193. position: relative;
  194. }
  195. #banner .banner-filter {
  196. position: absolute;
  197. z-index: -1;
  198. }
  199. #banner .banner-filter .bannerfilter {
  200. width: 100vw;
  201. -o-object-fit: cover;
  202. object-fit: cover;
  203. height: 50vw;
  204. -webkit-animation-delay: 0.1s;
  205. animation-delay: 0.1s;
  206. }
  207. @media screen and (max-width: 767px) {
  208. #banner .banner-filter .bannerfilter {
  209. height: 80vh;
  210. }
  211. }
  212. #banner #about-title {
  213. position: absolute;
  214. right: 50px;
  215. top: 100px;
  216. }
  217. @media screen and (max-width: 767px) {
  218. #banner #about-title {
  219. display: none;
  220. }
  221. }
  222. #banner #bannerdes-img {
  223. position: absolute;
  224. z-index: -2;
  225. opacity: 1;
  226. }
  227. #banner #bannerdes-img .banner-img {
  228. width: 100vw;
  229. height: 50vw;
  230. -o-object-fit: cover;
  231. object-fit: cover;
  232. }
  233. @media screen and (max-width: 767px) {
  234. #banner #bannerdes-img .banner-img {
  235. height: 80vh;
  236. }
  237. }
  238. @media screen and (max-width: 767px) {
  239. #banner {
  240. background-size: 110vw;
  241. background-repeat: no-repeat;
  242. }
  243. }
  244. #banner #banner-container {
  245. padding-top: 15vw;
  246. width: 90vw;
  247. }
  248. @media screen and (max-width: 767px) {
  249. #banner #banner-container {
  250. width: 95vw;
  251. }
  252. }
  253. @media screen and (max-width: 767px) {
  254. #banner #banner-container .banner-des-about {
  255. display: none;
  256. }
  257. }
  258. #banner #banner-container .banner-des-about .banner-1 .btn {
  259. color: #fff;
  260. width: 60px;
  261. height: 40px;
  262. -webkit-box-shadow: none;
  263. box-shadow: none;
  264. }
  265. #banner #banner-container .banner-des-about .banner-1 .btn :focus {
  266. outline: 0 !important;
  267. -webkit-box-shadow: none;
  268. box-shadow: none;
  269. }
  270. #banner #banner-container .banner-des-about .banner-1 .btn img {
  271. width: 24px;
  272. -o-object-fit: cover;
  273. object-fit: cover;
  274. -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  275. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  276. }
  277. @media screen and (max-width: 767px) {
  278. #banner #banner-container .banner-des-about .banner-2 img {
  279. display: none;
  280. }
  281. }
  282. #banner #banner-container .banner-des-about .banner-3 img {
  283. margin-bottom: -52px;
  284. }
  285. @media screen and (min-width: 1025px) {
  286. #banner #banner-container .banner-m {
  287. display: none;
  288. }
  289. }
  290. #banner #banner-container .banner-m .bannerm-1 {
  291. background: rgba(141, 194, 31, 0.8);
  292. }
  293. @media screen and (max-width: 767px) {
  294. #banner #banner-container .banner-m .bannerm-1 {
  295. padding-right: 5px;
  296. padding-left: 7px;
  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. @media screen and (max-width: 350px) {
  307. #banner #banner-container .banner-m .bannerm-1 .btn {
  308. width: 50px;
  309. height: 40px;
  310. }
  311. }
  312. #banner #banner-container .banner-m .bannerm-1 .btn :focus {
  313. outline: 0 !important;
  314. -webkit-box-shadow: none;
  315. box-shadow: none;
  316. }
  317. #banner #banner-container .banner-m .bannerm-1 .btn img {
  318. width: 22px;
  319. -o-object-fit: cover;
  320. object-fit: cover;
  321. -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  322. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  323. }
  324. @media screen and (max-width: 767px) {
  325. #banner #banner-container .banner-m .bannerm-1 {
  326. margin: 0;
  327. }
  328. }
  329. #banner #banner-container .banner-m .bannerm-1 .banner1-1 {
  330. font-size: 18px;
  331. }
  332. #banner #banner-container ul {
  333. position: static;
  334. border-top-right-radius: 30px;
  335. border-bottom-right-radius: 30px;
  336. text-align: center;
  337. background: rgba(141, 194, 31, 0.8);
  338. }
  339. @media screen and (min-width: 1025px) {
  340. #banner #banner-container ul {
  341. margin-left: 8px;
  342. margin-bottom: 10px;
  343. }
  344. }
  345. @media screen and (max-width: 767px) {
  346. #banner #banner-container ul {
  347. margin-top: 5vw;
  348. width: 100vw;
  349. }
  350. }
  351. #banner #banner-container ul .nav-item {
  352. padding: 10px;
  353. }
  354. @media screen and (max-width: 767px) {
  355. #banner #banner-container ul .nav-item {
  356. padding: 6px;
  357. }
  358. }
  359. #banner #banner-container ul .nav-item .nav-item-achive {
  360. position: relative;
  361. }
  362. #banner #banner-container ul .nav-item .nav-item-achive:before {
  363. content: url(../img/about/sec01/item-arrow.png);
  364. display: block;
  365. width: 100%;
  366. height: 8px;
  367. position: absolute;
  368. left: 5%;
  369. bottom: 0;
  370. -webkit-transition: all 0.3s;
  371. transition: all 0.3s;
  372. opacity: 1;
  373. }
  374. #banner #banner-container .tab-content .sec01 .condition {
  375. padding: 4vw 24px;
  376. font-size: 16px;
  377. padding-bottom: 10vw;
  378. }
  379. @media screen and (max-width: 767px) {
  380. #banner #banner-container .tab-content .sec01 .condition {
  381. padding: 10vw 18px;
  382. padding-bottom: 15vw;
  383. }
  384. }
  385. @media screen and (max-width: 350px) {
  386. #banner #banner-container .tab-content .sec01 .condition {
  387. padding: 10vw 10px;
  388. }
  389. }
  390. #banner #banner-container .tab-content .sec01 .condition table th {
  391. width: 100px;
  392. padding: .4rem .1rem;
  393. }
  394. @media screen and (max-width: 350px) {
  395. #banner #banner-container .tab-content .sec01 .condition table th {
  396. width: 35%;
  397. }
  398. }
  399. #banner #banner-container .tab-content .sec01 .condition table td {
  400. padding: .4rem .1rem;
  401. }
  402. #banner #banner-container .tab-content .sec01 .idea {
  403. padding: 4vw 24px;
  404. font-size: 16px;
  405. padding-bottom: 10vw;
  406. background-size: contain;
  407. background-repeat: no-repeat;
  408. background-blend-mode: overlay;
  409. }
  410. @media screen and (max-width: 767px) {
  411. #banner #banner-container .tab-content .sec01 .idea {
  412. padding: 10vw 18px;
  413. padding-bottom: 15vw;
  414. }
  415. }
  416. #banner #banner-container .tab-content .sec01 .contact {
  417. padding-bottom: 10vw;
  418. padding: 4vw 24px;
  419. font-size: 16px;
  420. background-size: contain;
  421. background-repeat: no-repeat;
  422. background-blend-mode: overlay;
  423. word-break: break-all;
  424. }
  425. @media screen and (max-width: 767px) {
  426. #banner #banner-container .tab-content .sec01 .contact {
  427. padding: 10vw 5px;
  428. padding-bottom: 15vw;
  429. }
  430. }
  431. #banner #banner-container .tab-content .sec01 .contact a {
  432. text-decoration: none;
  433. color: #fff;
  434. }
  435. #banner #banner-container .tab-content .sec01 .contact table th {
  436. width: 100px;
  437. padding: .4rem .1rem;
  438. }
  439. @media screen and (max-width: 350px) {
  440. #banner #banner-container .tab-content .sec01 .contact table th {
  441. width: 35%;
  442. }
  443. }
  444. #banner #banner-container .tab-content .sec01 .contact table td {
  445. padding: .4rem .1rem;
  446. }
  447. #banner #banner-container .tab-content .sec02 .col-lg-4,
  448. #banner #banner-container .tab-content .sec04 .col-lg-4 {
  449. position: relative;
  450. background: #80ab29;
  451. -webkit-transition: 0.3s ease-in-out;
  452. transition: 0.3s ease-in-out;
  453. cursor: pointer;
  454. }
  455. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec02-p-m,
  456. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec02-p-m {
  457. color: #fff;
  458. text-align: center;
  459. font-size: 14px;
  460. -webkit-transition: 0.3s;
  461. transition: 0.3s;
  462. -webkit-transition: 0.3s ease-in-out;
  463. transition: 0.3s ease-in-out;
  464. }
  465. @media screen and (min-width: 1025px) {
  466. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec02-p-m,
  467. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec02-p-m {
  468. width: 100%;
  469. position: absolute;
  470. top: 35%;
  471. left: 0px;
  472. font-size: 18px;
  473. opacity: 0;
  474. }
  475. }
  476. #banner #banner-container .tab-content .sec02 .col-lg-4:hover .play1,
  477. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .play1 {
  478. opacity: 1;
  479. }
  480. #banner #banner-container .tab-content .sec02 .col-lg-4:hover .sec02-p-m,
  481. #banner #banner-container .tab-content .sec02 .col-lg-4:hover .sec03-p-m,
  482. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .sec02-p-m,
  483. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .sec03-p-m {
  484. opacity: 1;
  485. }
  486. #banner #banner-container .tab-content .sec02 .col-lg-4:hover img,
  487. #banner #banner-container .tab-content .sec04 .col-lg-4:hover img {
  488. opacity: 0.2;
  489. }
  490. @media screen and (max-width: 767px) {
  491. #banner #banner-container .tab-content .sec02 .col-lg-4:hover img,
  492. #banner #banner-container .tab-content .sec04 .col-lg-4:hover img {
  493. opacity: 1;
  494. }
  495. }
  496. @media screen and (max-width: 767px) {
  497. #banner #banner-container .tab-content .sec02 .col-lg-4,
  498. #banner #banner-container .tab-content .sec04 .col-lg-4 {
  499. background: none;
  500. }
  501. }
  502. #banner #banner-container .tab-content .sec02 .col-lg-4 img,
  503. #banner #banner-container .tab-content .sec04 .col-lg-4 img {
  504. -o-object-fit: cover;
  505. object-fit: cover;
  506. width: 100% !important;
  507. height: 17vw;
  508. opacity: 1;
  509. -webkit-transition: 0.3s ease-in-out;
  510. transition: 0.3s ease-in-out;
  511. }
  512. @media screen and (max-width: 767px) {
  513. #banner #banner-container .tab-content .sec02 .col-lg-4 img,
  514. #banner #banner-container .tab-content .sec04 .col-lg-4 img {
  515. height: 50vw;
  516. }
  517. }
  518. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-img-m,
  519. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m {
  520. text-align: center;
  521. width: 100%;
  522. position: absolute;
  523. top: 100px;
  524. }
  525. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-img-m1,
  526. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 {
  527. text-align: center;
  528. width: 100%;
  529. position: absolute;
  530. }
  531. @media screen and (max-width: 767px) {
  532. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-img-m1,
  533. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 {
  534. top: 80px;
  535. }
  536. }
  537. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-img-m1 .play1,
  538. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 .play1 {
  539. width: 50px !important;
  540. height: 50px !important;
  541. }
  542. @media screen and (max-width: 767px) {
  543. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-img-m1 .play1,
  544. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 .play1 {
  545. display: none;
  546. }
  547. }
  548. #banner #banner-container .tab-content .sec03 .col-lg-4 {
  549. position: relative;
  550. background: #80ab29;
  551. -webkit-transition: 0.3s ease-in-out;
  552. transition: 0.3s ease-in-out;
  553. cursor: pointer;
  554. }
  555. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-p-m {
  556. color: #fff;
  557. text-align: center;
  558. font-size: 14px;
  559. -webkit-transition: 0.3s;
  560. transition: 0.3s;
  561. -webkit-transition: 0.3s ease-in-out;
  562. transition: 0.3s ease-in-out;
  563. }
  564. @media screen and (min-width: 1025px) {
  565. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-p-m {
  566. width: 100%;
  567. position: absolute;
  568. top: 100px;
  569. left: 0px;
  570. font-size: 16px;
  571. opacity: 0;
  572. }
  573. }
  574. @media screen and (min-width: 1025px) {
  575. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-p-m {
  576. position: absolute;
  577. top: 30%;
  578. left: 0px;
  579. background-size: contain;
  580. opacity: 0;
  581. }
  582. }
  583. #banner #banner-container .tab-content .sec03 .col-lg-4:hover .play1 {
  584. opacity: 1;
  585. }
  586. #banner #banner-container .tab-content .sec03 .col-lg-4:hover .sec02-p-m,
  587. #banner #banner-container .tab-content .sec03 .col-lg-4:hover .sec03-p-m {
  588. opacity: 1;
  589. }
  590. #banner #banner-container .tab-content .sec03 .col-lg-4:hover img {
  591. opacity: 0.2;
  592. }
  593. @media screen and (max-width: 767px) {
  594. #banner #banner-container .tab-content .sec03 .col-lg-4:hover img {
  595. opacity: 1;
  596. }
  597. }
  598. @media screen and (max-width: 767px) {
  599. #banner #banner-container .tab-content .sec03 .col-lg-4 {
  600. background: none;
  601. }
  602. }
  603. #banner #banner-container .tab-content .sec03 .col-lg-4 img {
  604. -o-object-fit: cover;
  605. object-fit: cover;
  606. width: 100% !important;
  607. height: 17vw;
  608. opacity: 1;
  609. -webkit-transition: 0.3s ease-in-out;
  610. transition: 0.3s ease-in-out;
  611. }
  612. @media screen and (max-width: 767px) {
  613. #banner #banner-container .tab-content .sec03 .col-lg-4 img {
  614. height: 50vw;
  615. }
  616. }
  617. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-img-m {
  618. text-align: center;
  619. width: 100%;
  620. position: absolute;
  621. top: 100px;
  622. }
  623. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-img-m1 {
  624. text-align: center;
  625. width: 100%;
  626. position: absolute;
  627. }
  628. @media screen and (max-width: 767px) {
  629. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-img-m1 {
  630. top: 80px;
  631. }
  632. }
  633. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-img-m1 .play1 {
  634. width: 50px !important;
  635. height: 50px !important;
  636. }
  637. #banner #banner-container .tab-content .sec03 .sec03-1 .sec05-row {
  638. background: rgba(0, 0, 0, 0.8);
  639. text-align: center;
  640. height: 600px;
  641. }
  642. @media screen and (max-width: 767px) {
  643. #banner #banner-container .tab-content .sec03 .sec03-1 .sec05-row {
  644. height: 300px;
  645. }
  646. }
  647. #banner #banner-container .tab-content .sec03 .sec03-1 .sec05-row p {
  648. letter-spacing: 5px;
  649. }
  650. #banner #banner-container .tab-content .sec04 .col-lg-4 {
  651. position: relative;
  652. background: #80ab29;
  653. -webkit-transition: 0.3s ease-in-out;
  654. transition: 0.3s ease-in-out;
  655. cursor: pointer;
  656. }
  657. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec04-p-m {
  658. color: #fff;
  659. text-align: center;
  660. font-size: 14px;
  661. -webkit-transition: 0.3s;
  662. transition: 0.3s;
  663. -webkit-transition: 0.3s ease-in-out;
  664. transition: 0.3s ease-in-out;
  665. }
  666. @media screen and (min-width: 1025px) {
  667. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec04-p-m {
  668. width: 100%;
  669. position: absolute;
  670. top: 50px;
  671. left: 0px;
  672. font-size: 18px;
  673. opacity: 0;
  674. }
  675. }
  676. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .play1 {
  677. opacity: 1;
  678. }
  679. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .sec04-p-m {
  680. opacity: 1;
  681. }
  682. #banner #banner-container .tab-content .sec04 .col-lg-4:hover img {
  683. opacity: 0.2;
  684. }
  685. @media screen and (max-width: 767px) {
  686. #banner #banner-container .tab-content .sec04 .col-lg-4:hover img {
  687. opacity: 1;
  688. }
  689. }
  690. @media screen and (max-width: 767px) {
  691. #banner #banner-container .tab-content .sec04 .col-lg-4 {
  692. background: none;
  693. }
  694. }
  695. #banner #banner-container .tab-content .sec04 .col-lg-4 img {
  696. -o-object-fit: cover;
  697. object-fit: cover;
  698. width: 100% !important;
  699. height: 16.5vw;
  700. opacity: 1;
  701. -webkit-transition: 0.3s ease-in-out;
  702. transition: 0.3s ease-in-out;
  703. }
  704. @media screen and (max-width: 767px) {
  705. #banner #banner-container .tab-content .sec04 .col-lg-4 img {
  706. height: 50vw;
  707. }
  708. }
  709. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m {
  710. text-align: center;
  711. width: 100%;
  712. position: absolute;
  713. top: 100px;
  714. }
  715. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 {
  716. text-align: center;
  717. width: 100%;
  718. position: absolute;
  719. }
  720. @media screen and (max-width: 767px) {
  721. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 {
  722. top: 80px;
  723. }
  724. }
  725. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 .play1 {
  726. width: 50px !important;
  727. height: 50px !important;
  728. }
  729. #banner #banner-container .tab-content .sec04 .sec04-1 .sec05-row {
  730. background: rgba(0, 0, 0, 0.8);
  731. text-align: center;
  732. width: 100% !important;
  733. height: 600px;
  734. }
  735. @media screen and (max-width: 767px) {
  736. #banner #banner-container .tab-content .sec04 .sec04-1 .sec05-row {
  737. height: 300px;
  738. }
  739. }
  740. #banner #banner-container .tab-content .sec04 .sec04-1 .sec05-row p {
  741. letter-spacing: 5px;
  742. }
  743. #footer {
  744. background: #363636;
  745. text-align: center;
  746. width: 80vw;
  747. margin: 0 auto !important;
  748. padding-top: 2vw;
  749. padding: 1vw;
  750. }
  751. @media screen and (max-width: 767px) {
  752. #footer {
  753. width: 95vw;
  754. padding: 30vw 5vw;
  755. }
  756. }
  757. #footer a {
  758. text-decoration: none;
  759. color: #fff;
  760. }
  761. #footer p {
  762. color: #fff;
  763. }
  764. #modal-dialog {
  765. width: 90vw;
  766. }
  767. #modal-dialog .modal-content {
  768. width: 80vw;
  769. }
  770. @media screen and (max-width: 767px) {
  771. #modal-dialog .modal-content {
  772. width: 90vw;
  773. }
  774. }
  775. #light-box #form-lightbox {
  776. margin: 0 auto;
  777. padding: 15px;
  778. }
  779. @media screen and (max-width: 767px) {
  780. #light-box #form-lightbox {
  781. width: 85vw;
  782. padding: 0px;
  783. }
  784. }
  785. #light-box #form-lightbox .form-title {
  786. margin: 0 auto;
  787. color: #5c5248;
  788. }
  789. #light-box #form-lightbox .form-title h1 {
  790. text-align: center;
  791. font-size: 32px;
  792. font-weight: 900;
  793. }
  794. @media screen and (max-width: 767px) {
  795. #light-box #form-lightbox .form-title h1 {
  796. font-size: 24px;
  797. }
  798. }
  799. @media screen and (max-width: 350px) {
  800. #light-box #form-lightbox .form-title h1 {
  801. font-size: 20px;
  802. }
  803. }
  804. #light-box #form-lightbox .form-title h1 span {
  805. font-size: 38px;
  806. }
  807. @media screen and (max-width: 767px) {
  808. #light-box #form-lightbox .form-title h1 span {
  809. font-size: 28px;
  810. }
  811. }
  812. @media screen and (max-width: 350px) {
  813. #light-box #form-lightbox .form-title h1 span {
  814. font-size: 24px;
  815. }
  816. }
  817. #light-box #form-lightbox .contact-text {
  818. margin: 0 auto;
  819. }
  820. #light-box #form-lightbox .contact-text .text-p {
  821. margin-left: 15px;
  822. padding-left: 12px;
  823. font-size: 16px;
  824. font-weight: 600;
  825. }
  826. @media screen and (max-width: 767px) {
  827. #light-box #form-lightbox .contact-text .text-p {
  828. margin-left: 0px;
  829. padding-left: 0px;
  830. }
  831. }
  832. @media screen and (max-width: 350px) {
  833. #light-box #form-lightbox .contact-text .text-p {
  834. font-size: 14px;
  835. }
  836. }
  837. #light-box #form-lightbox .contact-form1 {
  838. margin: 0 auto;
  839. }
  840. #light-box #form-lightbox .contact-form1 #contact-form {
  841. margin-top: 10px;
  842. }
  843. #light-box #form-lightbox .contact-form1 #contact-form .col-lg-1 .divider {
  844. position: relative;
  845. width: 1px;
  846. height: 100%;
  847. border-left: 1px solid rgba(0, 0, 0, 0.12);
  848. }
  849. #light-box #form-lightbox .contact-form1 #contact-form #loc,
  850. #light-box #form-lightbox .contact-form1 #contact-form #type,
  851. #light-box #form-lightbox .contact-form1 #contact-form #modal,
  852. #light-box #form-lightbox .contact-form1 #contact-form #budget,
  853. #light-box #form-lightbox .contact-form1 #contact-form #square,
  854. #light-box #form-lightbox .contact-form1 #contact-form #style,
  855. #light-box #form-lightbox .contact-form1 #contact-form #datepicker,
  856. #light-box #form-lightbox .contact-form1 #contact-form #email,
  857. #light-box #form-lightbox .contact-form1 #contact-form #name,
  858. #light-box #form-lightbox .contact-form1 #contact-form #phone,
  859. #light-box #form-lightbox .contact-form1 #contact-form #gender {
  860. width: 100%;
  861. height: 50px;
  862. margin: 10px 0;
  863. padding-left: 10px;
  864. border: 1px solid rgba(0, 0, 0, 0.3);
  865. padding: 10px 15px;
  866. font-size: 16px;
  867. border-radius: 3px;
  868. -webkit-appearance: none;
  869. -moz-appearance: none;
  870. appearance: none;
  871. background: url(../img/icondown.webp) 95% 50% no-repeat scroll transparent;
  872. background-size: 10px 10px;
  873. background-color: #fff;
  874. }
  875. #light-box #form-lightbox .contact-form1 #contact-form #form-left {
  876. margin: 0 auto;
  877. }
  878. #light-box #form-lightbox .contact-form1 #contact-form #form-left #rooms,
  879. #light-box #form-lightbox .contact-form1 #contact-form #form-left #livingroom,
  880. #light-box #form-lightbox .contact-form1 #contact-form #form-left #bathroom {
  881. width: 28.8%;
  882. border: 1px solid rgba(0, 0, 0, 0.3);
  883. height: 50px;
  884. margin: 15px 0;
  885. padding-right: 50px;
  886. padding: 10px 15px;
  887. font-size: 16px;
  888. border-radius: 3px;
  889. -webkit-appearance: none;
  890. -moz-appearance: none;
  891. appearance: none;
  892. background: url(../img/icondown.webp) 85% 50% no-repeat scroll transparent;
  893. background-size: 10px 10px;
  894. background-color: #fff;
  895. }
  896. @media screen and (max-width: 767px) {
  897. #light-box #form-lightbox .contact-form1 #contact-form #form-left #rooms,
  898. #light-box #form-lightbox .contact-form1 #contact-form #form-left #livingroom,
  899. #light-box #form-lightbox .contact-form1 #contact-form #form-left #bathroom {
  900. width: 31%;
  901. }
  902. }
  903. #light-box #form-lightbox .contact-form1 #contact-form #form-left #square,
  904. #light-box #form-lightbox .contact-form1 #contact-form #form-left #datepicker {
  905. background: none;
  906. background-color: #fff;
  907. }
  908. #light-box #form-lightbox .contact-form1 #contact-form #form-right {
  909. margin: 0 auto;
  910. }
  911. @media screen and (min-width: 1025px) {
  912. #light-box #form-lightbox .contact-form1 #contact-form #form-right hr {
  913. display: none;
  914. }
  915. }
  916. #light-box #form-lightbox .contact-form1 #contact-form #fb-button {
  917. margin-top: 12px;
  918. width: 100%;
  919. height: 50px;
  920. border: 1px solid #3b5998;
  921. text-align: right;
  922. padding-right: 60px;
  923. background-size: 32px 32px;
  924. border-radius: 3px;
  925. background-color: #fff;
  926. -webkit-transition: 0.3s;
  927. transition: 0.3s;
  928. position: relative;
  929. }
  930. @media screen and (max-width: 767px) {
  931. #light-box #form-lightbox .contact-form1 #contact-form #fb-button {
  932. margin: 10px 0;
  933. }
  934. }
  935. #light-box #form-lightbox .contact-form1 #contact-form #fb-button p {
  936. position: absolute;
  937. top: 1vw;
  938. left: 12vw;
  939. color: #626262;
  940. }
  941. @media screen and (max-width: 767px) {
  942. #light-box #form-lightbox .contact-form1 #contact-form #fb-button p {
  943. left: 32vw;
  944. top: 3vw;
  945. }
  946. }
  947. #light-box #form-lightbox .contact-form1 #contact-form #fb-button #line {
  948. position: absolute;
  949. color: #9b9b9b;
  950. opacity: 0.8;
  951. left: 8vw;
  952. top: -0.1vw;
  953. }
  954. @media screen and (max-width: 767px) {
  955. #light-box #form-lightbox .contact-form1 #contact-form #fb-button #line {
  956. left: 20vw;
  957. }
  958. }
  959. #light-box #form-lightbox .contact-form1 #contact-form #fb-button img {
  960. position: absolute;
  961. left: 50px;
  962. top: 10px;
  963. width: 32px;
  964. height: 32px;
  965. -webkit-filter: invert(29%) sepia(70%) saturate(712%) hue-rotate(186deg) brightness(89%) contrast(81%);
  966. filter: invert(29%) sepia(70%) saturate(712%) hue-rotate(186deg) brightness(89%) contrast(81%);
  967. }
  968. @media screen and (max-width: 767px) {
  969. #light-box #form-lightbox .contact-form1 #contact-form #fb-button img {
  970. left: 20px;
  971. }
  972. }
  973. #light-box #form-lightbox .contact-form1 #contact-form #fb-button:hover {
  974. background-color: #2a4f91;
  975. color: #fff;
  976. }
  977. #light-box #form-lightbox .contact-form1 #contact-form #fb-button:hover img {
  978. -webkit-filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  979. filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  980. }
  981. #light-box #form-lightbox .contact-form1 #contact-form #fb-button:hover p {
  982. color: #fff;
  983. }
  984. #light-box #form-lightbox .contact-form1 #contact-form #fb-button:hover #line {
  985. color: #fff;
  986. }
  987. #light-box #form-lightbox .contact-form1 #contact-form a {
  988. text-decoration: none;
  989. color: #ee751b;
  990. font-weight: 900;
  991. }
  992. #light-box #form-lightbox .contact-form1 #contact-form #email,
  993. #light-box #form-lightbox .contact-form1 #contact-form #name,
  994. #light-box #form-lightbox .contact-form1 #contact-form #phone {
  995. background: none;
  996. background-color: #fff;
  997. }
  998. #light-box #form-lightbox .btn {
  999. margin: 50px auto;
  1000. border: none;
  1001. padding: 15px;
  1002. background: #edbc96;
  1003. color: #4b515e;
  1004. font-size: 20px;
  1005. width: 400px;
  1006. border-radius: 10px;
  1007. }
  1008. @media screen and (max-width: 767px) {
  1009. #light-box #form-lightbox .btn {
  1010. width: 100%;
  1011. }
  1012. }
  1013. #light-box #form-lightbox .btn:hover {
  1014. color: #fff;
  1015. background-color: #745c54;
  1016. }
  1017. #light-box #form-lightbox .form-btn {
  1018. text-align: center;
  1019. position: relative;
  1020. width: 70vw;
  1021. margin: 0 auto;
  1022. }
  1023. @media screen and (max-width: 767px) {
  1024. #light-box #form-lightbox .form-btn {
  1025. width: 80vw;
  1026. margin: 0 auto;
  1027. }
  1028. }
  1029. #light-box #form-lightbox .form-btn #phone1 {
  1030. position: absolute;
  1031. left: 500px;
  1032. }
  1033. /*# sourceMappingURL=about.css.map */