style.css 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337
  1. /******************************************************************
  2. Template Name: Sona
  3. Description: Sona Hotel Html Template
  4. Author: Colorlib
  5. Author URI: https://colorlib.com
  6. Version: 1.0
  7. Created: Colorlib
  8. ******************************************************************/
  9. /*------------------------------------------------------------------
  10. [Table of contents]
  11. 1. Template default CSS
  12. 1.1 Variables
  13. 1.2 Mixins
  14. 1.3 Flexbox
  15. 1.4 Reset
  16. 2. Helper Css
  17. 3. Header Section
  18. 4. Hero Section
  19. 5. About Section
  20. 6. Services Section
  21. 7. Testimonial Section
  22. 8. Blog Section
  23. 9. Contact
  24. 10. Footer Style
  25. -------------------------------------------------------------------*/
  26. /*----------------------------------------*/
  27. /* Template default CSS
  28. /*----------------------------------------*/
  29. html, body {
  30. height: 100%;
  31. font-family: "Cabin", sans-serif;
  32. -webkit-font-smoothing: antialiased;
  33. font-smoothing: antialiased;
  34. }
  35. h1, h2, h3, h4, h5, h6 {
  36. margin: 0;
  37. color: #111111;
  38. font-weight: 400;
  39. font-family: "Lora", serif;
  40. }
  41. h1 {
  42. font-size: 70px;
  43. }
  44. h2 {
  45. font-size: 36px;
  46. }
  47. h3 {
  48. font-size: 30px;
  49. }
  50. h4 {
  51. font-size: 24px;
  52. }
  53. h5 {
  54. font-size: 18px;
  55. }
  56. h6 {
  57. font-size: 16px;
  58. }
  59. p {
  60. font-size: 16px;
  61. font-family: "Cabin", sans-serif;
  62. color: #6b6b6b;
  63. font-weight: 400;
  64. line-height: 26px;
  65. margin: 0 0 15px 0;
  66. }
  67. img {
  68. max-width: 100%;
  69. }
  70. input:focus, select:focus, button:focus, textarea:focus {
  71. outline: none;
  72. }
  73. a:hover, a:focus {
  74. text-decoration: none;
  75. outline: none;
  76. color: #fff;
  77. }
  78. ul, ol {
  79. padding: 0;
  80. margin: 0;
  81. }
  82. /*---------------------
  83. Helper CSS
  84. -----------------------*/
  85. .section-title {
  86. text-align: center;
  87. margin-bottom: 22px;
  88. }
  89. .section-title span {
  90. font-size: 14px;
  91. color: #dfa974;
  92. font-weight: 700;
  93. text-transform: uppercase;
  94. letter-spacing: 2px;
  95. }
  96. .section-title h2 {
  97. font-size: 44px;
  98. color: #19191a;
  99. line-height: 58px;
  100. margin-top: 10px;
  101. }
  102. .set-bg {
  103. background-repeat: no-repeat;
  104. background-size: cover;
  105. background-position: top center;
  106. }
  107. .spad {
  108. padding-top: 100px;
  109. padding-bottom: 100px;
  110. }
  111. .spad-2 {
  112. padding-top: 50px;
  113. padding-bottom: 70px;
  114. }
  115. .text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6, .text-white p, .text-white span, .text-white li, .text-white a {
  116. color: #fff;
  117. }
  118. /* buttons */
  119. .primary-btn {
  120. display: inline-block;
  121. font-size: 13px;
  122. color: #ffffff;
  123. text-transform: uppercase;
  124. letter-spacing: 2px;
  125. font-weight: 700;
  126. position: relative;
  127. }
  128. .primary-btn:after {
  129. position: absolute;
  130. left: 0;
  131. bottom: -5px;
  132. width: 100%;
  133. height: 2px;
  134. background: #dfa974;
  135. content: "";
  136. }
  137. /* Preloder */
  138. #preloder {
  139. position: fixed;
  140. width: 100%;
  141. height: 100%;
  142. top: 0;
  143. left: 0;
  144. z-index: 999999;
  145. background: #ffffff;
  146. }
  147. .loader {
  148. width: 40px;
  149. height: 40px;
  150. position: absolute;
  151. top: 50%;
  152. left: 50%;
  153. margin-top: -13px;
  154. margin-left: -13px;
  155. border-radius: 60px;
  156. animation: loader 0.8s linear infinite;
  157. -webkit-animation: loader 0.8s linear infinite;
  158. }
  159. @keyframes loader {
  160. 0% {
  161. -webkit-transform: rotate(0deg);
  162. transform: rotate(0deg);
  163. border: 4px solid #f44336;
  164. border-left-color: transparent;
  165. }
  166. 50% {
  167. -webkit-transform: rotate(180deg);
  168. transform: rotate(180deg);
  169. border: 4px solid #673ab7;
  170. border-left-color: transparent;
  171. }
  172. 100% {
  173. -webkit-transform: rotate(360deg);
  174. transform: rotate(360deg);
  175. border: 4px solid #f44336;
  176. border-left-color: transparent;
  177. }
  178. }
  179. @-webkit-keyframes loader {
  180. 0% {
  181. -webkit-transform: rotate(0deg);
  182. border: 4px solid #f44336;
  183. border-left-color: transparent;
  184. }
  185. 50% {
  186. -webkit-transform: rotate(180deg);
  187. border: 4px solid #673ab7;
  188. border-left-color: transparent;
  189. }
  190. 100% {
  191. -webkit-transform: rotate(360deg);
  192. border: 4px solid #f44336;
  193. border-left-color: transparent;
  194. }
  195. }
  196. .spacial-controls {
  197. position: fixed;
  198. width: 111px;
  199. height: 91px;
  200. top: 0;
  201. right: 0;
  202. z-index: 999;
  203. }
  204. .spacial-controls .search-switch {
  205. display: block;
  206. height: 100%;
  207. padding-top: 30px;
  208. background: #323232;
  209. text-align: center;
  210. cursor: pointer;
  211. }
  212. .search-model {
  213. display: none;
  214. position: fixed;
  215. width: 100%;
  216. height: 100%;
  217. left: 0;
  218. top: 0;
  219. background: #000;
  220. z-index: 99999;
  221. }
  222. .search-model-form {
  223. padding: 0 15px;
  224. }
  225. .search-model-form input {
  226. width: 500px;
  227. font-size: 40px;
  228. border: none;
  229. border-bottom: 2px solid #333;
  230. background: none;
  231. color: #999;
  232. }
  233. .search-close-switch {
  234. position: absolute;
  235. width: 50px;
  236. height: 50px;
  237. background: #333;
  238. color: #fff;
  239. text-align: center;
  240. border-radius: 50%;
  241. font-size: 28px;
  242. line-height: 28px;
  243. top: 30px;
  244. cursor: pointer;
  245. display: -webkit-box;
  246. display: -ms-flexbox;
  247. display: flex;
  248. -webkit-box-align: center;
  249. -ms-flex-align: center;
  250. align-items: center;
  251. -webkit-box-pack: center;
  252. -ms-flex-pack: center;
  253. justify-content: center;
  254. }
  255. /*---------------------
  256. Header
  257. -----------------------*/
  258. .header-section.header-normal .menu-item {
  259. -webkit-box-shadow: 0px 12px 15px rgba(36, 11, 12, 0.05);
  260. box-shadow: 0px 12px 15px rgba(36, 11, 12, 0.05);
  261. }
  262. .top-nav {
  263. border-bottom: 1px solid #e5e5e5;
  264. }
  265. .top-nav .tn-left li {
  266. list-style: none;
  267. display: inline-block;
  268. font-size: 16px;
  269. color: #19191a;
  270. font-weight: 500;
  271. padding: 14px 0 12px;
  272. margin-right: 64px;
  273. position: relative;
  274. }
  275. .top-nav .tn-left li:after {
  276. position: absolute;
  277. right: -32px;
  278. top: 0;
  279. width: 1px;
  280. height: 100%;
  281. background: #e5e5e5;
  282. content: "";
  283. }
  284. .top-nav .tn-left li:last-child {
  285. margin-right: 0;
  286. }
  287. .top-nav .tn-left li:last-child:after {
  288. display: none;
  289. }
  290. .top-nav .tn-left li i {
  291. color: #dfa974;
  292. margin-right: 4px;
  293. }
  294. .top-nav .tn-right {
  295. text-align: right;
  296. }
  297. .top-nav .tn-right .top-social {
  298. display: inline-block;
  299. margin-right: 35px;
  300. padding: 13px 0;
  301. }
  302. .top-nav .tn-right .top-social a {
  303. display: inline-block;
  304. font-size: 16px;
  305. color: #19191a;
  306. margin-left: 15px;
  307. }
  308. .top-nav .tn-right .bk-btn {
  309. display: inline-block;
  310. font-size: 13px;
  311. font-weight: 700;
  312. padding: 16px 28px 15px;
  313. background: #dfa974;
  314. color: #ffffff;
  315. text-transform: uppercase;
  316. letter-spacing: 2px;
  317. }
  318. .top-nav .tn-right .language-option {
  319. display: inline-block;
  320. margin-left: 30px;
  321. cursor: pointer;
  322. padding: 13px 0px 11px;
  323. position: relative;
  324. }
  325. .top-nav .tn-right .language-option:hover .flag-dropdown {
  326. top: 40px;
  327. opacity: 1;
  328. visibility: visible;
  329. }
  330. .top-nav .tn-right .language-option img {
  331. height: 26px;
  332. width: 26px;
  333. border-radius: 50%;
  334. margin-right: 10px;
  335. }
  336. .top-nav .tn-right .language-option span {
  337. font-size: 16px;
  338. color: #19191a;
  339. text-transform: uppercase;
  340. font-weight: 500;
  341. }
  342. .top-nav .tn-right .language-option .flag-dropdown {
  343. position: absolute;
  344. left: 0;
  345. top: 60px;
  346. width: 100px;
  347. background: #ffffff;
  348. display: block;
  349. padding: 10px 15px;
  350. -webkit-box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
  351. box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
  352. opacity: 0;
  353. visibility: hidden;
  354. -webkit-transition: all 0.3s;
  355. -o-transition: all 0.3s;
  356. transition: all 0.3s;
  357. z-index: 99;
  358. }
  359. .top-nav .tn-right .language-option .flag-dropdown ul li {
  360. list-style: none;
  361. text-align: left;
  362. }
  363. .top-nav .tn-right .language-option .flag-dropdown ul li a {
  364. font-size: 14px;
  365. text-transform: uppercase;
  366. font-weight: 500;
  367. color: #19191a;
  368. -webkit-transition: all 0.3s;
  369. -o-transition: all 0.3s;
  370. transition: all 0.3s;
  371. }
  372. .top-nav .tn-right .language-option .flag-dropdown ul li a:hover {
  373. color: #dfa974;
  374. }
  375. .menu-item {
  376. position: relative;
  377. z-index: 9;
  378. }
  379. .menu-item .logo {
  380. padding: 25px 0;
  381. }
  382. .menu-item .logo a {
  383. display: inline-block;
  384. }
  385. .menu-item .nav-menu {
  386. text-align: right;
  387. }
  388. .menu-item .nav-menu .mainmenu {
  389. display: inline-block;
  390. }
  391. .menu-item .nav-menu .mainmenu li {
  392. list-style: none;
  393. display: inline-block;
  394. position: relative;
  395. z-index: 1;
  396. }
  397. .menu-item .nav-menu .mainmenu li.active a:after {
  398. opacity: 1;
  399. }
  400. .menu-item .nav-menu .mainmenu li:hover>a:after {
  401. opacity: 1;
  402. }
  403. .menu-item .nav-menu .mainmenu li:hover .dropdown {
  404. top: 77px;
  405. opacity: 1;
  406. visibility: visible;
  407. }
  408. .menu-item .nav-menu .mainmenu li a {
  409. font-size: 16px;
  410. color: #19191a;
  411. margin-right: 42px;
  412. font-weight: 500;
  413. display: inline-block;
  414. padding: 27px 0;
  415. position: relative;
  416. -webkit-transition: all 0.3s;
  417. -o-transition: all 0.3s;
  418. transition: all 0.3s;
  419. }
  420. .menu-item .nav-menu .mainmenu li a:after {
  421. position: absolute;
  422. left: 0;
  423. top: 52px;
  424. width: 100%;
  425. height: 2px;
  426. background: #dfa974;
  427. content: "";
  428. opacity: 0;
  429. -webkit-transition: all 0.3s;
  430. -o-transition: all 0.3s;
  431. transition: all 0.3s;
  432. }
  433. .menu-item .nav-menu .mainmenu li .dropdown {
  434. position: absolute;
  435. left: 0;
  436. top: 97px;
  437. width: 180px;
  438. background: #ffffff;
  439. z-index: 9;
  440. opacity: 0;
  441. visibility: hidden;
  442. -webkit-transition: all 0.3s;
  443. -o-transition: all 0.3s;
  444. transition: all 0.3s;
  445. -webkit-box-shadow: 0px 9px 15px rgba(25, 25, 26, 0.05);
  446. box-shadow: 0px 9px 15px rgba(25, 25, 26, 0.05);
  447. }
  448. .menu-item .nav-menu .mainmenu li .dropdown li {
  449. list-style: none;
  450. display: block;
  451. }
  452. .menu-item .nav-menu .mainmenu li .dropdown li a {
  453. font-size: 16px;
  454. color: #19191a;
  455. display: block;
  456. text-align: left;
  457. padding: 8px 15px;
  458. -webkit-transition: all 0.3s;
  459. -o-transition: all 0.3s;
  460. transition: all 0.3s;
  461. }
  462. .menu-item .nav-menu .mainmenu li .dropdown li a:hover {
  463. color: #dfa974;
  464. }
  465. .menu-item .nav-menu .mainmenu li .dropdown li a:after {
  466. display: none;
  467. }
  468. .menu-item .nav-menu .nav-right {
  469. display: inline-block;
  470. margin-left: 43px;
  471. padding: 27px 0px;
  472. }
  473. .menu-item .nav-menu .nav-right i {
  474. font-size: 16px;
  475. color: #19191a;
  476. cursor: pointer;
  477. }
  478. .canvas-open {
  479. display: none;
  480. }
  481. .offcanvas-menu-wrapper {
  482. display: none;
  483. }
  484. /*---------------------
  485. Hero
  486. -----------------------*/
  487. .hero-section {
  488. position: relative;
  489. padding-top: 60px;
  490. padding-bottom: 100px;
  491. }
  492. .hero-section .container {
  493. position: relative;
  494. z-index: 5;
  495. }
  496. .hero-text {
  497. padding-top: 145px;
  498. }
  499. .hero-text h1 {
  500. font-size: 80px;
  501. line-height: 90px;
  502. color: #ffffff;
  503. margin-bottom: 16px;
  504. }
  505. .hero-text p {
  506. font-size: 18px;
  507. color: #ffffff;
  508. line-height: 28px;
  509. margin-bottom: 35px;
  510. }
  511. .booking-form {
  512. background: #ffffff;
  513. padding: 44px 40px 50px 40px;
  514. border-radius: 4px;
  515. }
  516. .booking-form h3 {
  517. color: #19191a;
  518. margin-bottom: 36px;
  519. }
  520. .booking-form form .check-date {
  521. position: relative;
  522. margin-bottom: 15px;
  523. }
  524. .booking-form form .check-date label {
  525. font-size: 14px;
  526. color: #707079;
  527. display: block;
  528. margin-bottom: 10px;
  529. }
  530. .booking-form form .check-date input {
  531. width: 100%;
  532. height: 50px;
  533. border: 1px solid #ebebeb;
  534. border-radius: 2px;
  535. font-size: 16px;
  536. color: #19191a;
  537. text-transform: uppercase;
  538. font-weight: 500;
  539. padding-left: 20px;
  540. }
  541. .booking-form form .check-date i {
  542. color: #dfa974;
  543. position: absolute;
  544. right: 18px;
  545. bottom: 17px;
  546. }
  547. .booking-form form .select-option {
  548. margin-bottom: 15px;
  549. }
  550. .booking-form form .select-option label {
  551. font-size: 14px;
  552. color: #707079;
  553. display: block;
  554. margin-bottom: 10px;
  555. }
  556. .booking-form form .select-option .nice-select {
  557. border-radius: 2px;
  558. border: 1px solid #ebebeb;
  559. height: 50px;
  560. line-height: 50px;
  561. outline: none;
  562. padding-left: 20px;
  563. width: 100%;
  564. float: none;
  565. }
  566. .booking-form form .select-option .nice-select:after {
  567. border-bottom: 2px solid #dfa974;
  568. border-right: 2px solid #dfa974;
  569. height: 10px;
  570. margin-top: 0;
  571. right: 20px;
  572. width: 10px;
  573. top: 36%;
  574. }
  575. .booking-form form .select-option .nice-select span {
  576. font-size: 16px;
  577. color: #19191a;
  578. text-transform: uppercase;
  579. font-weight: 500;
  580. }
  581. .booking-form form .select-option .nice-select .list {
  582. margin-top: 0;
  583. width: 100%;
  584. }
  585. .booking-form form button {
  586. display: block;
  587. font-size: 14px;
  588. text-transform: uppercase;
  589. border: 1px solid #dfa974;
  590. border-radius: 2px;
  591. color: #dfa974;
  592. font-weight: 500;
  593. background: transparent;
  594. width: 100%;
  595. height: 46px;
  596. margin-top: 30px;
  597. }
  598. .hero-slider {
  599. position: absolute;
  600. width: 100%;
  601. height: 100%;
  602. left: 0;
  603. top: 0;
  604. }
  605. .hero-slider.owl-carousel .owl-dots {
  606. position: absolute;
  607. left: 0;
  608. bottom: 23px;
  609. width: 100%;
  610. text-align: center;
  611. }
  612. .hero-slider.owl-carousel .owl-dots button {
  613. height: 6px;
  614. width: 6px;
  615. background: #ffffff;
  616. opacity: 0.5;
  617. border-radius: 50%;
  618. margin-right: 10px;
  619. -webkit-transition: all 0.3s;
  620. -o-transition: all 0.3s;
  621. transition: all 0.3s;
  622. }
  623. .hero-slider.owl-carousel .owl-dots button.active {
  624. width: 30px;
  625. border-radius: 50px;
  626. opacity: 1;
  627. }
  628. .hero-slider.owl-carousel .owl-dots button:last-child {
  629. margin-right: 0;
  630. }
  631. .hero-slider .owl-stage-outer, .hero-slider .owl-stage, .hero-slider .owl-item, .hero-slider .hs-item {
  632. height: 100%;
  633. }
  634. /*---------------------
  635. About US
  636. -----------------------*/
  637. .about-text {
  638. text-align: center;
  639. padding: 0 35px;
  640. }
  641. .about-text p {
  642. color: #595960;
  643. font-weight: 500;
  644. }
  645. .about-text p.f-para {
  646. margin-bottom: 10px;
  647. }
  648. .about-text p.s-para {
  649. margin-bottom: 35px;
  650. }
  651. .about-text .about-btn {
  652. color: #19191a;
  653. }
  654. .about-pic img {
  655. min-width: 100%;
  656. }
  657. /*---------------------
  658. Service Section
  659. -----------------------*/
  660. .services-section {
  661. padding-bottom: 60px;
  662. border-top: 1px solid #e5e5e5;
  663. }
  664. .services-section .section-title {
  665. margin-bottom: 36px;
  666. }
  667. .service-item {
  668. text-align: center;
  669. padding: 30px 35px 18px;
  670. -webkit-transition: all 0.3s;
  671. -o-transition: all 0.3s;
  672. transition: all 0.3s;
  673. }
  674. .service-item:hover {
  675. background: #dfa974;
  676. }
  677. .service-item:hover i {
  678. color: #ffffff;
  679. }
  680. .service-item:hover h4 {
  681. color: #ffffff;
  682. }
  683. .service-item:hover p {
  684. color: #ffffff;
  685. }
  686. .service-item i {
  687. display: inline-block;
  688. color: #dfa974;
  689. -webkit-transition: all 0.3s;
  690. -o-transition: all 0.3s;
  691. transition: all 0.3s;
  692. }
  693. .service-item h4 {
  694. color: #19191a;
  695. font-size: 22px;
  696. margin-bottom: 15px;
  697. margin-top: 10px;
  698. -webkit-transition: all 0.3s;
  699. -o-transition: all 0.3s;
  700. transition: all 0.3s;
  701. }
  702. .service-item p {
  703. color: #707079;
  704. -webkit-transition: all 0.3s;
  705. -o-transition: all 0.3s;
  706. transition: all 0.3s;
  707. }
  708. /*------------------------
  709. Home Page Room Section
  710. -------------------------*/
  711. .hp-room-items {
  712. margin-left: -15px;
  713. margin-right: -15px;
  714. overflow: hidden;
  715. }
  716. .hp-room-items .hp-room-item {
  717. height: 600px;
  718. margin-right: -15px;
  719. position: relative;
  720. overflow: hidden;
  721. }
  722. .hp-room-items .hp-room-item:hover .hr-text {
  723. bottom: 135px;
  724. }
  725. .hp-room-items .hp-room-item:hover .hr-text h2 {
  726. margin-bottom: 30px;
  727. }
  728. .hp-room-items .hp-room-item .hr-text {
  729. position: absolute;
  730. left: 45px;
  731. right: 25px;
  732. bottom: -250px;
  733. -webkit-transition: all 0.5s;
  734. -o-transition: all 0.5s;
  735. transition: all 0.5s;
  736. }
  737. .hp-room-items .hp-room-item .hr-text h3 {
  738. color: #ffffff;
  739. margin-bottom: 15px;
  740. }
  741. .hp-room-items .hp-room-item .hr-text h2 {
  742. color: #dfa974;
  743. font-weight: 700;
  744. margin-bottom: 50px;
  745. -webkit-transition: all 0.2s;
  746. -o-transition: all 0.2s;
  747. transition: all 0.2s;
  748. }
  749. .hp-room-items .hp-room-item .hr-text h2 span {
  750. font-family: "Cabin", sans-serif;
  751. font-size: 16px;
  752. font-weight: 400;
  753. color: #ffffff;
  754. }
  755. .hp-room-items .hp-room-item .hr-text table {
  756. margin-bottom: 30px;
  757. }
  758. .hp-room-items .hp-room-item .hr-text table tbody tr td {
  759. font-size: 16px;
  760. color: #ffffff;
  761. line-height: 36px;
  762. }
  763. .hp-room-items .hp-room-item .hr-text table tbody tr td.r-o {
  764. width: 120px;
  765. }
  766. .hp-room-items .hp-room-item .hr-text .primary-btn:after {
  767. background: #ffffff;
  768. }
  769. /*---------------------
  770. Testimonial Slider
  771. -----------------------*/
  772. .testimonial-section {
  773. background: #f9f9f9;
  774. }
  775. .testimonial-section .section-title {
  776. margin-bottom: 30px;
  777. }
  778. .testimonial-slider.owl-carousel .owl-item img {
  779. width: auto;
  780. margin: 0 auto;
  781. }
  782. .testimonial-slider.owl-carousel .owl-nav button {
  783. height: 44px;
  784. width: 44px;
  785. border: 1px solid #ebebeb;
  786. font-size: 24px;
  787. color: #707079;
  788. background: #ffffff;
  789. line-height: 48px;
  790. text-align: center;
  791. border-radius: 50%;
  792. position: absolute;
  793. left: -190px;
  794. top: 50%;
  795. -webkit-transform: translateY(-6px);
  796. -ms-transform: translateY(-6px);
  797. transform: translateY(-6px);
  798. -webkit-transition: all 0.3s;
  799. -o-transition: all 0.3s;
  800. transition: all 0.3s;
  801. }
  802. .testimonial-slider.owl-carousel .owl-nav button:hover {
  803. border-color: #19191a;
  804. color: #19191a;
  805. }
  806. .testimonial-slider.owl-carousel .owl-nav button.owl-next {
  807. left: auto;
  808. right: -190px;
  809. }
  810. .testimonial-slider .ts-item {
  811. text-align: center;
  812. }
  813. .testimonial-slider .ts-item p {
  814. font-size: 20px;
  815. color: #707079;
  816. line-height: 30px;
  817. margin-bottom: 50px;
  818. }
  819. .testimonial-slider .ts-item .ti-author {
  820. margin-bottom: 60px;
  821. }
  822. .testimonial-slider .ts-item .ti-author .rating {
  823. display: inline-block;
  824. }
  825. .testimonial-slider .ts-item .ti-author .rating i {
  826. color: #f5b917;
  827. font-size: 16px;
  828. }
  829. .testimonial-slider .ts-item .ti-author h5 {
  830. font-size: 20px;
  831. color: #19191a;
  832. display: inline-block;
  833. }
  834. /*---------------------
  835. Blog and Event
  836. -----------------------*/
  837. .blog-section {
  838. padding-bottom: 70px;
  839. }
  840. .blog-section .section-title {
  841. margin-bottom: 36px;
  842. }
  843. /*---------------------
  844. Footer Section
  845. -----------------------*/
  846. .footer-section {
  847. background: #222736;
  848. }
  849. .footer-section .footer-text {
  850. padding: 80px 0 30px;
  851. }
  852. .footer-section .footer-text .ft-about {
  853. margin-bottom: 30px;
  854. }
  855. .footer-section .footer-text .ft-about .logo {
  856. margin-bottom: 20px;
  857. }
  858. .footer-section .footer-text .ft-about .logo a {
  859. display: inline-block;
  860. }
  861. .footer-section .footer-text .ft-about p {
  862. color: #aaaab3;
  863. margin-bottom: 20px;
  864. }
  865. .footer-section .footer-text .ft-about .fa-social a {
  866. display: inline-block;
  867. height: 40px;
  868. width: 40px;
  869. font-size: 16px;
  870. line-height: 40px;
  871. text-align: center;
  872. color: #ffffff;
  873. border: 1px solid #5A4D48;
  874. border-radius: 50%;
  875. -webkit-transition: all 0.3s;
  876. -o-transition: all 0.3s;
  877. transition: all 0.3s;
  878. margin-right: 7px;
  879. }
  880. .footer-section .footer-text .ft-about .fa-social a:hover {
  881. background: #dfa974;
  882. border-color: #dfa974;
  883. }
  884. .footer-section .footer-text .ft-contact {
  885. margin-bottom: 30px;
  886. }
  887. .footer-section .footer-text .ft-contact h6 {
  888. font-size: 14px;
  889. color: #dfa974;
  890. text-transform: uppercase;
  891. font-weight: 700;
  892. letter-spacing: 3px;
  893. font-family: "Cabin", sans-serif;
  894. margin-bottom: 20px;
  895. }
  896. .footer-section .footer-text .ft-contact ul li {
  897. font-size: 16px;
  898. color: #aaaab3;
  899. line-height: 32px;
  900. list-style: none;
  901. }
  902. .footer-section .footer-text .ft-newslatter h6 {
  903. font-size: 14px;
  904. color: #dfa974;
  905. text-transform: uppercase;
  906. font-weight: 700;
  907. letter-spacing: 3px;
  908. font-family: "Cabin", sans-serif;
  909. margin-bottom: 20px;
  910. }
  911. .footer-section .footer-text .ft-newslatter p {
  912. color: #aaaab3;
  913. margin-bottom: 20px;
  914. }
  915. .footer-section .footer-text .ft-newslatter .fn-form {
  916. position: relative;
  917. }
  918. .footer-section .footer-text .ft-newslatter .fn-form input {
  919. width: 100%;
  920. height: 50px;
  921. border-radius: 2px;
  922. background: #393D4A;
  923. border: none;
  924. padding-left: 20px;
  925. font-size: 16px;
  926. color: #707079;
  927. }
  928. .footer-section .footer-text .ft-newslatter .fn-form button {
  929. position: absolute;
  930. right: 0;
  931. top: 0;
  932. font-size: 16px;
  933. background: #dfa974;
  934. color: #ffffff;
  935. padding: 0 16px;
  936. height: 50px;
  937. border: none;
  938. border-radius: 0 2px 2px 0;
  939. }
  940. .footer-section .copyright-option {
  941. background: rgba(16, 20, 31, 0.2);
  942. padding: 20px 0;
  943. }
  944. .footer-section .copyright-option ul li {
  945. list-style: none;
  946. display: inline-block;
  947. margin-right: 34px;
  948. }
  949. .footer-section .copyright-option ul li:last-child {
  950. margin-right: 0;
  951. }
  952. .footer-section .copyright-option ul li a {
  953. font-size: 16px;
  954. color: #aaaab3;
  955. }
  956. .footer-section .copyright-option .co-text {
  957. font-size: 16px;
  958. color: #707079;
  959. text-align: right;
  960. }
  961. /* --------------------------------- Other Pages Styles ----------------------------------- */
  962. /*---------------------
  963. Breadcrumb Section
  964. -----------------------*/
  965. .breadcrumb-section {
  966. padding-top: 70px;
  967. padding-bottom: 80px;
  968. }
  969. .breadcrumb-text {
  970. text-align: center;
  971. }
  972. .breadcrumb-text h2 {
  973. font-size: 44px;
  974. color: #19191a;
  975. margin-bottom: 12px;
  976. }
  977. .breadcrumb-text .bt-option a {
  978. display: inline-block;
  979. font-size: 18px;
  980. color: #19191a;
  981. margin-right: 20px;
  982. position: relative;
  983. font-weight: 500;
  984. }
  985. .breadcrumb-text .bt-option a:after {
  986. position: absolute;
  987. right: -13px;
  988. top: 1px;
  989. content: "";
  990. font-size: 18px;
  991. font-family: "FontAwesome";
  992. color: #aaaab3;
  993. }
  994. .breadcrumb-text .bt-option span {
  995. display: inline-block;
  996. font-size: 18px;
  997. color: #aaaab3;
  998. }
  999. /*------------------------
  1000. About Us Page Section
  1001. -------------------------*/
  1002. .aboutus-page-section {
  1003. padding-top: 0;
  1004. padding-bottom: 70px;
  1005. }
  1006. .about-page-text {
  1007. margin-bottom: 65px;
  1008. }
  1009. .about-page-text .ap-title {
  1010. margin-bottom: 30px;
  1011. }
  1012. .about-page-text .ap-title h2 {
  1013. font-size: 44px;
  1014. color: #19191a;
  1015. margin-bottom: 18px;
  1016. }
  1017. .about-page-text .ap-title p {
  1018. font-size: 18px;
  1019. color: #707079;
  1020. line-height: 28px;
  1021. }
  1022. .about-page-text .ap-services li {
  1023. list-style: none;
  1024. font-size: 20px;
  1025. color: #707079;
  1026. line-height: 42px;
  1027. }
  1028. .about-page-text .ap-services li i {
  1029. color: #dfa974;
  1030. margin-right: 5px;
  1031. }
  1032. .about-page-services .ap-service-item {
  1033. position: relative;
  1034. height: 420px;
  1035. border-radius: 5px;
  1036. margin-bottom: 30px;
  1037. }
  1038. .about-page-services .ap-service-item .api-text {
  1039. position: absolute;
  1040. left: 0;
  1041. bottom: 40px;
  1042. width: 100%;
  1043. text-align: center;
  1044. }
  1045. .about-page-services .ap-service-item .api-text h3 {
  1046. color: #ffffff;
  1047. }
  1048. /*---------------------
  1049. Video Section
  1050. -----------------------*/
  1051. .video-section {
  1052. height: 500px;
  1053. padding-top: 140px;
  1054. }
  1055. .video-section .video-text {
  1056. text-align: center;
  1057. }
  1058. .video-section .video-text h2 {
  1059. font-size: 48px;
  1060. color: #ffffff;
  1061. margin-bottom: 16px;
  1062. }
  1063. .video-section .video-text p {
  1064. font-size: 20px;
  1065. color: #ffffff;
  1066. margin-bottom: 40px;
  1067. }
  1068. .video-section .video-text .play-btn {
  1069. display: inline-block;
  1070. }
  1071. /*---------------------
  1072. Gallery Section
  1073. -----------------------*/
  1074. .gallery-section {
  1075. padding-bottom: 80px;
  1076. }
  1077. .gallery-section .section-title {
  1078. margin-bottom: 38px;
  1079. }
  1080. .gallery-item {
  1081. position: relative;
  1082. height: 279px;
  1083. margin-bottom: 20px;
  1084. border-radius: 5px;
  1085. position: relative;
  1086. z-index: 1;
  1087. }
  1088. .gallery-item:hover:after {
  1089. opacity: 1;
  1090. }
  1091. .gallery-item:hover .gi-text {
  1092. opacity: 1;
  1093. }
  1094. .gallery-item:after {
  1095. position: absolute;
  1096. left: 0;
  1097. top: 0;
  1098. width: 100%;
  1099. height: 100%;
  1100. background: rgba(25, 25, 26, 0.3);
  1101. content: "";
  1102. z-index: -1;
  1103. border-radius: 5px;
  1104. -webkit-transition: all 0.3s;
  1105. -o-transition: all 0.3s;
  1106. transition: all 0.3s;
  1107. opacity: 0;
  1108. }
  1109. .gallery-item.large-item {
  1110. height: 576px;
  1111. }
  1112. .gallery-item .gi-text {
  1113. display: -webkit-box;
  1114. display: -ms-flexbox;
  1115. display: flex;
  1116. -webkit-box-align: center;
  1117. -ms-flex-align: center;
  1118. align-items: center;
  1119. -webkit-box-pack: center;
  1120. -ms-flex-pack: center;
  1121. justify-content: center;
  1122. width: 100%;
  1123. height: 100%;
  1124. -webkit-transition: all 0.3s;
  1125. -o-transition: all 0.3s;
  1126. transition: all 0.3s;
  1127. opacity: 0;
  1128. }
  1129. .gallery-item .gi-text h3 {
  1130. color: #ffffff;
  1131. }
  1132. /*---------------------
  1133. Room Section
  1134. -----------------------*/
  1135. .rooms-section {
  1136. padding-top: 0;
  1137. padding-bottom: 80px;
  1138. }
  1139. .room-item {
  1140. margin-bottom: 30px;
  1141. }
  1142. .room-item img {
  1143. min-width: 100%;
  1144. }
  1145. .room-item .ri-text {
  1146. border: 1px solid #ebebeb;
  1147. border-top: none;
  1148. padding: 24px 24px 30px 28px;
  1149. }
  1150. .room-item .ri-text h4 {
  1151. color: #19191a;
  1152. margin-bottom: 17px;
  1153. }
  1154. .room-item .ri-text h3 {
  1155. color: #dfa974;
  1156. font-weight: 700;
  1157. margin-bottom: 14px;
  1158. }
  1159. .room-item .ri-text h3 span {
  1160. font-family: "Cabin", sans-serif;
  1161. font-size: 14px;
  1162. font-weight: 400;
  1163. color: #19191a;
  1164. }
  1165. .room-item .ri-text table {
  1166. margin-bottom: 18px;
  1167. }
  1168. .room-item .ri-text table tbody tr td {
  1169. font-size: 16px;
  1170. color: #707079;
  1171. line-height: 36px;
  1172. }
  1173. .room-item .ri-text table tbody tr td.r-o {
  1174. width: 125px;
  1175. }
  1176. .room-item .ri-text .primary-btn {
  1177. color: #19191a;
  1178. }
  1179. .room-pagination {
  1180. text-align: center;
  1181. padding-top: 20px;
  1182. }
  1183. .room-pagination a {
  1184. font-size: 16px;
  1185. color: #707079;
  1186. border: 1px solid #EFD4B9;
  1187. border-radius: 2px;
  1188. padding: 7px 13px 5px;
  1189. margin-right: 7px;
  1190. display: inline-block;
  1191. -webkit-transition: all 0.3s;
  1192. -o-transition: all 0.3s;
  1193. transition: all 0.3s;
  1194. }
  1195. .room-pagination a:last-child {
  1196. margin-right: 0;
  1197. }
  1198. .room-pagination a:hover {
  1199. background: #dfa974;
  1200. color: #ffffff;
  1201. }
  1202. /*-----------------------
  1203. Room Details Section
  1204. -------------------------*/
  1205. .room-details-section {
  1206. padding-top: 0;
  1207. padding-bottom: 80px;
  1208. }
  1209. .room-details-item {
  1210. margin-bottom: 50px;
  1211. }
  1212. .room-details-item img {
  1213. margin-bottom: 40px;
  1214. }
  1215. .room-details-item .rd-text .rd-title {
  1216. overflow: hidden;
  1217. margin-bottom: 8px;
  1218. }
  1219. .room-details-item .rd-text .rd-title h3 {
  1220. color: #19191a;
  1221. float: left;
  1222. }
  1223. .room-details-item .rd-text .rd-title .rdt-right {
  1224. float: right;
  1225. text-align: right;
  1226. }
  1227. .room-details-item .rd-text .rd-title .rdt-right .rating {
  1228. display: inline-block;
  1229. margin-right: 25px;
  1230. margin-bottom: 10px;
  1231. }
  1232. .room-details-item .rd-text .rd-title .rdt-right .rating i {
  1233. color: #f5b917;
  1234. }
  1235. .room-details-item .rd-text .rd-title .rdt-right a {
  1236. display: inline-block;
  1237. color: #ffffff;
  1238. font-size: 13px;
  1239. text-transform: uppercase;
  1240. font-weight: 700;
  1241. background: #dfa974;
  1242. padding: 14px 28px 13px;
  1243. }
  1244. .room-details-item .rd-text h2 {
  1245. color: #dfa974;
  1246. font-weight: 700;
  1247. margin-bottom: 25px;
  1248. }
  1249. .room-details-item .rd-text h2 span {
  1250. font-family: "Cabin", sans-serif;
  1251. font-size: 16px;
  1252. font-weight: 400;
  1253. color: #19191a;
  1254. }
  1255. .room-details-item .rd-text table {
  1256. margin-bottom: 32px;
  1257. }
  1258. .room-details-item .rd-text table tbody tr td {
  1259. font-size: 16px;
  1260. color: #19191a;
  1261. line-height: 36px;
  1262. }
  1263. .room-details-item .rd-text table tbody tr td.r-o {
  1264. width: 120px;
  1265. color: #707079;
  1266. }
  1267. .room-details-item .rd-text p {
  1268. color: #707079;
  1269. }
  1270. .room-details-item .rd-text p.f-para {
  1271. margin-bottom: 22px;
  1272. }
  1273. .rd-reviews {
  1274. padding-top: 55px;
  1275. border-top: 1px solid #e5e5e5;
  1276. margin-bottom: 50px;
  1277. }
  1278. .rd-reviews h4 {
  1279. color: #19191a;
  1280. letter-spacing: 1px;
  1281. margin-bottom: 45px;
  1282. }
  1283. .rd-reviews .review-item {
  1284. margin-bottom: 32px;
  1285. }
  1286. .rd-reviews .review-item .ri-pic {
  1287. float: left;
  1288. margin-right: 30px;
  1289. }
  1290. .rd-reviews .review-item .ri-pic img {
  1291. height: 70px;
  1292. width: 70px;
  1293. border-radius: 50%;
  1294. }
  1295. .rd-reviews .review-item .ri-text {
  1296. overflow: hidden;
  1297. position: relative;
  1298. padding-left: 30px;
  1299. }
  1300. .rd-reviews .review-item .ri-text:before {
  1301. position: absolute;
  1302. left: 0;
  1303. top: 0;
  1304. width: 1px;
  1305. height: 100%;
  1306. background: #e9e9e9;
  1307. content: "";
  1308. }
  1309. .rd-reviews .review-item .ri-text span {
  1310. font-size: 12px;
  1311. color: #dfa974;
  1312. text-transform: uppercase;
  1313. letter-spacing: 3px;
  1314. }
  1315. .rd-reviews .review-item .ri-text .rating {
  1316. position: absolute;
  1317. right: 0;
  1318. top: 0;
  1319. }
  1320. .rd-reviews .review-item .ri-text .rating i {
  1321. color: #f5b917;
  1322. }
  1323. .rd-reviews .review-item .ri-text h5 {
  1324. color: #19191a;
  1325. margin-top: 4px;
  1326. margin-bottom: 8px;
  1327. }
  1328. .rd-reviews .review-item .ri-text p {
  1329. color: #707079;
  1330. margin-bottom: 0;
  1331. }
  1332. .review-add h4 {
  1333. color: #19191a;
  1334. letter-spacing: 1px;
  1335. margin-bottom: 45px;
  1336. }
  1337. .review-add .ra-form input {
  1338. width: 100%;
  1339. height: 50px;
  1340. border: 1px solid #e5e5e5;
  1341. font-size: 16px;
  1342. color: #aaaab3;
  1343. padding-left: 20px;
  1344. margin-bottom: 25px;
  1345. }
  1346. .review-add .ra-form input::-webkit-input-placeholder {
  1347. color: #aaaab3;
  1348. }
  1349. .review-add .ra-form input::-moz-placeholder {
  1350. color: #aaaab3;
  1351. }
  1352. .review-add .ra-form input:-ms-input-placeholder {
  1353. color: #aaaab3;
  1354. }
  1355. .review-add .ra-form input::-ms-input-placeholder {
  1356. color: #aaaab3;
  1357. }
  1358. .review-add .ra-form input::placeholder {
  1359. color: #aaaab3;
  1360. }
  1361. .review-add .ra-form h5 {
  1362. font-size: 20px;
  1363. color: #19191a;
  1364. margin-bottom: 24px;
  1365. float: left;
  1366. margin-right: 10px;
  1367. }
  1368. .review-add .ra-form .rating {
  1369. padding-top: 3px;
  1370. display: inline-block;
  1371. }
  1372. .review-add .ra-form .rating i {
  1373. color: #f5b917;
  1374. font-size: 16px;
  1375. }
  1376. .review-add .ra-form textarea {
  1377. width: 100%;
  1378. height: 132px;
  1379. border: 1px solid #e5e5e5;
  1380. font-size: 16px;
  1381. color: #aaaab3;
  1382. padding-left: 20px;
  1383. padding-top: 12px;
  1384. margin-bottom: 24px;
  1385. resize: none;
  1386. }
  1387. .review-add .ra-form textarea::-webkit-input-placeholder {
  1388. color: #aaaab3;
  1389. }
  1390. .review-add .ra-form textarea::-moz-placeholder {
  1391. color: #aaaab3;
  1392. }
  1393. .review-add .ra-form textarea:-ms-input-placeholder {
  1394. color: #aaaab3;
  1395. }
  1396. .review-add .ra-form textarea::-ms-input-placeholder {
  1397. color: #aaaab3;
  1398. }
  1399. .review-add .ra-form textarea::placeholder {
  1400. color: #aaaab3;
  1401. }
  1402. .review-add .ra-form button {
  1403. font-size: 13px;
  1404. font-weight: 700;
  1405. text-transform: uppercase;
  1406. color: #ffffff;
  1407. letter-spacing: 2px;
  1408. background: #dfa974;
  1409. border: none;
  1410. padding: 14px 34px 13px;
  1411. display: inline-block;
  1412. }
  1413. .room-booking {
  1414. padding: 0 30px 0 40px;
  1415. }
  1416. .room-booking h3 {
  1417. color: #19191a;
  1418. margin-bottom: 30px;
  1419. }
  1420. .room-booking form .check-date {
  1421. position: relative;
  1422. margin-bottom: 15px;
  1423. }
  1424. .room-booking form .check-date label {
  1425. font-size: 14px;
  1426. color: #707079;
  1427. display: block;
  1428. margin-bottom: 10px;
  1429. }
  1430. .room-booking form .check-date input {
  1431. width: 100%;
  1432. height: 50px;
  1433. border: 1px solid #ebebeb;
  1434. border-radius: 2px;
  1435. font-size: 16px;
  1436. color: #19191a;
  1437. text-transform: uppercase;
  1438. font-weight: 500;
  1439. padding-left: 20px;
  1440. }
  1441. .room-booking form .check-date i {
  1442. color: #dfa974;
  1443. position: absolute;
  1444. right: 18px;
  1445. bottom: 17px;
  1446. }
  1447. .room-booking form .select-option {
  1448. margin-bottom: 15px;
  1449. }
  1450. .room-booking form .select-option label {
  1451. font-size: 14px;
  1452. color: #707079;
  1453. display: block;
  1454. margin-bottom: 10px;
  1455. }
  1456. .room-booking form .select-option .nice-select {
  1457. border-radius: 2px;
  1458. border: 1px solid #ebebeb;
  1459. height: 50px;
  1460. line-height: 50px;
  1461. outline: none;
  1462. padding-left: 20px;
  1463. width: 100%;
  1464. float: none;
  1465. }
  1466. .room-booking form .select-option .nice-select:after {
  1467. border-bottom: 2px solid #dfa974;
  1468. border-right: 2px solid #dfa974;
  1469. height: 10px;
  1470. margin-top: 0;
  1471. right: 20px;
  1472. width: 10px;
  1473. top: 36%;
  1474. }
  1475. .room-booking form .select-option .nice-select span {
  1476. font-size: 16px;
  1477. color: #19191a;
  1478. text-transform: uppercase;
  1479. font-weight: 500;
  1480. }
  1481. .room-booking form .select-option .nice-select .list {
  1482. margin-top: 0;
  1483. width: 100%;
  1484. }
  1485. .room-booking form button {
  1486. display: block;
  1487. font-size: 14px;
  1488. text-transform: uppercase;
  1489. border: 1px solid #dfa974;
  1490. border-radius: 2px;
  1491. color: #dfa974;
  1492. font-weight: 500;
  1493. background: transparent;
  1494. width: 100%;
  1495. height: 46px;
  1496. margin-top: 30px;
  1497. }
  1498. /*---------------------
  1499. Blog Section
  1500. -----------------------*/
  1501. .blog-section.blog-page {
  1502. padding-top: 0;
  1503. padding-bottom: 88px;
  1504. }
  1505. .blog-item {
  1506. height: 450px;
  1507. position: relative;
  1508. margin-bottom: 30px;
  1509. border-radius: 5px;
  1510. }
  1511. .blog-item.small-size {
  1512. height: 400px;
  1513. }
  1514. .blog-item .bi-text {
  1515. position: absolute;
  1516. left: 0;
  1517. bottom: 25px;
  1518. width: 100%;
  1519. padding-left: 30px;
  1520. padding-right: 30px;
  1521. }
  1522. .blog-item .bi-text .b-tag {
  1523. display: inline-block;
  1524. color: #ffffff;
  1525. font-size: 12px;
  1526. text-transform: uppercase;
  1527. letter-spacing: 1px;
  1528. background: #dfa974;
  1529. padding: 3px 10px;
  1530. border-radius: 2px;
  1531. }
  1532. .blog-item .bi-text h4 {
  1533. margin-top: 18px;
  1534. margin-bottom: 18px;
  1535. }
  1536. .blog-item .bi-text h4 a {
  1537. color: #ffffff;
  1538. }
  1539. .blog-item .bi-text .b-time {
  1540. font-size: 12px;
  1541. color: #ffffff;
  1542. text-transform: uppercase;
  1543. letter-spacing: 3px;
  1544. }
  1545. .load-more {
  1546. text-align: center;
  1547. padding-top: 30px;
  1548. }
  1549. .load-more .primary-btn {
  1550. color: #19191a;
  1551. }
  1552. /*----------------------------
  1553. Blog Details Hero Section
  1554. ----------------------------*/
  1555. .blog-details-hero {
  1556. height: 530px;
  1557. padding-top: 165px;
  1558. }
  1559. .bd-hero-text {
  1560. text-align: center;
  1561. }
  1562. .bd-hero-text span {
  1563. font-size: 12px;
  1564. color: #ffffff;
  1565. background: #dfa974;
  1566. font-weight: 500;
  1567. text-transform: uppercase;
  1568. letter-spacing: 1px;
  1569. display: inline-block;
  1570. padding: 4px 16px;
  1571. border-radius: 2px;
  1572. }
  1573. .bd-hero-text h2 {
  1574. font-size: 44px;
  1575. color: #ffffff;
  1576. line-height: 54px;
  1577. margin-top: 30px;
  1578. margin-bottom: 12px;
  1579. }
  1580. .bd-hero-text ul li {
  1581. list-style: none;
  1582. font-size: 14px;
  1583. color: #dfa974;
  1584. margin-right: 35px;
  1585. display: inline-block;
  1586. }
  1587. .bd-hero-text ul li:last-child {
  1588. margin-right: 0;
  1589. }
  1590. .bd-hero-text ul li.b-time {
  1591. text-transform: uppercase;
  1592. }
  1593. /*---------------------
  1594. Blog Details Section
  1595. -----------------------*/
  1596. .blog-details-section {
  1597. padding-top: 55px;
  1598. }
  1599. .blog-details-text .bd-title {
  1600. margin-bottom: 52px;
  1601. }
  1602. .blog-details-text .bd-title p {
  1603. font-size: 18px;
  1604. color: #707079;
  1605. line-height: 30px;
  1606. }
  1607. .blog-details-text .bd-pic {
  1608. overflow: hidden;
  1609. margin-bottom: 35px;
  1610. }
  1611. .blog-details-text .bd-pic .bp-item {
  1612. width: calc(33.33% - 10px);
  1613. float: left;
  1614. margin-right: 15px;
  1615. }
  1616. .blog-details-text .bd-pic .bp-item:last-child {
  1617. margin-right: 0;
  1618. }
  1619. .blog-details-text .bd-pic .bp-item img {
  1620. min-width: 100%;
  1621. }
  1622. .blog-details-text .bd-more-text {
  1623. margin-bottom: 50px;
  1624. }
  1625. .blog-details-text .bd-more-text .bm-item {
  1626. margin-bottom: 30px;
  1627. }
  1628. .blog-details-text .bd-more-text .bm-item h4 {
  1629. color: #19191a;
  1630. margin-bottom: 20px;
  1631. }
  1632. .blog-details-text .bd-more-text .bm-item p {
  1633. font-size: 18px;
  1634. color: #707079;
  1635. line-height: 30px;
  1636. }
  1637. .blog-details-text .tag-share {
  1638. overflow: hidden;
  1639. border-top: 1px solid #ebebeb;
  1640. padding-top: 30px;
  1641. margin-bottom: 75px;
  1642. }
  1643. .blog-details-text .tag-share .tags {
  1644. float: left;
  1645. }
  1646. .blog-details-text .tag-share .tags a {
  1647. font-size: 12px;
  1648. color: #707079;
  1649. background: #ebebeb;
  1650. font-weight: 500;
  1651. text-transform: uppercase;
  1652. letter-spacing: 1px;
  1653. display: inline-block;
  1654. padding: 4px 16px;
  1655. border-radius: 2px;
  1656. -webkit-transition: all 0.3s;
  1657. -o-transition: all 0.3s;
  1658. transition: all 0.3s;
  1659. margin-right: 6px;
  1660. }
  1661. .blog-details-text .tag-share .tags a:hover {
  1662. color: #ffffff;
  1663. background: #dfa974;
  1664. }
  1665. .blog-details-text .tag-share .social-share {
  1666. float: right;
  1667. }
  1668. .blog-details-text .tag-share .social-share span {
  1669. display: inline-block;
  1670. font-size: 18px;
  1671. color: #707079;
  1672. }
  1673. .blog-details-text .tag-share .social-share a {
  1674. display: inline-block;
  1675. font-size: 16px;
  1676. color: #707079;
  1677. margin-left: 30px;
  1678. }
  1679. .blog-details-text .comment-option {
  1680. margin-bottom: 75px;
  1681. }
  1682. .blog-details-text .comment-option h4 {
  1683. color: #19191a;
  1684. margin-bottom: 35px;
  1685. }
  1686. .blog-details-text .comment-option .single-comment-item {
  1687. margin-bottom: 30px;
  1688. }
  1689. .blog-details-text .comment-option .single-comment-item.first-comment .sc-text {
  1690. padding-left: 22px;
  1691. }
  1692. .blog-details-text .comment-option .single-comment-item.first-comment .sc-text:before {
  1693. position: absolute;
  1694. left: 0;
  1695. top: 0;
  1696. width: 1px;
  1697. height: 255px;
  1698. background: #ebebeb;
  1699. content: "";
  1700. }
  1701. .blog-details-text .comment-option .single-comment-item.reply-comment {
  1702. padding-left: 120px;
  1703. margin-bottom: 52px;
  1704. }
  1705. .blog-details-text .comment-option .single-comment-item.second-comment .sc-text {
  1706. padding-left: 22px;
  1707. }
  1708. .blog-details-text .comment-option .single-comment-item.second-comment .sc-text:before {
  1709. position: absolute;
  1710. left: 0;
  1711. top: 0;
  1712. width: 1px;
  1713. height: 100px;
  1714. background: #ebebeb;
  1715. content: "";
  1716. }
  1717. .blog-details-text .comment-option .single-comment-item .sc-author {
  1718. float: left;
  1719. margin-right: 28px;
  1720. }
  1721. .blog-details-text .comment-option .single-comment-item .sc-author img {
  1722. height: 70px;
  1723. width: 70px;
  1724. border-radius: 50%;
  1725. }
  1726. .blog-details-text .comment-option .single-comment-item .sc-text {
  1727. display: table;
  1728. position: relative;
  1729. }
  1730. .blog-details-text .comment-option .single-comment-item .sc-text span {
  1731. font-size: 12px;
  1732. color: #dfa974;
  1733. text-transform: uppercase;
  1734. letter-spacing: 2px;
  1735. }
  1736. .blog-details-text .comment-option .single-comment-item .sc-text h5 {
  1737. font-size: 20px;
  1738. color: #19191a;
  1739. margin-top: 4px;
  1740. margin-bottom: 8px;
  1741. }
  1742. .blog-details-text .comment-option .single-comment-item .sc-text p {
  1743. color: #707079;
  1744. margin-bottom: 18px;
  1745. }
  1746. .blog-details-text .comment-option .single-comment-item .sc-text a {
  1747. display: inline-block;
  1748. color: #19191a;
  1749. font-size: 14px;
  1750. font-weight: 700;
  1751. text-transform: uppercase;
  1752. letter-spacing: 1px;
  1753. padding: 5px 24px;
  1754. border: 1px solid #F9EEE3;
  1755. border-radius: 50px;
  1756. -webkit-transition: all 0.3s;
  1757. -o-transition: all 0.3s;
  1758. transition: all 0.3s;
  1759. margin-right: 10px;
  1760. }
  1761. .blog-details-text .comment-option .single-comment-item .sc-text a:hover {
  1762. background: #dfa974;
  1763. color: #ffffff;
  1764. border-color: #dfa974;
  1765. }
  1766. .blog-details-text .leave-comment h4 {
  1767. color: #19191a;
  1768. margin-bottom: 35px;
  1769. }
  1770. .blog-details-text .leave-comment .comment-form input {
  1771. width: 100%;
  1772. height: 50px;
  1773. color: #707079;
  1774. font-size: 16px;
  1775. padding-left: 20px;
  1776. border: 1px solid #e5e5e5;
  1777. border-radius: 2px;
  1778. margin-bottom: 20px;
  1779. -webkit-transition: all 0.3s;
  1780. -o-transition: all 0.3s;
  1781. transition: all 0.3s;
  1782. }
  1783. .blog-details-text .leave-comment .comment-form input:focus {
  1784. border-color: #dfa974;
  1785. }
  1786. .blog-details-text .leave-comment .comment-form textarea {
  1787. width: 100%;
  1788. height: 116px;
  1789. color: #707079;
  1790. font-size: 16px;
  1791. padding-left: 20px;
  1792. border: 1px solid #e5e5e5;
  1793. border-radius: 2px;
  1794. -webkit-transition: all 0.3s;
  1795. -o-transition: all 0.3s;
  1796. transition: all 0.3s;
  1797. margin-bottom: 42px;
  1798. resize: none;
  1799. padding-top: 12px;
  1800. }
  1801. .blog-details-text .leave-comment .comment-form textarea:focus {
  1802. border-color: #dfa974;
  1803. }
  1804. .blog-details-text .leave-comment .comment-form button {
  1805. font-size: 13px;
  1806. font-weight: 700;
  1807. text-transform: uppercase;
  1808. color: #ffffff;
  1809. letter-spacing: 2px;
  1810. background: #dfa974;
  1811. border: none;
  1812. padding: 14px 42px 13px;
  1813. display: inline-block;
  1814. border-radius: 2px;
  1815. }
  1816. /*---------------------
  1817. Recommend Blog
  1818. -----------------------*/
  1819. .recommend-blog-section {
  1820. padding-top: 65px;
  1821. padding-bottom: 50px;
  1822. }
  1823. .recommend-blog-section .section-title {
  1824. margin-bottom: 37px;
  1825. }
  1826. .recommend-blog-section .section-title h2 {
  1827. margin-top: 0;
  1828. }
  1829. /*---------------------
  1830. Contact Section
  1831. -----------------------*/
  1832. .contact-section {
  1833. padding-top: 80px;
  1834. padding-bottom: 80px;
  1835. }
  1836. .contact-text h2 {
  1837. font-size: 44px;
  1838. color: #19191a;
  1839. margin-bottom: 24px;
  1840. }
  1841. .contact-text p {
  1842. color: #707079;
  1843. }
  1844. .contact-text table tbody tr td {
  1845. font-size: 16px;
  1846. color: #19191a;
  1847. line-height: 36px;
  1848. font-weight: 500;
  1849. }
  1850. .contact-text table tbody tr td.c-o {
  1851. color: #707079;
  1852. width: 75px;
  1853. }
  1854. .contact-form input {
  1855. width: 100%;
  1856. height: 50px;
  1857. border: 1px solid #e1e1e1;
  1858. font-size: 16px;
  1859. color: #aaaab3;
  1860. padding-left: 25px;
  1861. margin-bottom: 28px;
  1862. }
  1863. .contact-form input::-webkit-input-placeholder {
  1864. color: #aaaab3;
  1865. }
  1866. .contact-form input::-moz-placeholder {
  1867. color: #aaaab3;
  1868. }
  1869. .contact-form input:-ms-input-placeholder {
  1870. color: #aaaab3;
  1871. }
  1872. .contact-form input::-ms-input-placeholder {
  1873. color: #aaaab3;
  1874. }
  1875. .contact-form input::placeholder {
  1876. color: #aaaab3;
  1877. }
  1878. .contact-form textarea {
  1879. width: 100%;
  1880. height: 150px;
  1881. border: 1px solid #e1e1e1;
  1882. font-size: 16px;
  1883. color: #aaaab3;
  1884. padding-left: 25px;
  1885. padding-top: 12px;
  1886. margin-bottom: 33px;
  1887. resize: none;
  1888. }
  1889. .contact-form textarea::-webkit-input-placeholder {
  1890. color: #aaaab3;
  1891. }
  1892. .contact-form textarea::-moz-placeholder {
  1893. color: #aaaab3;
  1894. }
  1895. .contact-form textarea:-ms-input-placeholder {
  1896. color: #aaaab3;
  1897. }
  1898. .contact-form textarea::-ms-input-placeholder {
  1899. color: #aaaab3;
  1900. }
  1901. .contact-form textarea::placeholder {
  1902. color: #aaaab3;
  1903. }
  1904. .contact-form button {
  1905. font-size: 13px;
  1906. font-weight: 700;
  1907. text-transform: uppercase;
  1908. color: #ffffff;
  1909. letter-spacing: 2px;
  1910. background: #dfa974;
  1911. border: none;
  1912. padding: 14px 34px 13px;
  1913. display: inline-block;
  1914. }
  1915. .map {
  1916. height: 470px;
  1917. -webkit-box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.15);
  1918. box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.15);
  1919. margin-top: 75px;
  1920. }
  1921. .map iframe {
  1922. width: 100%;
  1923. }
  1924. /*-------------------------------- Respinsive Media Styles --------------------------------*/
  1925. @media only screen and (min-width: 1554px) and (max-width: 1920px) {
  1926. .hp-room-items .hp-room-item .hr-text {
  1927. bottom: -200px;
  1928. }
  1929. }
  1930. @media only screen and (min-width: 1200px) and (max-width: 1250px) {
  1931. .hp-room-items .hp-room-item .hr-text {
  1932. bottom: -288px;
  1933. }
  1934. }
  1935. @media only screen and (min-width: 1200px) {
  1936. .container {
  1937. max-width: 1170px;
  1938. }
  1939. }
  1940. /* Medium Device: 1200px */
  1941. @media only screen and (min-width: 992px) and (max-width: 1199px) {
  1942. .testimonial-slider.owl-carousel .owl-nav button {
  1943. left: -150px;
  1944. }
  1945. .testimonial-slider.owl-carousel .owl-nav button.owl-next {
  1946. right: -150px;
  1947. }
  1948. .hp-room-items .hp-room-item .hr-text {
  1949. bottom: -322px;
  1950. }
  1951. .hp-room-items .hp-room-item:hover .hr-text {
  1952. bottom: 80px;
  1953. }
  1954. }
  1955. @media only screen and (max-width: 991px) {
  1956. .top-nav {
  1957. display: none;
  1958. }
  1959. .menu-item .nav-menu {
  1960. display: none;
  1961. }
  1962. .offcanvas-menu-overlay {
  1963. position: fixed;
  1964. left: 0;
  1965. top: 0;
  1966. background: rgba(0, 0, 0, 0.7);
  1967. z-index: 98;
  1968. height: 100%;
  1969. width: 100%;
  1970. visibility: hidden;
  1971. -webkit-transition: 0.3s;
  1972. -o-transition: 0.3s;
  1973. transition: 0.3s;
  1974. }
  1975. .offcanvas-menu-overlay.active {
  1976. visibility: visible;
  1977. }
  1978. .canvas-open {
  1979. position: absolute;
  1980. right: 40px;
  1981. top: 25px;
  1982. font-size: 22px;
  1983. width: 30px;
  1984. height: 30px;
  1985. color: #19191a;
  1986. border: 1px solid #19191a;
  1987. border-radius: 2px;
  1988. line-height: 33px;
  1989. text-align: center;
  1990. z-index: 100;
  1991. display: block;
  1992. cursor: pointer;
  1993. }
  1994. .offcanvas-menu-wrapper {
  1995. position: fixed;
  1996. left: -300px;
  1997. top: 0;
  1998. width: 300px;
  1999. z-index: 999;
  2000. background: #ffffff;
  2001. text-align: center;
  2002. overflow-y: auto;
  2003. height: 100%;
  2004. opacity: 0;
  2005. visibility: hidden;
  2006. -webkit-transition: all 0.5s;
  2007. -o-transition: all 0.5s;
  2008. transition: all 0.5s;
  2009. padding: 80px 30px 30px 30px;
  2010. display: block;
  2011. }
  2012. .offcanvas-menu-wrapper .canvas-close {
  2013. height: 30px;
  2014. width: 30px;
  2015. border: 1px solid #19191a;
  2016. border-radius: 50%;
  2017. text-align: center;
  2018. line-height: 30px;
  2019. cursor: pointer;
  2020. position: absolute;
  2021. right: 30px;
  2022. top: 30px;
  2023. padding-right: 1px;
  2024. }
  2025. .offcanvas-menu-wrapper .search-icon {
  2026. color: #19191a;
  2027. text-align: center;
  2028. cursor: pointer;
  2029. margin-bottom: 10px;
  2030. }
  2031. .offcanvas-menu-wrapper .header-configure-area {
  2032. margin-bottom: 30px;
  2033. }
  2034. .offcanvas-menu-wrapper .header-configure-area .language-option {
  2035. display: inline-block;
  2036. cursor: pointer;
  2037. padding: 13px 0;
  2038. position: relative;
  2039. margin-bottom: 10px;
  2040. }
  2041. .offcanvas-menu-wrapper .header-configure-area .language-option:hover .flag-dropdown {
  2042. top: 40px;
  2043. opacity: 1;
  2044. visibility: visible;
  2045. }
  2046. .offcanvas-menu-wrapper .header-configure-area .language-option img {
  2047. height: 26px;
  2048. width: 26px;
  2049. border-radius: 50%;
  2050. margin-right: 10px;
  2051. }
  2052. .offcanvas-menu-wrapper .header-configure-area .language-option span {
  2053. font-size: 16px;
  2054. color: #19191a;
  2055. text-transform: uppercase;
  2056. font-weight: 500;
  2057. }
  2058. .offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown {
  2059. position: absolute;
  2060. left: 0;
  2061. top: 60px;
  2062. width: 100px;
  2063. background: #ffffff;
  2064. display: block;
  2065. padding: 10px 15px;
  2066. -webkit-box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
  2067. box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
  2068. opacity: 0;
  2069. visibility: hidden;
  2070. -webkit-transition: all 0.3s;
  2071. -o-transition: all 0.3s;
  2072. transition: all 0.3s;
  2073. z-index: 99;
  2074. }
  2075. .offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li {
  2076. list-style: none;
  2077. text-align: left;
  2078. }
  2079. .offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li a {
  2080. font-size: 14px;
  2081. text-transform: uppercase;
  2082. font-weight: 500;
  2083. color: #19191a;
  2084. -webkit-transition: all 0.3s;
  2085. -o-transition: all 0.3s;
  2086. transition: all 0.3s;
  2087. }
  2088. .offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li a:hover {
  2089. color: #dfa974;
  2090. }
  2091. .offcanvas-menu-wrapper .header-configure-area .bk-btn {
  2092. display: inline-block;
  2093. font-size: 13px;
  2094. font-weight: 700;
  2095. padding: 16px 28px 15px;
  2096. background: #dfa974;
  2097. color: #ffffff;
  2098. text-transform: uppercase;
  2099. letter-spacing: 2px;
  2100. }
  2101. .offcanvas-menu-wrapper .mainmenu {
  2102. display: none;
  2103. }
  2104. .offcanvas-menu-wrapper .slicknav_menu {
  2105. background: transparent;
  2106. padding: 0;
  2107. }
  2108. .offcanvas-menu-wrapper .slicknav_menu .slicknav_btn {
  2109. float: none;
  2110. margin: 0 0 10px 0;
  2111. display: none;
  2112. }
  2113. .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav {
  2114. display: block !important;
  2115. }
  2116. .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul {
  2117. margin: 0;
  2118. text-align: left;
  2119. }
  2120. .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li .dropdown {
  2121. padding-left: 20px;
  2122. }
  2123. .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li a {
  2124. margin: 0;
  2125. padding: 10px;
  2126. font-weight: 600;
  2127. font-size: 14px;
  2128. color: #19191a;
  2129. border-bottom: 1px solid #e5e5e5;
  2130. -webkit-transition: all 0.3s;
  2131. -o-transition: all 0.3s;
  2132. transition: all 0.3s;
  2133. }
  2134. .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li a:hover {
  2135. border-radius: 0;
  2136. background: transparent;
  2137. color: #dfa974;
  2138. }
  2139. .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row a {
  2140. border-bottom: 0;
  2141. padding-left: 0;
  2142. -webkit-transition: all 0.3s;
  2143. -o-transition: all 0.3s;
  2144. transition: all 0.3s;
  2145. }
  2146. .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row span {
  2147. color: #19191a;
  2148. -webkit-transition: all 0.3s;
  2149. -o-transition: all 0.3s;
  2150. transition: all 0.3s;
  2151. }
  2152. .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row:hover a {
  2153. color: #dfa974;
  2154. }
  2155. .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row:hover span {
  2156. color: #dfa974;
  2157. }
  2158. .offcanvas-menu-wrapper .top-social {
  2159. display: inline-block;
  2160. margin-top: 30px;
  2161. margin-bottom: 20px;
  2162. }
  2163. .offcanvas-menu-wrapper .top-social a {
  2164. display: inline-block;
  2165. font-size: 16px;
  2166. color: #19191a;
  2167. margin-right: 20px;
  2168. }
  2169. .offcanvas-menu-wrapper .top-social a:last-child {
  2170. margin-right: 0;
  2171. }
  2172. .offcanvas-menu-wrapper .top-widget li {
  2173. list-style: none;
  2174. font-size: 16px;
  2175. color: #19191a;
  2176. font-weight: 500;
  2177. line-height: 28px;
  2178. }
  2179. .offcanvas-menu-wrapper .top-widget li i {
  2180. color: #dfa974;
  2181. margin-right: 4px;
  2182. }
  2183. .offcanvas-menu-wrapper.show-offcanvas-menu-wrapper {
  2184. left: 0;
  2185. opacity: 1;
  2186. visibility: visible;
  2187. }
  2188. .about-text {
  2189. margin-bottom: 30px;
  2190. }
  2191. .footer-section .copyright-option ul {
  2192. text-align: center;
  2193. margin-bottom: 10px;
  2194. }
  2195. .footer-section .copyright-option .co-text {
  2196. text-align: center;
  2197. }
  2198. .about-pic img {
  2199. margin-bottom: 20px;
  2200. }
  2201. .room-booking {
  2202. padding: 0;
  2203. margin-top: 40px;
  2204. }
  2205. .contact-form {
  2206. padding-top: 30px;
  2207. }
  2208. .hero-text {
  2209. margin-bottom: 40px;
  2210. }
  2211. }
  2212. /* Tablet Device: 768px */
  2213. @media only screen and (min-width: 768px) and (max-width: 991px) {
  2214. .testimonial-slider.owl-carousel .owl-nav button {
  2215. left: -30px;
  2216. }
  2217. .testimonial-slider.owl-carousel .owl-nav button.owl-next {
  2218. right: -30px;
  2219. }
  2220. .hp-room-items {
  2221. margin: 0;
  2222. }
  2223. .hp-room-item {
  2224. margin-bottom: 15px;
  2225. }
  2226. }
  2227. /* Large Mobile: 480px */
  2228. @media only screen and (max-width: 767px) {
  2229. .testimonial-slider.owl-carousel .owl-nav {
  2230. display: none;
  2231. }
  2232. .room-details-item .rd-text .rd-title {
  2233. margin-bottom: 25px;
  2234. }
  2235. .room-details-item .rd-text .rd-title h3 {
  2236. float: none;
  2237. margin-bottom: 30px;
  2238. }
  2239. .room-details-item .rd-text .rd-title .rdt-right {
  2240. float: none;
  2241. text-align: left;
  2242. }
  2243. .footer-section .copyright-option ul li {
  2244. margin-right: 25px;
  2245. }
  2246. .blog-details-text .tag-share .tags {
  2247. float: none;
  2248. margin-bottom: 20px;
  2249. }
  2250. .blog-details-text .tag-share .social-share {
  2251. float: none;
  2252. }
  2253. .about-text .section-title h2 {
  2254. font-size: 30px;
  2255. line-height: 40px;
  2256. }
  2257. .hp-room-items {
  2258. margin: 0 -5px;
  2259. }
  2260. .hp-room-item {
  2261. margin-bottom: 10px;
  2262. }
  2263. }
  2264. /* Small Mobile: 320px */
  2265. @media only screen and (max-width: 479px) {
  2266. .footer-section .copyright-option ul li {
  2267. margin-bottom: 5px;
  2268. }
  2269. .video-section {
  2270. padding-top: 80px;
  2271. }
  2272. .rd-reviews .review-item .ri-pic, .blog-details-text .comment-option .single-comment-item .sc-author {
  2273. float: none;
  2274. margin-bottom: 30px;
  2275. }
  2276. .rd-reviews .review-item .ri-text .rating {
  2277. position: relative;
  2278. }
  2279. .rd-reviews .review-item .ri-text, .blog-details-text .comment-option .single-comment-item.second-comment .sc-text, .blog-details-text .comment-option .single-comment-item.first-comment .sc-text {
  2280. padding-left: 0;
  2281. }
  2282. .blog-details-text .comment-option .single-comment-item.reply-comment {
  2283. padding-left: 30px;
  2284. }
  2285. .rd-reviews .review-item .ri-text:before, .blog-details-text .comment-option .single-comment-item.first-comment .sc-text:before, .blog-details-text .comment-option .single-comment-item.second-comment .sc-text:before {
  2286. display: none;
  2287. }
  2288. .blog-details-hero {
  2289. padding-top: 70px;
  2290. }
  2291. .blog-details-text .bd-pic .bp-item {
  2292. width: 100%;
  2293. float: none;
  2294. margin-right: 0;
  2295. margin-bottom: 10px;
  2296. }
  2297. .blog-details-text .tag-share .tags a {
  2298. margin-bottom: 6px;
  2299. }
  2300. .blog-details-text .comment-option .single-comment-item .sc-text a {
  2301. margin-bottom: 10px;
  2302. }
  2303. }