You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

newStyle.css 24KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520
  1. /*--------------------------------------------------------------
  2. # General
  3. --------------------------------------------------------------*/
  4. @font-face {
  5. font-family: "Playlist-Script";
  6. src: url("../webfonts/Playlist-Script.ttf.woff") format("woff"),
  7. url("../webfonts/Playlist-Script.ttf.svg#Playlist-Script") format("svg"),
  8. url("../webfonts/Playlist-Script.ttf.eot"),
  9. url("../webfonts/Playlist-Script.ttf.eot?#iefix")
  10. format("embedded-opentype");
  11. font-weight: normal;
  12. font-style: normal;
  13. }
  14. @import url("https://fonts.googleapis.com/css?family=Muli&display=swap");
  15. body {
  16. color: #444;
  17. font-family: "Muli";
  18. }
  19. #main {
  20. color: rgb(68, 68, 68);
  21. display: block;
  22. font-family: "Muli";
  23. font-size: 16px;
  24. text-align: left;
  25. background-color: white;
  26. line-height: 24px;
  27. height: 100%;
  28. }
  29. p {
  30. color: #444;
  31. font-family: "Muli";
  32. font-size: 16px;
  33. }
  34. a {
  35. color: #1b75bb;
  36. transition: 0.5s;
  37. font-family: "Muli";
  38. }
  39. a:hover,
  40. a:active,
  41. a:focus {
  42. color: #1b75bb;
  43. outline: none;
  44. text-decoration: none;
  45. }
  46. p {
  47. padding: 0;
  48. margin: 0 0 20px 0;
  49. text-align: center;
  50. }
  51. h1 {
  52. font-family: "Playlist-Script";
  53. color: #1b75bb;
  54. margin: 0 0 20px 0;
  55. padding: 0;
  56. font-weight: 500;
  57. }
  58. h2 {
  59. font-family: "Playlist-Script";
  60. color: #444;
  61. margin: 0 0 20px 0;
  62. padding: 0;
  63. font-weight: 500;
  64. }
  65. h3 {
  66. font-family: "Muli";
  67. color: #1b75bb;
  68. text-align: center;
  69. font-size: 32px;
  70. margin: 0 0 20px 0;
  71. padding: 0;
  72. text-align: center;
  73. font-weight: 500;
  74. }
  75. /* Back to top button */
  76. .back-to-top {
  77. position: fixed;
  78. display: none;
  79. background: #1b75bb;
  80. color: #fff;
  81. padding: 6px 12px 9px 12px;
  82. font-size: 16px;
  83. border-radius: 2px;
  84. right: 15px;
  85. bottom: 15px;
  86. transition: background 0.5s;
  87. }
  88. .back-to-top:focus {
  89. background: #1b75bb;
  90. color: #fff;
  91. outline: none;
  92. }
  93. .back-to-top:hover {
  94. background: #0c2e8a;
  95. color: #fff;
  96. }
  97. /*--------------------------------------------------------------
  98. # Header
  99. --------------------------------------------------------------*/
  100. #topbar {
  101. background: #fff;
  102. padding: 10px 0;
  103. font-size: 14px;
  104. }
  105. #topbar .contact-info a {
  106. line-height: 1;
  107. color: #1b75bb;
  108. }
  109. #topbar .contact-info a:hover {
  110. color: #1b75bb;
  111. }
  112. #topbar .contact-info i {
  113. color: #1b75bb;
  114. padding: 4px;
  115. }
  116. #topbar .contact-info .fa-phone {
  117. padding-left: 20px;
  118. border-left: 1px solid #1b75bb;
  119. }
  120. #topbar .social-links a {
  121. color: #1b75bb;
  122. padding: 4px 20px;
  123. display: inline-block;
  124. line-height: 1px;
  125. border-right: 1px solid #1b75bb;
  126. }
  127. #topbar .social-links a:hover {
  128. color: #1b75bb;
  129. }
  130. #topbar .social-links a:first-child {
  131. border-left: 1px solid #1b75bb;
  132. }
  133. #header {
  134. min-height: 120px;
  135. transition: all 0.5s;
  136. z-index: 997;
  137. background: #fff;
  138. box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
  139. }
  140. #header #logo h1 {
  141. font-size: 42px;
  142. margin: 0;
  143. padding: 0;
  144. line-height: 1;
  145. font-family: "Muli";
  146. font-weight: 700;
  147. }
  148. #header #logo h1 a {
  149. color: #0c2e8a;
  150. line-height: 1;
  151. display: inline-block;
  152. }
  153. #header #logo h1 a span {
  154. color: #1b75bb;
  155. }
  156. #header #logo img {
  157. height: 100px;
  158. padding: 0;
  159. margin: 0;
  160. }
  161. /*--------------------------------------------------------------
  162. # Calculator Modal
  163. --------------------------------------------------------------*/
  164. .modal-dialog {
  165. position: fixed;
  166. margin: auto;
  167. width: 320px;
  168. right: 0px;
  169. height: 100%;
  170. }
  171. .modal-content {
  172. height: 100%;
  173. overflow-y: auto;
  174. }
  175. .modal-body {
  176. padding: 15px 30px;
  177. }
  178. /*--------------------------------------------------------------
  179. # Intro Section
  180. --------------------------------------------------------------*/
  181. #intro {
  182. width: 100%;
  183. position: relative;
  184. background-size: cover;
  185. }
  186. #intro .intro-content {
  187. position: absolute;
  188. margin-top: 6%;
  189. margin-left: -15px;
  190. z-index: 10;
  191. display: inline-block;
  192. padding: 30px;
  193. border-radius: 2px;
  194. transition: 0.5s;
  195. background-color: rgba(255, 255, 255, 0.6);
  196. text-align: left;
  197. width: 100%;
  198. }
  199. #intro .intro-content h2 {
  200. padding-top: 30px;
  201. color: #1b75bb;
  202. font-size: 55px;
  203. }
  204. #intro .intro-content p {
  205. padding: 10px;
  206. text-align: left;
  207. }
  208. #intro #intro-carousel {
  209. z-index: 8;
  210. }
  211. #intro #intro-carousel::before {
  212. content: "";
  213. position: absolute;
  214. height: 100%;
  215. width: 100%;
  216. top: 0;
  217. right: 0;
  218. left: 0;
  219. bottom: 0;
  220. z-index: 7;
  221. }
  222. #intro #intro-carousel .item {
  223. height: 700px;
  224. display: block;
  225. background-size: center;
  226. background-position: center center;
  227. background-repeat: no-repeat;
  228. background-attachment: fixed;
  229. transition-property: opacity;
  230. }
  231. /*--------------------------------------------------------------
  232. # Buttons
  233. --------------------------------------------------------------*/
  234. .btn-white-border,
  235. .btn-solid-blue {
  236. font-family: "Muli";
  237. font-size: 15px;
  238. letter-spacing: 1px;
  239. display: inline-block;
  240. padding: 10px 32px;
  241. border-radius: 2px;
  242. transition: 0.5s;
  243. margin: 10px;
  244. color: #fff;
  245. }
  246. .btn-white-border {
  247. color: #1b75bb !important;
  248. background-color: #fff;
  249. border: 2px solid #1b75bb;
  250. }
  251. .btn-white-border:hover {
  252. background: #1b75bb;
  253. color: #fff !important;
  254. }
  255. .btn-solid-blue {
  256. background: #1b75bb;
  257. border: 2px solid #1b75bb;
  258. }
  259. .btn-solid-blue:hover {
  260. background: #fff;
  261. color: #1b75bb !important;
  262. }
  263. /*--------------------------------------------------------------
  264. # Navigation Menu
  265. --------------------------------------------------------------*/
  266. /* Nav Menu Essentials */
  267. .nav-menu,
  268. .nav-menu * {
  269. margin: 0;
  270. padding: 0;
  271. list-style: none;
  272. }
  273. .nav-menu ul {
  274. position: absolute;
  275. display: none;
  276. top: 100%;
  277. right: 0;
  278. z-index: 99;
  279. }
  280. .nav-menu li {
  281. position: relative;
  282. white-space: nowrap;
  283. }
  284. .nav-menu > li {
  285. float: left;
  286. }
  287. .nav-menu li:hover > ul,
  288. .nav-menu li.sfHover > ul {
  289. display: block;
  290. }
  291. .nav-menu ul ul {
  292. top: 0;
  293. left: 100%;
  294. }
  295. .nav-menu ul li {
  296. min-width: 180px;
  297. }
  298. .nav-menu .btn-solid-blue {
  299. color: #fff;
  300. }
  301. /* Nav Menu Arrows */
  302. .sf-arrows .sf-with-ul {
  303. padding-right: 22px;
  304. }
  305. .sf-arrows .sf-with-ul:after {
  306. content: "\f107";
  307. position: absolute;
  308. right: 8px;
  309. font-family: FontAwesome;
  310. font-style: normal;
  311. font-weight: normal;
  312. }
  313. .sf-arrows ul .sf-with-ul:after {
  314. content: "\f105";
  315. }
  316. /* Nav Meu Container */
  317. #nav-menu-container {
  318. float: right;
  319. margin: 0;
  320. }
  321. /* Nav Meu Styling */
  322. .nav-menu a {
  323. padding: 10px 8px;
  324. text-decoration: none;
  325. display: inline-block;
  326. color: #555;
  327. font-family: "Muli";
  328. font-size: 14px;
  329. outline: none;
  330. font-weight: 700;
  331. }
  332. .nav-menu h1 {
  333. padding: 10px 8px;
  334. text-decoration: none;
  335. display: inline-block;
  336. color: #1b75bb;
  337. font-family: "Muli";
  338. font-size: 22px;
  339. outline: none;
  340. font-weight: 700;
  341. text-transform: uppercase;
  342. }
  343. .nav-menu li:hover > a,
  344. .nav-menu .menu-active > a {
  345. color: #1b75bb;
  346. }
  347. .nav-menu > li {
  348. margin-left: 10px;
  349. }
  350. .nav-menu ul {
  351. margin: 4px 0 0 0;
  352. padding: 10px;
  353. box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  354. background: #fff;
  355. }
  356. .nav-menu ul li {
  357. transition: 0.3s;
  358. }
  359. .nav-menu ul li a {
  360. padding: 10px;
  361. color: #333;
  362. transition: 0.3s;
  363. display: block;
  364. font-size: 13px;
  365. text-transform: none;
  366. }
  367. .nav-menu ul li:hover > a {
  368. color: #1b75bb;
  369. }
  370. .nav-menu ul ul {
  371. margin: 0;
  372. }
  373. /* Mobile Nav Toggle */
  374. #mobile-nav-toggle {
  375. position: fixed;
  376. right: 0;
  377. top: 0;
  378. z-index: 999;
  379. margin: 20px 20px 0 0;
  380. border: 0;
  381. background: none;
  382. font-size: 24px;
  383. display: none;
  384. transition: all 0.4s;
  385. outline: none;
  386. cursor: pointer;
  387. }
  388. #mobile-nav-toggle i {
  389. color: #555;
  390. }
  391. /* Mobile Nav Styling */
  392. #mobile-nav {
  393. position: fixed;
  394. top: 0;
  395. padding-top: 18px;
  396. bottom: 0;
  397. z-index: 998;
  398. background: rgba(27, 117, 187, 0.9);
  399. left: -260px;
  400. width: 260px;
  401. overflow-y: auto;
  402. transition: 0.4s;
  403. }
  404. #mobile-nav ul {
  405. padding: 0;
  406. margin: 0;
  407. list-style: none;
  408. overflow-x: hidden;
  409. }
  410. #mobile-nav ul li {
  411. position: relative;
  412. }
  413. #mobile-nav ul li a {
  414. color: #fff;
  415. font-size: 16px;
  416. overflow: hidden;
  417. padding: 10px 22px 10px 15px;
  418. position: relative;
  419. text-decoration: none;
  420. width: 100%;
  421. display: block;
  422. outline: none;
  423. }
  424. #mobile-nav ul li a:hover {
  425. color: #fff;
  426. }
  427. #mobile-nav ul li li {
  428. padding-left: 30px;
  429. }
  430. #mobile-nav ul .menu-has-children i {
  431. position: absolute;
  432. right: 0;
  433. z-index: 99;
  434. padding: 15px;
  435. cursor: pointer;
  436. color: #fff;
  437. }
  438. #mobile-nav ul .menu-has-children i.fa-chevron-up {
  439. color: #1b75bb;
  440. }
  441. #mobile-nav ul .menu-item-active {
  442. color: #1b75bb;
  443. }
  444. #mobile-body-overly {
  445. width: 100%;
  446. height: 100%;
  447. z-index: 997;
  448. top: 0;
  449. left: 0;
  450. position: fixed;
  451. background: rgba(52, 59, 64, 0.9);
  452. display: none;
  453. }
  454. /* Mobile Nav body classes */
  455. body.mobile-nav-active {
  456. overflow: hidden;
  457. }
  458. body.mobile-nav-active #mobile-nav {
  459. left: 0;
  460. }
  461. body.mobile-nav-active #mobile-nav-toggle {
  462. color: #fff;
  463. }
  464. /*--------------------------------------------------------------
  465. # Calculator sidepanle
  466. --------------------------------------------------------------*/
  467. .sidepanel {
  468. height: 80%;
  469. width: 0;
  470. position: fixed;
  471. top: 0;
  472. right: 0;
  473. background-color: #1b75bb;
  474. overflow-x: hidden;
  475. padding-top: 60px;
  476. transition: 0.5s;
  477. color: #ffffff;
  478. }
  479. .sidepanel .closebtn {
  480. position: absolute;
  481. top: 0;
  482. right: 25px;
  483. font-size: 36px;
  484. margin-left: 50px;
  485. }
  486. /*--------------------------------------------------------------
  487. # Sections
  488. --------------------------------------------------------------*/
  489. /* Sections Header
  490. --------------------------------*/
  491. .section-header {
  492. margin: 30px 0;
  493. }
  494. .section-header h2 {
  495. font-size: 40px;
  496. color: #444;
  497. position: relative;
  498. padding-bottom: 20px;
  499. }
  500. .section-header h2::before {
  501. content: "";
  502. position: absolute;
  503. display: block;
  504. width: 20px;
  505. height: 3px;
  506. background: #1b75bb;
  507. bottom: 0;
  508. left: 0;
  509. }
  510. .section-header p {
  511. padding: 0;
  512. margin: 0;
  513. }
  514. /* About Section
  515. --------------------------------*/
  516. #about {
  517. padding: 60px 0 30px 0;
  518. }
  519. #about .about-img {
  520. overflow: hidden;
  521. }
  522. #about .about-img img {
  523. margin-left: -15px;
  524. max-width: 550px;
  525. }
  526. #about .content h2 {
  527. color: #0c2e8a;
  528. font-size: 36px;
  529. font-family: "Muli";
  530. }
  531. #about .content h3 {
  532. color: #555;
  533. font-weight: 300;
  534. font-size: 18px;
  535. line-height: 26px;
  536. }
  537. #about .content p {
  538. line-height: 26px;
  539. }
  540. #about .content p:last-child {
  541. margin-bottom: 0;
  542. }
  543. #about .content i {
  544. font-size: 20px;
  545. padding-right: 4px;
  546. color: #1b75bb;
  547. }
  548. #about .content ul {
  549. list-style: none;
  550. padding: 0;
  551. }
  552. #about .content ul li {
  553. padding-bottom: 10px;
  554. }
  555. #about-logos {
  556. align-content: center;
  557. text-align: center;
  558. }
  559. /* Services Section
  560. --------------------------------*/
  561. #services {
  562. padding: 30px 0 0 0;
  563. }
  564. #services p {
  565. text-align: left;
  566. }
  567. #services .box {
  568. padding: 40px;
  569. margin-bottom: 90px;
  570. box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
  571. background: #fff;
  572. transition: 0.4s;
  573. }
  574. #services .box:hover {
  575. box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  576. transform: translateY(-10px);
  577. -webkit-transform: translateY(-10px);
  578. -moz-transform: translateY(-10px);
  579. }
  580. #services .box .icon {
  581. float: left;
  582. }
  583. #services .box .icon i {
  584. color: #444;
  585. font-size: 64px;
  586. transition: 0.5s;
  587. line-height: 0;
  588. margin-top: 34px;
  589. }
  590. #services .box .icon i:before {
  591. background: #0c2e8a;
  592. background: linear-gradient(45deg, #1b75bb 0%, #a3ebd5 100%);
  593. background-clip: border-box;
  594. -webkit-background-clip: text;
  595. -webkit-text-fill-color: transparent;
  596. }
  597. #services .box h4 {
  598. margin-top: 10px;
  599. font-weight: 700;
  600. font-size: 28px;
  601. }
  602. #services .box h4 a {
  603. color: #444;
  604. }
  605. #services .box p {
  606. font-size: 14px;
  607. margin-left: 100px;
  608. margin-bottom: 0;
  609. line-height: 24px;
  610. }
  611. #services .box img {
  612. width: 100%;
  613. }
  614. /* Testimonials Section
  615. --------------------------------*/
  616. #testimonials .content {
  617. text-align: center;
  618. font-style: italic;
  619. margin-bottom: 100px;
  620. }
  621. #testimonials .content h5 {
  622. color: #1b75bb;
  623. font-weight: 800;
  624. }
  625. #testimonials .content h6 {
  626. font-weight: 800;
  627. }
  628. /* Listings Section
  629. --------------------------------*/
  630. #portfolio {
  631. background: #666;
  632. padding: 30px 0;
  633. }
  634. .portfolio-overlay {
  635. position: absolute;
  636. top: 0;
  637. right: 0;
  638. bottom: 0;
  639. left: 0;
  640. width: 100%;
  641. height: 100%;
  642. transition: all ease-in-out 0.4s;
  643. }
  644. .portfolio-item {
  645. vertical-align: middle;
  646. text-align: center;
  647. background-color: #fff;
  648. }
  649. .portfolio-item h4 {
  650. font-family: "Muli";
  651. font-size: 24px;
  652. font-weight: 500;
  653. color: rgb(68, 68, 68);
  654. }
  655. .feature-top {
  656. background: #1b75bb;
  657. width: 100%;
  658. }
  659. #portfolio h2 {
  660. color: #fff;
  661. font-size: 40px;
  662. text-align: center;
  663. margin-top: 50px;
  664. margin-bottom: 30px;
  665. }
  666. #portfolio h3 {
  667. color: #fff;
  668. }
  669. #portfolio h4 {
  670. color: #1b75bb;
  671. text-transform: capitalize;
  672. }
  673. h4 {
  674. font-family: "Muli";
  675. font-size: 24px;
  676. font-weight: 500;
  677. }
  678. #services h4 {
  679. color: rgb(68, 68, 68);
  680. font-weight: 500;
  681. font-family: "Muli";
  682. text-transform: capitalize;
  683. font-size: 24px;
  684. }
  685. #services p {
  686. color: rgb(68, 68, 68);
  687. font-weight: 400;
  688. font-family: "Muli";
  689. font-size: 16px;
  690. }
  691. #portfolio .portfolio-item h2 {
  692. color: #ffffff;
  693. font-size: 28px;
  694. margin: 0;
  695. }
  696. .portfolio-item img {
  697. transition: all ease-in-out 0.4s;
  698. width: 100%;
  699. }
  700. #portfolio .portfolio-item:hover img {
  701. -webkit-transform: scale(1.1);
  702. transform: scale(1.1);
  703. }
  704. .portfolio-item:hover .portfolio-overlay {
  705. opacity: 1;
  706. }
  707. .portfolio-info {
  708. position: absolute;
  709. top: 50%;
  710. left: 50%;
  711. -webkit-transform: translate(-50%, -50%);
  712. transform: translate(-50%, -50%);
  713. }
  714. /* Contact Section
  715. --------------------------------*/
  716. #contact {
  717. padding: 10px 0;
  718. background-color: #efefef;
  719. }
  720. #contact p {
  721. text-align: left;
  722. }
  723. #contact .contact-info {
  724. margin-bottom: 20px;
  725. text-align: center;
  726. }
  727. #contact .contact-info i {
  728. font-size: 48px;
  729. display: inline-block;
  730. margin-bottom: 10px;
  731. color: #1b75bb;
  732. }
  733. #contact .contact-info address,
  734. #contact .contact-info p {
  735. margin-bottom: 0;
  736. color: #1b75bb;
  737. }
  738. #contact .contact-info h3 {
  739. font-size: 18px;
  740. margin-bottom: 15px;
  741. font-weight: bold;
  742. text-transform: uppercase;
  743. color: #1b75bb;
  744. }
  745. #contact .contact-info a {
  746. color: #1b75bb;
  747. }
  748. #contact .contact-info a:hover {
  749. color: #1b75bb;
  750. }
  751. #contact .contact-address,
  752. #contact .contact-phone,
  753. #contact .contact-email {
  754. margin-bottom: 20px;
  755. }
  756. #contact #google-map {
  757. height: 290px;
  758. margin-bottom: 20px;
  759. }
  760. #contact .form #sendmessage {
  761. color: #1b75bb;
  762. border: 1px solid #1b75bb;
  763. display: none;
  764. text-align: center;
  765. padding: 15px;
  766. font-weight: 600;
  767. margin-bottom: 15px;
  768. }
  769. #contact .form #errormessage {
  770. color: red;
  771. display: none;
  772. border: 1px solid red;
  773. text-align: center;
  774. padding: 15px;
  775. font-weight: 600;
  776. margin-bottom: 15px;
  777. }
  778. #contact .form #sendmessage.show,
  779. #contact .form #errormessage.show,
  780. #contact .form .show {
  781. display: block;
  782. }
  783. #contact .form .validation {
  784. color: red;
  785. display: none;
  786. margin: 0 0 20px;
  787. font-weight: 400;
  788. font-size: 13px;
  789. }
  790. #contact .form input,
  791. #contact .form textarea {
  792. padding: 10px 14px;
  793. border: 2px solid #1b75bb;
  794. box-shadow: none;
  795. font-size: 15px;
  796. color: #1b75bb;
  797. text-transform: uppercase;
  798. }
  799. #contact .form button[type="submit"] {
  800. background: #1b75bb;
  801. border: 2px solid #1b75bb;
  802. padding: 10px 35px;
  803. color: #fff;
  804. transition: 0.4s;
  805. cursor: pointer;
  806. text-transform: uppercase;
  807. }
  808. #contact .form button[type="submit"]:hover {
  809. background: #fff;
  810. color: #1b75bb;
  811. border: 2px solid #1b75bb;
  812. text-transform: uppercase;
  813. }
  814. /* Contact Section 2
  815. --------------------------------*/
  816. #contact2 {
  817. padding: 10px 0;
  818. }
  819. #contact2 .contact-info {
  820. margin-bottom: 20px;
  821. text-align: center;
  822. }
  823. #contact2 .contact-info i {
  824. font-size: 48px;
  825. display: inline-block;
  826. margin-bottom: 10px;
  827. color: #1b75bb;
  828. }
  829. #contact2 .contact-info address,
  830. #contact2 .contact-info p {
  831. margin-bottom: 0;
  832. color: #1b75bb;
  833. }
  834. #contact2 .contact-info h3 {
  835. font-size: 18px;
  836. margin-bottom: 15px;
  837. font-weight: bold;
  838. text-transform: uppercase;
  839. color: #1b75bb;
  840. }
  841. #contact2 .contact-info a {
  842. color: #1b75bb;
  843. }
  844. #contact2 .contact-info a:hover {
  845. color: #1b75bb;
  846. }
  847. #contact2 .contact-address,
  848. #contact2 .contact-phone,
  849. #contact2 .contact-email {
  850. margin-bottom: 20px;
  851. }
  852. #contact2 #google-map {
  853. height: 290px;
  854. margin-bottom: 20px;
  855. }
  856. #contact2 .form #sendmessage {
  857. color: #1b75bb;
  858. border: 1px solid #1b75bb;
  859. display: none;
  860. text-align: center;
  861. padding: 15px;
  862. font-weight: 600;
  863. margin-bottom: 15px;
  864. }
  865. #contact2 .form #errormessage {
  866. color: red;
  867. display: none;
  868. border: 1px solid red;
  869. text-align: center;
  870. padding: 15px;
  871. font-weight: 600;
  872. margin-bottom: 15px;
  873. }
  874. #contact2 .form #sendmessage.show,
  875. #contact2 .form #errormessage.show,
  876. #contact2 .form .show {
  877. display: block;
  878. }
  879. #contact2 .form .validation {
  880. color: red;
  881. display: none;
  882. margin: 0 0 20px;
  883. font-weight: 400;
  884. font-size: 13px;
  885. }
  886. #contact2 .form input,
  887. #contact2 .form textarea {
  888. padding: 10px 14px;
  889. border: 2px solid #1b75bb;
  890. box-shadow: none;
  891. font-size: 15px;
  892. color: #1b75bb;
  893. text-transform: uppercase;
  894. }
  895. #contact2 .form button[type="submit"] {
  896. background: #1b75bb;
  897. border: 2px solid #1b75bb;
  898. padding: 10px 35px;
  899. color: #fff;
  900. transition: 0.4s;
  901. cursor: pointer;
  902. text-transform: uppercase;
  903. }
  904. #contact2 .form button[type="submit"]:hover {
  905. background: #fff;
  906. color: #1b75bb;
  907. border: 2px solid #1b75bb;
  908. text-transform: uppercase;
  909. }
  910. /* Search Section
  911. --------------------------------*/
  912. .panel-left {
  913. background: #1b75bb;
  914. }
  915. .panel-left h2 {
  916. color: #fff;
  917. }
  918. .panel-left p {
  919. color: #fff;
  920. text-align: left;
  921. }
  922. .panel-left a {
  923. color: #fff;
  924. }
  925. /* Resort Portfolio Section
  926. --------------------------------*/
  927. .resort-profile p {
  928. text-align: left;
  929. }
  930. #resort-profile th,
  931. #resort-profile td {
  932. color: #1b75bb;
  933. text-align: center;
  934. vertical-align: middle;
  935. }
  936. /*--------------------------------------------------------------
  937. # Footer
  938. --------------------------------------------------------------*/
  939. #footer {
  940. background: #efefef;
  941. padding: 0 0 30px 0;
  942. font-size: 14px;
  943. margin-top: -20px;
  944. }
  945. #footer .copyright {
  946. text-align: center;
  947. padding-top: 30px;
  948. color: #bfbfbf;
  949. }
  950. #footer .credits {
  951. text-align: center;
  952. font-size: 13px;
  953. color: #bfbfbf;
  954. }
  955. #footer .credits a {
  956. text-decoration: underline;
  957. }
  958. @media (min-width: 768px) {
  959. #contact .contact-address,
  960. #contact .contact-phone,
  961. #contact .contact-email {
  962. padding: 20px 0;
  963. }
  964. #contact .contact-phone {
  965. border-left: 1px solid #ddd;
  966. border-right: 1px solid #ddd;
  967. }
  968. }
  969. @media (max-width: 768px) {
  970. .back-to-top {
  971. bottom: 15px;
  972. }
  973. #header {
  974. padding: 20px 0;
  975. height: 120px;
  976. }
  977. #header #logo h1 {
  978. font-size: 34px;
  979. }
  980. #header #logo img {
  981. max-height: 40px;
  982. }
  983. #nav-menu-container {
  984. display: none;
  985. }
  986. #mobile-nav-toggle {
  987. display: inline;
  988. }
  989. #about .about-img {
  990. height: auto;
  991. }
  992. #about .about-img img {
  993. margin-left: 0;
  994. padding-bottom: 30px;
  995. }
  996. }
  997. @media (max-width: 767px) {
  998. #intro .intro-content h2 {
  999. font-size: 34px;
  1000. }
  1001. #services .box .box {
  1002. margin-bottom: 20px;
  1003. }
  1004. #services .box .icon {
  1005. float: none;
  1006. text-align: center;
  1007. padding-bottom: 15px;
  1008. }
  1009. #services .box h4,
  1010. #services .box p {
  1011. margin-left: 0;
  1012. text-align: center;
  1013. }
  1014. #testimonials .testimonial-item {
  1015. margin: 30px 10px;
  1016. }
  1017. }
  1018. @media (max-width: 576px) {
  1019. #contact #google-map {
  1020. margin-top: 20px;
  1021. }
  1022. }
  1023. /* Contact Section 2
  1024. --------------------------------*/
  1025. #login {
  1026. width: 100%;
  1027. height: auto;
  1028. position: relative;
  1029. /* background: url("../img/login.jpg") no-repeat; */
  1030. background-size: cover;
  1031. }
  1032. .card-signin {
  1033. border: 0;
  1034. border-radius: 0rem;
  1035. box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
  1036. }
  1037. .card-signin .card-title {
  1038. margin-bottom: 2rem;
  1039. font-weight: 300;
  1040. font-size: 1.5rem;
  1041. }
  1042. .card-signin .card-body {
  1043. padding: 2rem;
  1044. }
  1045. .form-signin {
  1046. width: 100%;
  1047. }
  1048. .form-signin .btn {
  1049. font-size: 80%;
  1050. border-radius: 0rem;
  1051. letter-spacing: 0.1rem;
  1052. font-weight: bold;
  1053. padding: 1rem;
  1054. transition: all 0.2s;
  1055. }
  1056. .form-label-group {
  1057. position: relative;
  1058. margin-bottom: 1rem;
  1059. }
  1060. .form-label-group input {
  1061. height: auto;
  1062. }
  1063. .form-label-group > input,
  1064. .form-label-group > label {
  1065. padding: var(--input-padding-y) var(--input-padding-x);
  1066. }
  1067. .form-label-group > label {
  1068. position: absolute;
  1069. top: 0;
  1070. left: 0;
  1071. display: block;
  1072. width: 100%;
  1073. margin-bottom: 0;
  1074. line-height: 1.5;
  1075. color: #495057;
  1076. border: 1px solid transparent;
  1077. border-radius: 0.25rem;
  1078. transition: all 0.1s ease-in-out;
  1079. }
  1080. .form-control:focus {
  1081. box-shadow: 10px 0px 0px 0px #ffffff !important;
  1082. }
  1083. .btn-google {
  1084. color: white;
  1085. background-color: #ea4335;
  1086. }
  1087. .btn-facebook {
  1088. color: white;
  1089. background-color: #3b5998;
  1090. }
  1091. .card-signin {
  1092. border: 0;
  1093. border-radius: 0rem;
  1094. box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
  1095. }
  1096. .card-signin .card-title {
  1097. margin-bottom: 2rem;
  1098. font-weight: 300;
  1099. font-size: 1.5rem;
  1100. }
  1101. .card-signin .card-body {
  1102. padding: 2rem;
  1103. }
  1104. .form-signin {
  1105. width: 100%;
  1106. }
  1107. .form-signin .btn {
  1108. font-size: 80%;
  1109. border-radius: 0rem;
  1110. letter-spacing: 0.1rem;
  1111. font-weight: bold;
  1112. padding: 1rem;
  1113. transition: all 0.2s;
  1114. }
  1115. .form-label-group {
  1116. position: relative;
  1117. margin-bottom: 1rem;
  1118. }
  1119. .form-label-group input {
  1120. height: auto;
  1121. }
  1122. .form-label-group > input,
  1123. .form-label-group > label {
  1124. padding: var(--input-padding-y) var(--input-padding-x);
  1125. }
  1126. .form-label-group > label {
  1127. position: absolute;
  1128. top: 0;
  1129. left: 0;
  1130. display: block;
  1131. width: 100%;
  1132. margin-bottom: 0;
  1133. line-height: 1.5;
  1134. color: #495057;
  1135. border: 1px solid transparent;
  1136. border-radius: 0.25rem;
  1137. transition: all 0.1s ease-in-out;
  1138. }
  1139. .form-control:focus {
  1140. box-shadow: 10px 0px 0px 0px #ffffff !important;
  1141. }
  1142. .btn-google {
  1143. color: white;
  1144. background-color: #ea4335;
  1145. }
  1146. .btn-facebook {
  1147. color: white;
  1148. background-color: #3b5998;
  1149. }
  1150. .card-signin {
  1151. border: 0;
  1152. border-radius: 0rem;
  1153. box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
  1154. }
  1155. .card-signin .card-title {
  1156. margin-bottom: 2rem;
  1157. font-weight: 300;
  1158. font-size: 1.5rem;
  1159. }
  1160. .card-signin .card-body {
  1161. padding: 2rem;
  1162. }
  1163. .form-signin {
  1164. width: 100%;
  1165. }
  1166. .form-signin .btn {
  1167. font-size: 80%;
  1168. border-radius: 0rem;
  1169. letter-spacing: 0.1rem;
  1170. font-weight: bold;
  1171. padding: 1rem;
  1172. transition: all 0.2s;
  1173. }
  1174. .form-label-group {
  1175. position: relative;
  1176. margin-bottom: 1rem;
  1177. }
  1178. .form-label-group input {
  1179. height: auto;
  1180. }
  1181. .form-label-group > input,
  1182. .form-label-group > label {
  1183. padding: var(--input-padding-y) var(--input-padding-x);
  1184. }
  1185. .form-label-group > label {
  1186. position: absolute;
  1187. top: 0;
  1188. left: 0;
  1189. display: block;
  1190. width: 100%;
  1191. margin-bottom: 0;
  1192. line-height: 1.5;
  1193. color: #495057;
  1194. border: 1px solid transparent;
  1195. border-radius: 0.25rem;
  1196. transition: all 0.1s ease-in-out;
  1197. }
  1198. .form-control:focus {
  1199. box-shadow: 10px 0px 0px 0px #ffffff !important;
  1200. }
  1201. .btn-google {
  1202. color: white;
  1203. background-color: #ea4335;
  1204. }
  1205. .btn-facebook {
  1206. color: white;
  1207. background-color: #3b5998;
  1208. }
  1209. .card-signin {
  1210. border: 0;
  1211. border-radius: 0rem;
  1212. box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
  1213. }
  1214. .card-signin .card-title {
  1215. margin-bottom: 2rem;
  1216. font-weight: 300;
  1217. font-size: 1.5rem;
  1218. }
  1219. .card-signin .card-body {
  1220. padding: 2rem;
  1221. }
  1222. .form-signin {
  1223. width: 100%;
  1224. }
  1225. .form-signin .btn {
  1226. font-size: 80%;
  1227. border-radius: 0rem;
  1228. letter-spacing: 0.1rem;
  1229. font-weight: bold;
  1230. padding: 1rem;
  1231. transition: all 0.2s;
  1232. }
  1233. .form-label-group {
  1234. position: relative;
  1235. margin-bottom: 1rem;
  1236. }
  1237. .form-label-group input {
  1238. height: auto;
  1239. }
  1240. .form-label-group > input,
  1241. .form-label-group > label {
  1242. padding: var(--input-padding-y) var(--input-padding-x);
  1243. }
  1244. .form-label-group > label {
  1245. position: absolute;
  1246. top: 0;
  1247. left: 0;
  1248. display: block;
  1249. width: 100%;
  1250. margin-bottom: 0;
  1251. line-height: 1.5;
  1252. color: #495057;
  1253. border: 1px solid transparent;
  1254. border-radius: 0.25rem;
  1255. transition: all 0.1s ease-in-out;
  1256. }
  1257. .form-control:focus {
  1258. box-shadow: 10px 0px 0px 0px #ffffff !important;
  1259. }
  1260. .btn-google {
  1261. color: white;
  1262. background-color: #ea4335;
  1263. }
  1264. .btn-facebook {
  1265. color: white;
  1266. background-color: #3b5998;
  1267. }