_offers.scss 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  1. .offers_area{
  2. padding-bottom: 100px;
  3. @media #{$mobile_device} {
  4. padding-bottom: 40px;
  5. }
  6. &.padding_top{
  7. padding-top: 200px;
  8. @media #{$mobile_device} {
  9. padding-top: 40px;
  10. }
  11. @media #{$tablet_device} {
  12. padding-top: 80px;
  13. }
  14. @media #{$mid_device} {
  15. padding-top: 80px;
  16. }
  17. }
  18. .single_offers{
  19. @media #{$mobile_device} {
  20. margin-bottom: 30px;
  21. }
  22. .about_thumb{
  23. overflow: hidden;
  24. img{
  25. width: 100%;
  26. @include transform(scale(1));
  27. @include transition(.3s);
  28. }
  29. }
  30. h3{
  31. font-size: 22px;
  32. font-weight: 400;
  33. color: #1F1F1F;
  34. margin-top: 32px;
  35. @media #{$tablet_device}{
  36. font-size: 18px;
  37. }
  38. br{
  39. @media #{$tablet_device} {
  40. display: none;
  41. }
  42. }
  43. }
  44. ul{
  45. margin-top: 17px;
  46. margin-bottom: 30px;
  47. li{
  48. font-size: 16px;
  49. color: #4D4D4D;
  50. line-height: 28px;
  51. position: relative;
  52. z-index: 9;
  53. padding-left: 23px;
  54. &::before{
  55. position: absolute;
  56. content: "";
  57. width: 8px;
  58. height: 8px;
  59. background: #4D4D4D;
  60. left: 0;
  61. top: 50%;
  62. @include transform(translateY(-50%));
  63. border-radius: 50%;
  64. }
  65. }
  66. }
  67. a{
  68. width: 100%;
  69. text-align: center;
  70. }
  71. &:hover{
  72. .about_thumb{
  73. img{
  74. width: 100%;
  75. @include transform(scale(1.1));
  76. }
  77. }
  78. }
  79. }
  80. }
  81. // video_area
  82. .video_bg{
  83. background-image: url(../img/video/video.png);
  84. }
  85. .video_area{
  86. padding: 250px 0;
  87. background-size: cover;
  88. background-position: center center;
  89. @media #{$mobile_device} {
  90. padding: 100px 0;
  91. }
  92. @media #{$tablet_device} {
  93. padding: 100px 0;
  94. }
  95. .video_area_inner{
  96. span{
  97. font-size: 14px;
  98. color: #fff;
  99. }
  100. h3{
  101. font-size: 46px;
  102. color: #fff;
  103. line-height: 56px;
  104. font-weight: 400;
  105. margin-top: 12px;
  106. margin-bottom: 28px;
  107. @media #{$mobile_device} {
  108. font-size: 30px;
  109. }
  110. }
  111. a{
  112. width: 60px;
  113. height: 60px;
  114. background: #fff;
  115. line-height: 60px;
  116. font-size: 15px;
  117. color: #009DFF;
  118. display: inline-block;
  119. @include border-radius(50%);
  120. i{
  121. position: relative;
  122. left: 2px;
  123. }
  124. }
  125. }
  126. }
  127. // features_room start
  128. .features_room{
  129. padding-top: 93px;
  130. display: block;
  131. overflow: hidden;
  132. @media #{$mobile_device} {
  133. padding-top: 40px;
  134. }
  135. @media #{$tablet_device}{
  136. padding-top: 0;
  137. }
  138. .rooms_here{
  139. .single_rooms{
  140. position: relative;
  141. width: 50%;
  142. @media #{$mobile_device} {
  143. width: 100%;
  144. margin-bottom: 30px;
  145. }
  146. &::before{
  147. position: absolute;
  148. left: 0;
  149. top: 0;
  150. width: 100%;
  151. height: 100%;
  152. content: "";
  153. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,000000+100 */
  154. background: #ffffff; /* Old browsers */
  155. background: -moz-linear-gradient(top, #ffffff 0%, #000000 77%); /* FF3.6-15 */
  156. background: -webkit-linear-gradient(top, #ffffff 0%,#000000 77%); /* Chrome10-25,Safari5.1-6 */
  157. background: linear-gradient(to bottom, #ffffff 0%,#000000 77%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  158. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
  159. z-index: 1;
  160. opacity: .5;
  161. }
  162. float: left;
  163. .room_thumb{
  164. position: relative;
  165. overflow: hidden;
  166. // z-index: 8;
  167. img{
  168. width: 100%;
  169. @include transform(scale(1));
  170. @include transition(.5s);
  171. }
  172. .room_heading{
  173. position: absolute;
  174. left: 0;
  175. right: 0;
  176. bottom: 0px;
  177. padding: 60px 60px 47px 60px;
  178. @media #{$mobile_device} {
  179. padding: 20px;
  180. }
  181. @media #{$tablet_device} {
  182. padding: 20px;
  183. }
  184. span{
  185. font-size: 14px;
  186. color: #FFFFFF;
  187. margin-bottom: 9px;
  188. display: block;
  189. position: relative;
  190. z-index: 8;
  191. }
  192. h3{
  193. font-size: 30px;
  194. color: #fff;
  195. position: relative;
  196. z-index: 8;
  197. @media #{$mobile_device} {
  198. font-size: 20px;
  199. }
  200. }
  201. a{
  202. color: #fff;
  203. text-transform: capitalize;
  204. font-weight: 600;
  205. position: relative;
  206. z-index: 8;
  207. @include transform(translateY(-40px));
  208. opacity: 0;
  209. visibility: hidden;
  210. &:hover{
  211. color: #009DFF;
  212. }
  213. }
  214. }
  215. }
  216. &:hover{
  217. img{
  218. width: 100%;
  219. @include transform(scale(1.1));
  220. }
  221. .room_heading{
  222. a{
  223. @include transform(translateY(0px));
  224. opacity: 1;
  225. visibility: visible;
  226. }
  227. }
  228. }
  229. }
  230. }
  231. }
  232. // forQuery start
  233. .forQuery{
  234. padding-top: 200px;
  235. padding-bottom: 200px;
  236. @media #{$mobile_device} {
  237. padding: 60px 0;
  238. }
  239. @media #{$tablet_device} {
  240. padding: 100px 0;
  241. }
  242. @media #{$mid_device} {
  243. padding: 100px 0;
  244. }
  245. @media #{$large_device} {
  246. padding: 100px 0;
  247. }
  248. .Query_border{
  249. border: 1px solid #BABABA;
  250. padding: 38px 50px;
  251. @media #{$mobile_device} {
  252. padding: 20px 20px;
  253. }
  254. .Query_text{
  255. text-align: left;
  256. }
  257. p{
  258. font-size: 30px;
  259. color: #1F1F1F;
  260. font-weight: 400;
  261. margin-bottom: 0;
  262. @media #{$mobile_device} {
  263. margin-bottom: 20px;
  264. font-size: 18px;
  265. text-align: center;
  266. }
  267. @media #{$tablet_device} {
  268. font-size: 18px;
  269. }
  270. }
  271. .phone_num{
  272. text-align: right;
  273. @media #{$mobile_device} {
  274. text-align: center;
  275. }
  276. a{
  277. background: #009DFF;
  278. color: #fff;
  279. padding: 12px 53px;
  280. border-radius: 30px;
  281. display: inline-block;
  282. font-size: 18px;
  283. border: 1px solid transparent;
  284. &:hover{
  285. color: #009DFF;
  286. border: 1px solid #009DFF;
  287. background: #fff;
  288. }
  289. }
  290. }
  291. }
  292. }
  293. // instragram_area
  294. .instragram_area{
  295. display: block;
  296. overflow: hidden;
  297. @media #{$mobile_device} {
  298. // margin-bottom: 30px;
  299. }
  300. @media #{$tablet_device} {
  301. // margin-bottom: 30px;
  302. }
  303. .single_instagram{
  304. width: 20%;
  305. float: left;
  306. position: relative;
  307. overflow: hidden;
  308. @media #{$mobile_device} {
  309. width: 100%;
  310. // margin-bottom: 30px;
  311. }
  312. @media #{$tablet_device} {
  313. width: 50%;
  314. }
  315. img{
  316. width: 100%;
  317. @include transform(scaleX(1));
  318. @include transition(.5s);
  319. }
  320. .ovrelay{
  321. position: absolute;
  322. left: 0;
  323. top: 0;
  324. width: 100%;
  325. height: 100%;
  326. background: rgba(0,0,0,.2) ;
  327. @include transform(translateX(-80%));
  328. @include transition(.5s);
  329. opacity: 0;
  330. visibility: hidden;
  331. a{
  332. color: #fff;
  333. position: absolute;
  334. left: 0;
  335. top: 50%;
  336. transform: translateY(-50%);
  337. right: 0;
  338. text-align: center;
  339. font-size: 34px;
  340. @include transform(translateY(-50%));
  341. }
  342. }
  343. &:hover{
  344. .ovrelay{
  345. @include transform(translateX(0%));
  346. opacity: 1;
  347. visibility: visible;
  348. }
  349. img{
  350. @include transform(scaleX(1.1));
  351. }
  352. }
  353. }
  354. }
  355. #test-form{
  356. .white-popup-block{
  357. .popup_inner{
  358. .gj-datepicker{
  359. span{
  360. color: red;
  361. }
  362. }
  363. }
  364. input{
  365. width: 100%;
  366. height: 50px;
  367. }
  368. }
  369. }
  370. .gj-datepicker input {
  371. width: 100%;
  372. height: 50px;
  373. border: 1px solid #ddd;
  374. padding: 17px;
  375. font-size: 12px;
  376. color: #919191;
  377. margin-bottom: 20px;
  378. }
  379. .gj-datepicker-md [role="right-icon"] {
  380. position: absolute;
  381. right: 0px;
  382. top: 0px;
  383. font-size: 14px;
  384. color: #919191;
  385. margin-right: 15px;
  386. top: 16px;
  387. }
  388. .gj-picker-md {
  389. font-family: "Roboto","Helvetica","Arial",sans-serif;
  390. font-size: 16px;
  391. font-weight: 400;
  392. letter-spacing: .04em;
  393. line-height: 1;
  394. color: rgba(0,0,0,.87);
  395. padding: 10px;
  396. padding: 20px;
  397. border: 1px solid #E0E0E0;
  398. }