styles.css 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208
  1. /******************************/
  2. /* 01. General Styles */
  3. /******************************/
  4. body,
  5. html {
  6. width: 100%;
  7. height: 100%;
  8. }
  9. body, p {
  10. color: #555;
  11. font: 400 1rem/1.625rem "Open Sans", sans-serif;;
  12. }
  13. .p-large {
  14. font: 400 1.125rem/1.75rem "Open Sans", sans-serif;
  15. }
  16. .p-small {
  17. font: 400 0.875rem/1.5rem "Open Sans", sans-serif;
  18. }
  19. h1 {
  20. color: #333;
  21. font: 700 2.5rem/3.125rem "Open Sans", sans-serif;
  22. letter-spacing: -0.2px;
  23. }
  24. h2 {
  25. color: #333;
  26. font: 700 2rem/2.625rem "Open Sans", sans-serif;
  27. letter-spacing: -0.2px;
  28. }
  29. h3 {
  30. color: #333;
  31. font: 700 1.625rem/2.125rem "Open Sans", sans-serif;
  32. letter-spacing: -0.2px;
  33. }
  34. h4 {
  35. color: #333;
  36. font: 700 1.375rem/1.75rem "Open Sans", sans-serif;
  37. letter-spacing: -0.1px;
  38. }
  39. h5 {
  40. color: #333;
  41. font: 700 1.125rem/1.5rem "Open Sans", sans-serif;
  42. letter-spacing: -0.1px;
  43. }
  44. h6 {
  45. color: #333;
  46. font: 700 1rem/1.375rem "Open Sans", sans-serif;
  47. letter-spacing: -0.1px;
  48. }
  49. .above-heading {
  50. color: #20a0ff;
  51. font: 700 0.75rem/0.875rem "Open Sans", sans-serif;
  52. text-align: center;
  53. }
  54. .p-heading {
  55. margin-bottom: 3.25rem;
  56. }
  57. .testimonial-text {
  58. font: italic 400 1rem/1.625rem "Open Sans", sans-serif;
  59. }
  60. .testimonial-author {
  61. font: 700 1rem/1.625rem "Open Sans", sans-serif;
  62. letter-spacing: -0.1px;
  63. }
  64. .tlinks{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}
  65. .li-space-lg li {
  66. margin-bottom: 0.375rem;
  67. }
  68. .indent {
  69. padding-left: 1.25rem;
  70. }
  71. a {
  72. color: #555;
  73. text-decoration: underline;
  74. }
  75. a:hover {
  76. color: #555;
  77. text-decoration: underline;
  78. }
  79. a.white {
  80. color: #fff;
  81. }
  82. .decorative-line {
  83. display: block;
  84. width: 5rem;
  85. height: 0.5rem;
  86. margin-right: auto;
  87. margin-left: auto;
  88. }
  89. .blue {
  90. color: #20a0ff;
  91. }
  92. .btn-solid-reg {
  93. display: inline-block;
  94. padding: 1.1875rem 2.125rem 1.1875rem 2.125rem;
  95. border: 0.125rem solid #20a0ff;
  96. border-radius: 2rem;
  97. background-color: #20a0ff;
  98. color: #fff;
  99. font: 700 0.875rem/0 "Open Sans", sans-serif;
  100. text-decoration: none;
  101. transition: all 0.2s;
  102. }
  103. .btn-solid-reg:hover {
  104. background-color: transparent;
  105. color: #20a0ff;
  106. text-decoration: none;
  107. }
  108. .btn-solid-lg {
  109. display: inline-block;
  110. padding: 1.375rem 2.625rem 1.375rem 2.625rem;
  111. border: 0.125rem solid #20a0ff;
  112. border-radius: 2rem;
  113. background-color: #20a0ff;
  114. color: #fff;
  115. font: 700 0.875rem/0 "Open Sans", sans-serif;
  116. text-decoration: none;
  117. transition: all 0.2s;
  118. }
  119. .btn-solid-lg:hover {
  120. background-color: transparent;
  121. color: #20a0ff;
  122. text-decoration: none;
  123. }
  124. .btn-outline-reg {
  125. display: inline-block;
  126. padding: 1.1875rem 2.125rem 1.1875rem 2.125rem;
  127. border: 0.125rem solid #20a0ff;
  128. border-radius: 2rem;
  129. background-color: transparent;
  130. color: #20a0ff;
  131. font: 700 0.875rem/0 "Open Sans", sans-serif;
  132. text-decoration: none;
  133. transition: all 0.2s;
  134. }
  135. .btn-outline-reg:hover {
  136. background-color: #20a0ff;
  137. color: #fff;
  138. text-decoration: none;
  139. }
  140. .btn-outline-lg {
  141. display: inline-block;
  142. padding: 1.375rem 2.625rem 1.375rem 2.625rem;
  143. border: 0.125rem solid #20a0ff;
  144. border-radius: 2rem;
  145. background-color: transparent;
  146. color: #20a0ff;
  147. font: 700 0.875rem/0 "Open Sans", sans-serif;
  148. text-decoration: none;
  149. transition: all 0.2s;
  150. }
  151. .btn-outline-lg:hover {
  152. background-color: #20a0ff;
  153. color: #fff;
  154. text-decoration: none;
  155. }
  156. .btn-outline-sm {
  157. display: inline-block;
  158. padding: 0.875rem 1.5rem 0.875rem 1.5rem;
  159. border: 0.125rem solid #20a0ff;
  160. border-radius: 2rem;
  161. background-color: transparent;
  162. color: #20a0ff;
  163. font: 700 0.875rem/0 "Open Sans", sans-serif;
  164. text-decoration: none;
  165. transition: all 0.2s;
  166. }
  167. .btn-outline-sm:hover {
  168. background-color: #20a0ff;
  169. color: #fff;
  170. text-decoration: none;
  171. }
  172. .form-group {
  173. position: relative;
  174. margin-bottom: 1.25rem;
  175. }
  176. .form-group.has-error.has-danger {
  177. margin-bottom: 0.625rem;
  178. }
  179. .form-group.has-error.has-danger .help-block.with-errors ul {
  180. margin-top: 0.375rem;
  181. }
  182. .label-control {
  183. position: absolute;
  184. top: 0.87rem;
  185. left: 1.25rem;
  186. color: #555;
  187. opacity: 1;
  188. font: 400 0.875rem/1.375rem "Open Sans", sans-serif;
  189. cursor: text;
  190. transition: all 0.2s ease;
  191. }
  192. /* IE10+ hack to solve lower label text position compared to the rest of the browsers */
  193. @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  194. .label-control {
  195. top: 0.9375rem;
  196. }
  197. }
  198. .form-control-input:focus + .label-control,
  199. .form-control-input.notEmpty + .label-control,
  200. .form-control-textarea:focus + .label-control,
  201. .form-control-textarea.notEmpty + .label-control {
  202. top: 0.125rem;
  203. opacity: 1;
  204. font-size: 0.75rem;
  205. font-weight: 700;
  206. }
  207. .form-control-input,
  208. .form-control-select {
  209. display: block; /* needed for proper display of the label in Firefox, IE, Edge */
  210. width: 100%;
  211. padding-top: 1.0625rem;
  212. padding-bottom: 0.0625rem;
  213. padding-left: 1.25rem;
  214. border: 1px solid #c4d8dc;
  215. border-radius: 0.25rem;
  216. background-color: #fff;
  217. color: #555;
  218. font: 400 0.875rem/1.875rem "Open Sans", sans-serif;
  219. transition: all 0.2s;
  220. -webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
  221. }
  222. .form-control-select {
  223. padding-top: 0.5rem;
  224. padding-bottom: 0.5rem;
  225. height: 3rem;
  226. }
  227. /* IE10+ hack to solve lower label text position compared to the rest of the browsers */
  228. @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  229. .form-control-input {
  230. padding-top: 1.25rem;
  231. padding-bottom: 0.75rem;
  232. line-height: 1.75rem;
  233. }
  234. .form-control-select {
  235. padding-top: 0.875rem;
  236. padding-bottom: 0.75rem;
  237. height: 3.125rem;
  238. line-height: 2.125rem;
  239. }
  240. }
  241. select {
  242. /* you should keep these first rules in place to maintain cross-browser behavior */
  243. -webkit-appearance: none;
  244. -moz-appearance: none;
  245. -ms-appearance: none;
  246. -o-appearance: none;
  247. appearance: none;
  248. background-image: url('../images/down-arrow.png');
  249. background-position: 96% 50%;
  250. background-repeat: no-repeat;
  251. outline: none;
  252. }
  253. select::-ms-expand {
  254. display: none; /* removes the ugly default down arrow on select form field in IE11 */
  255. }
  256. .form-control-textarea {
  257. display: block; /* used to eliminate a bottom gap difference between Chrome and IE/FF */
  258. width: 100%;
  259. height: 8rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
  260. padding-top: 1.25rem;
  261. padding-left: 1.3125rem;
  262. border: 1px solid #c4d8dc;
  263. border-radius: 0.25rem;
  264. background-color: #fff;
  265. color: #555;
  266. font: 400 0.875rem/1.75rem "Open Sans", sans-serif;
  267. transition: all 0.2s;
  268. }
  269. .form-control-input:focus,
  270. .form-control-select:focus,
  271. .form-control-textarea:focus {
  272. border: 1px solid #a1a1a1;
  273. outline: none; /* Removes blue border on focus */
  274. }
  275. .form-control-input:hover,
  276. .form-control-select:hover,
  277. .form-control-textarea:hover {
  278. border: 1px solid #a1a1a1;
  279. }
  280. .checkbox {
  281. font: 400 0.75rem/1.25rem "Open Sans", sans-serif;
  282. }
  283. input[type='checkbox'] {
  284. vertical-align: -15%;
  285. margin-right: 0.375rem;
  286. }
  287. /* IE10+ hack to raise checkbox field position compared to the rest of the browsers */
  288. @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  289. input[type='checkbox'] {
  290. vertical-align: -9%;
  291. }
  292. }
  293. .form-control-submit-button {
  294. display: inline-block;
  295. width: 100%;
  296. height: 3.125rem;
  297. border: 1px solid #20a0ff;
  298. border-radius: 1.5rem;
  299. background-color: #20a0ff;
  300. color: #fff;
  301. font: 700 0.875rem/0 "Open Sans", sans-serif;
  302. cursor: pointer;
  303. transition: all 0.2s;
  304. }
  305. .form-control-submit-button:hover {
  306. background-color: transparent;
  307. color: #20a0ff;
  308. }
  309. /* Form Success And Error Message Formatting */
  310. #smsgSubmit.h3.text-center.tada.animated,
  311. #lmsgSubmit.h3.text-center.tada.animated,
  312. #nmsgSubmit.h3.text-center.tada.animated,
  313. #pmsgSubmit.h3.text-center.tada.animated,
  314. #smsgSubmit.h3.text-center,
  315. #lmsgSubmit.h3.text-center,
  316. #nmsgSubmit.h3.text-center,
  317. #pmsgSubmit.h3.text-center {
  318. display: block;
  319. margin-bottom: 0;
  320. color: #555;
  321. font-size: 1.125rem;
  322. line-height: 1rem;
  323. }
  324. .help-block.with-errors .list-unstyled {
  325. color: #555;
  326. font-size: 0.75rem;
  327. line-height: 1.125rem;
  328. text-align: left;
  329. }
  330. .help-block.with-errors ul {
  331. margin-bottom: 0;
  332. }
  333. /* end of form success and error message formatting */
  334. /* Form Success And Error Message Animation - Animate.css */
  335. @-webkit-keyframes tada {
  336. from {
  337. -webkit-transform: scale3d(1, 1, 1);
  338. -ms-transform: scale3d(1, 1, 1);
  339. transform: scale3d(1, 1, 1);
  340. }
  341. 10%, 20% {
  342. -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  343. -ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  344. transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  345. }
  346. 30%, 50%, 70%, 90% {
  347. -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  348. -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  349. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  350. }
  351. 40%, 60%, 80% {
  352. -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  353. -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  354. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  355. }
  356. to {
  357. -webkit-transform: scale3d(1, 1, 1);
  358. -ms-transform: scale3d(1, 1, 1);
  359. transform: scale3d(1, 1, 1);
  360. }
  361. }
  362. @keyframes tada {
  363. from {
  364. -webkit-transform: scale3d(1, 1, 1);
  365. -ms-transform: scale3d(1, 1, 1);
  366. transform: scale3d(1, 1, 1);
  367. }
  368. 10%, 20% {
  369. -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  370. -ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  371. transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  372. }
  373. 30%, 50%, 70%, 90% {
  374. -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  375. -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  376. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  377. }
  378. 40%, 60%, 80% {
  379. -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  380. -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  381. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  382. }
  383. to {
  384. -webkit-transform: scale3d(1, 1, 1);
  385. -ms-transform: scale3d(1, 1, 1);
  386. transform: scale3d(1, 1, 1);
  387. }
  388. }
  389. .tada {
  390. -webkit-animation-name: tada;
  391. animation-name: tada;
  392. }
  393. .animated {
  394. -webkit-animation-duration: 1s;
  395. animation-duration: 1s;
  396. -webkit-animation-fill-mode: both;
  397. animation-fill-mode: both;
  398. }
  399. /* end of form success and error message animation - Animate.css */
  400. /* Fade-move Animation For Details Lightbox - Magnific Popup */
  401. /* at start */
  402. .my-mfp-slide-bottom .zoom-anim-dialog {
  403. opacity: 0;
  404. transition: all 0.2s ease-out;
  405. -webkit-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
  406. -ms-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
  407. transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
  408. }
  409. /* animate in */
  410. .my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  411. opacity: 1;
  412. -webkit-transform: translateY(0) perspective(37.5rem) rotateX(0);
  413. -ms-transform: translateY(0) perspective(37.5rem) rotateX(0);
  414. transform: translateY(0) perspective(37.5rem) rotateX(0);
  415. }
  416. /* animate out */
  417. .my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  418. opacity: 0;
  419. -webkit-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
  420. -ms-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
  421. transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
  422. }
  423. /* dark overlay, start state */
  424. .my-mfp-slide-bottom.mfp-bg {
  425. opacity: 0;
  426. transition: opacity 0.2s ease-out;
  427. }
  428. /* animate in */
  429. .my-mfp-slide-bottom.mfp-ready.mfp-bg {
  430. opacity: 0.8;
  431. }
  432. /* animate out */
  433. .my-mfp-slide-bottom.mfp-removing.mfp-bg {
  434. opacity: 0;
  435. }
  436. /* end of fade-move animation for details lightbox - magnific popup */
  437. /* Fade Animation For Image Lightbox - Magnific Popup */
  438. @-webkit-keyframes fadeIn {
  439. from {
  440. opacity: 0;
  441. }
  442. to {
  443. opacity: 1;
  444. }
  445. }
  446. @keyframes fadeIn {
  447. from {
  448. opacity: 0;
  449. }
  450. to {
  451. opacity: 1;
  452. }
  453. }
  454. .fadeIn {
  455. -webkit-animation: fadeIn 0.6s;
  456. animation: fadeIn 0.6s;
  457. }
  458. @-webkit-keyframes fadeOut {
  459. from {
  460. opacity: 1;
  461. }
  462. to {
  463. opacity: 0;
  464. }
  465. }
  466. @keyframes fadeOut {
  467. from {
  468. opacity: 1;
  469. }
  470. to {
  471. opacity: 0;
  472. }
  473. }
  474. .fadeOut {
  475. -webkit-animation: fadeOut 0.8s;
  476. animation: fadeOut 0.8s;
  477. }
  478. /* end of fade animation for image lightbox - magnific popup */
  479. /*************************/
  480. /* 02. Preloader */
  481. /*************************/
  482. .spinner-wrapper {
  483. position: fixed;
  484. z-index: 999999;
  485. top: 0;
  486. right: 0;
  487. bottom: 0;
  488. left: 0;
  489. background: #fff;
  490. }
  491. .spinner {
  492. position: absolute;
  493. top: 50%; /* centers the loading animation vertically one the screen */
  494. left: 50%; /* centers the loading animation horizontally one the screen */
  495. width: 3.75rem;
  496. height: 1.25rem;
  497. margin: -0.625rem 0 0 -1.875rem; /* is width and height divided by two */
  498. text-align: center;
  499. }
  500. .spinner > div {
  501. display: inline-block;
  502. width: 1rem;
  503. height: 1rem;
  504. border-radius: 100%;
  505. background-color: #20a0ff;
  506. -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  507. animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  508. }
  509. .spinner .bounce1 {
  510. -webkit-animation-delay: -0.32s;
  511. animation-delay: -0.32s;
  512. }
  513. .spinner .bounce2 {
  514. -webkit-animation-delay: -0.16s;
  515. animation-delay: -0.16s;
  516. }
  517. @-webkit-keyframes sk-bouncedelay {
  518. 0%, 80%, 100% { -webkit-transform: scale(0); }
  519. 40% { -webkit-transform: scale(1.0); }
  520. }
  521. @keyframes sk-bouncedelay {
  522. 0%, 80%, 100% {
  523. -webkit-transform: scale(0);
  524. -ms-transform: scale(0);
  525. transform: scale(0);
  526. } 40% {
  527. -webkit-transform: scale(1.0);
  528. -ms-transform: scale(1.0);
  529. transform: scale(1.0);
  530. }
  531. }
  532. /**************************/
  533. /* 03. Navigation */
  534. /**************************/
  535. .navbar-custom {
  536. background-color: #20a0ff;
  537. box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.1);
  538. font: 700 0.875rem/0.875rem "Open Sans", sans-serif;
  539. transition: all 0.2s;
  540. }
  541. .navbar-custom .container {
  542. max-width: 87.5rem;
  543. }
  544. .navbar-custom .navbar-brand.logo-image img {
  545. width: 4.4375rem;
  546. height: 1.75rem;
  547. }
  548. .navbar-custom .navbar-brand.logo-text {
  549. font: 700 2rem/1.5rem "Open Sans", sans-serif;
  550. color: #fff;;
  551. text-decoration: none;
  552. }
  553. .navbar-custom .navbar-nav {
  554. margin-top: 0.75rem;
  555. margin-bottom: 0.5rem;
  556. }
  557. .navbar-custom .nav-item .nav-link {
  558. padding: 0.625rem 0.75rem 0.625rem 0.75rem;
  559. color: #f7f5f5;
  560. opacity: 0.8;
  561. text-decoration: none;
  562. transition: all 0.2s ease;
  563. }
  564. .navbar-custom .nav-item .nav-link:hover,
  565. .navbar-custom .nav-item .nav-link.active {
  566. color: #fff;
  567. opacity: 1;
  568. }
  569. /* Dropdown Menu */
  570. .navbar-custom .dropdown:hover > .dropdown-menu {
  571. display: block; /* this makes the dropdown menu stay open while hovering it */
  572. min-width: auto;
  573. animation: fadeDropdown 0.2s; /* required for the fade animation */
  574. }
  575. @keyframes fadeDropdown {
  576. 0% {
  577. opacity: 0;
  578. }
  579. 100% {
  580. opacity: 1;
  581. }
  582. }
  583. .navbar-custom .dropdown-toggle:focus { /* removes dropdown outline on focus */
  584. outline: 0;
  585. }
  586. .navbar-custom .dropdown-menu {
  587. margin-top: 0;
  588. border: none;
  589. border-radius: 0.25rem;
  590. background-color: #20a0ff;
  591. }
  592. .navbar-custom .dropdown-item {
  593. color: #f7f5f5;
  594. opacity: 0.8;
  595. font: 700 0.875rem/0.875rem "Open Sans", sans-serif;
  596. text-decoration: none;
  597. }
  598. .navbar-custom .dropdown-item:hover {
  599. background-color: #20a0ff;
  600. color: #fff;
  601. opacity: 1;
  602. }
  603. .navbar-custom .dropdown-items-divide-hr {
  604. width: 100%;
  605. height: 1px;
  606. margin: 0.75rem auto 0.725rem auto;
  607. border: none;
  608. background-color: #c4d8dc;
  609. opacity: 0.2;
  610. }
  611. /* end of dropdown menu */
  612. .navbar-custom .nav-item .btn-outline-sm {
  613. margin-top: 0.25rem;
  614. margin-bottom: 1.375rem;
  615. margin-left: 0.5rem;
  616. border: 0.125rem solid #fff;
  617. color: #fff;
  618. }
  619. .navbar-custom .nav-item .btn-outline-sm:hover {
  620. background-color: #fff;
  621. color: #20a0ff;
  622. }
  623. .navbar-custom .navbar-toggler {
  624. padding: 0;
  625. border: none;
  626. color: #fff;
  627. font-size: 2rem;
  628. }
  629. .navbar-custom button[aria-expanded='false'] .navbar-toggler-awesome.fas.fa-times{
  630. display: none;
  631. }
  632. .navbar-custom button[aria-expanded='false'] .navbar-toggler-awesome.fas.fa-bars{
  633. display: inline-block;
  634. }
  635. .navbar-custom button[aria-expanded='true'] .navbar-toggler-awesome.fas.fa-bars{
  636. display: none;
  637. }
  638. .navbar-custom button[aria-expanded='true'] .navbar-toggler-awesome.fas.fa-times{
  639. display: inline-block;
  640. margin-right: 0.125rem;
  641. }
  642. /*********************/
  643. /* 04. Header */
  644. /*********************/
  645. .header {
  646. background-color: #20a0ff;
  647. }
  648. .header .header-content {
  649. padding-top: 8rem;
  650. padding-bottom: 4rem;
  651. text-align: center;
  652. }
  653. .header .text-container {
  654. margin-bottom: 3rem;
  655. }
  656. .header h1 {
  657. margin-bottom: 1rem;
  658. color: #fff;
  659. font-size: 2.5rem;
  660. line-height: 3rem;
  661. }
  662. .header .p-large {
  663. margin-bottom: 2rem;
  664. color: #f3f7fd;
  665. }
  666. .header .btn-solid-lg {
  667. margin-right: 0.5rem;
  668. margin-bottom: 1.125rem;
  669. margin-left: 0.5rem;
  670. border-color: #f3f7fd;
  671. background-color: #f3f7fd;
  672. color: #20a0ff;
  673. }
  674. .header .btn-solid-lg:hover {
  675. background: transparent;
  676. color: #f3f7fd;
  677. }
  678. .header .btn-outline-lg {
  679. border-color: #f3f7fd;
  680. color: #f3f7fd;
  681. }
  682. .header .btn-outline-lg:hover {
  683. background-color: #f3f7fd;
  684. color: #20a0ff;
  685. }
  686. .header-frame {
  687. margin-top: -1px; /* To remove white margin in FF */
  688. width: 100%;
  689. height: 2.25rem;
  690. }
  691. /*************************/
  692. /* 05. Customers */
  693. /*************************/
  694. .slider-1 {
  695. padding-top: 5rem;
  696. padding-bottom: 3.25rem;
  697. }
  698. .slider-1 .slider-container {
  699. text-align: center;
  700. }
  701. /***************************/
  702. /* 06. Description */
  703. /***************************/
  704. .cards-1 {
  705. padding-top: 3.25rem;
  706. padding-bottom: 3rem;
  707. text-align: center;
  708. }
  709. .cards-1 .h2-heading {
  710. margin-bottom: 3.5rem;
  711. }
  712. .cards-1 .card {
  713. max-width: 21rem;
  714. margin-right: auto;
  715. margin-bottom: 3.5rem;
  716. margin-left: auto;
  717. padding: 0;
  718. border: none;
  719. }
  720. .cards-1 .card-image {
  721. max-width: 16rem;
  722. margin-right: auto;
  723. margin-bottom: 2rem;
  724. margin-left: auto;
  725. }
  726. .cards-1 .card-title {
  727. margin-bottom: 0.5rem;
  728. }
  729. .cards-1 .card-body {
  730. padding: 0;
  731. }
  732. /************************/
  733. /* 07. Features */
  734. /************************/
  735. .tabs {
  736. padding-top: 8rem;
  737. padding-bottom: 8.125rem;
  738. background-color: #f3f7fd;
  739. }
  740. .tabs .h2-heading,
  741. .tabs .p-heading {
  742. text-align: center;
  743. }
  744. .tabs .nav-tabs {
  745. display: block;
  746. margin-bottom: 2.25rem;
  747. border-bottom: none;
  748. }
  749. .tabs .nav-link {
  750. padding: 0.375rem 1rem 0.375rem 1rem;
  751. border: none;
  752. color: #86929b;
  753. font-weight: 700;
  754. font-size: 1.25rem;
  755. line-height: 1.75rem;
  756. text-align: center;
  757. text-decoration: none;
  758. transition: all 0.2s ease;
  759. }
  760. .tabs .nav-link:hover,
  761. .tabs .nav-link.active {
  762. background: transparent;
  763. color: #20a0ff;
  764. }
  765. .tabs .nav-link .fas {
  766. margin-right: 0.625rem;
  767. }
  768. .tabs .image-container {
  769. margin-bottom: 2.75rem;
  770. }
  771. .tabs .list-unstyled .fas {
  772. color: #20a0ff;
  773. font-size: 0.5rem;
  774. line-height: 1.625rem;
  775. }
  776. .tabs .list-unstyled .media-body {
  777. margin-left: 0.625rem;
  778. }
  779. .tabs #tab-1 h3 {
  780. margin-bottom: 0.75rem;
  781. }
  782. .tabs #tab-1 .list-unstyled {
  783. margin-bottom: 1.5rem;
  784. }
  785. .tabs #tab-2 h3 {
  786. margin-bottom: 0.75rem;
  787. }
  788. .tabs #tab-2 .list-unstyled {
  789. margin-bottom: 1.5rem;
  790. }
  791. .tabs #tab-3 h3 {
  792. margin-bottom: 0.75rem;
  793. }
  794. .tabs #tab-3 .list-unstyled {
  795. margin-bottom: 1.5rem;
  796. }
  797. /**********************************/
  798. /* 08. Details Lightboxes */
  799. /**********************************/
  800. .lightbox-basic {
  801. margin: 2.5rem auto;
  802. padding: 2rem 1.5rem 2rem 1.5rem;
  803. border-radius: 0.25rem;
  804. background: #fff;
  805. text-align: left;
  806. }
  807. .lightbox-basic .container {
  808. padding-right: 0;
  809. padding-left: 0;
  810. }
  811. .lightbox-basic .image-container {
  812. max-width: 33.75rem;
  813. margin-right: auto;
  814. margin-bottom: 3rem;
  815. margin-left: auto;
  816. }
  817. .lightbox-basic h3 {
  818. margin-bottom: 0.5rem;
  819. }
  820. .lightbox-basic hr {
  821. width: 2.5rem;
  822. height: 0.125rem;
  823. margin-top: 0;
  824. margin-bottom: 0.875rem;
  825. margin-left: 0;
  826. border: 0;
  827. background-color: #20a0ff;
  828. text-align: left;
  829. }
  830. .lightbox-basic h4 {
  831. margin-bottom: 1rem;
  832. }
  833. .lightbox-basic .list-unstyled .fas {
  834. color:#20a0ff;
  835. font-size: 0.5rem;
  836. line-height: 1.625rem;
  837. }
  838. .lightbox-basic .list-unstyled .media-body {
  839. margin-left: 0.625rem;
  840. }
  841. .lightbox-basic .btn-outline-reg,
  842. .lightbox-basic .btn-solid-reg {
  843. margin-top: 0.75rem;
  844. }
  845. /* Signup Button */
  846. .lightbox-basic .btn-solid-reg.mfp-close {
  847. position: relative;
  848. width: auto;
  849. height: auto;
  850. color: #fff;
  851. opacity: 1;
  852. }
  853. .lightbox-basic .btn-solid-reg.mfp-close:hover {
  854. color: #20a0ff;
  855. }
  856. /* end of signup Button */
  857. /* Back Button */
  858. .lightbox-basic a.mfp-close.as-button {
  859. position: relative;
  860. width: auto;
  861. height: auto;
  862. margin-left: 0.375rem;
  863. color: #20a0ff;
  864. opacity: 1;
  865. }
  866. .lightbox-basic a.mfp-close.as-button:hover {
  867. color: #fff;
  868. }
  869. /* end of back button */
  870. .lightbox-basic button.mfp-close.x-button {
  871. position: absolute;
  872. top: -0.125rem;
  873. right: -0.125rem;
  874. width: 2.75rem;
  875. height: 2.75rem;
  876. color: #707984;
  877. }
  878. /***********************/
  879. /* 09. Details */
  880. /***********************/
  881. .basic-1 {
  882. padding-top: 7.5rem;
  883. padding-bottom: 8rem;
  884. }
  885. .basic-1 .text-container {
  886. margin-bottom: 3.75rem;
  887. }
  888. .basic-1 .list-unstyled {
  889. margin-bottom: 1.375rem;
  890. }
  891. .basic-1 .list-unstyled .fas {
  892. color: #20a0ff;
  893. font-size: 0.5rem;
  894. line-height: 1.625rem;
  895. }
  896. .basic-1 .list-unstyled .media-body {
  897. margin-left: 0.625rem;
  898. }
  899. /*********************/
  900. /* 10. Video */
  901. /*********************/
  902. .basic-2 {
  903. padding-top: 8rem;
  904. padding-bottom: 6.75rem;
  905. background-color: #f3f7fd;
  906. text-align: center;
  907. }
  908. .basic-2 .image-container {
  909. margin-bottom: 2rem;
  910. }
  911. .basic-2 .image-container img {
  912. border-radius: 0.75rem;
  913. }
  914. .basic-2 .video-wrapper {
  915. position: relative;
  916. }
  917. /* Video Play Button */
  918. .basic-2 .video-play-button {
  919. position: absolute;
  920. z-index: 10;
  921. top: 50%;
  922. left: 50%;
  923. display: block;
  924. box-sizing: content-box;
  925. width: 2rem;
  926. height: 2.75rem;
  927. padding: 1.125rem 1.25rem 1.125rem 1.75rem;
  928. border-radius: 50%;
  929. -webkit-transform: translateX(-50%) translateY(-50%);
  930. -ms-transform: translateX(-50%) translateY(-50%);
  931. transform: translateX(-50%) translateY(-50%);
  932. }
  933. .basic-2 .video-play-button:before {
  934. content: "";
  935. position: absolute;
  936. z-index: 0;
  937. top: 50%;
  938. left: 50%;
  939. display: block;
  940. width: 4.75rem;
  941. height: 4.75rem;
  942. border-radius: 50%;
  943. background: #20a0ff;
  944. animation: pulse-border 1500ms ease-out infinite;
  945. -webkit-transform: translateX(-50%) translateY(-50%);
  946. -ms-transform: translateX(-50%) translateY(-50%);
  947. transform: translateX(-50%) translateY(-50%);
  948. }
  949. .basic-2 .video-play-button:after {
  950. content: "";
  951. position: absolute;
  952. z-index: 1;
  953. top: 50%;
  954. left: 50%;
  955. display: block;
  956. width: 4.375rem;
  957. height: 4.375rem;
  958. border-radius: 50%;
  959. background: #20a0ff;
  960. transition: all 200ms;
  961. -webkit-transform: translateX(-50%) translateY(-50%);
  962. -ms-transform: translateX(-50%) translateY(-50%);
  963. transform: translateX(-50%) translateY(-50%);
  964. }
  965. .basic-2 .video-play-button span {
  966. position: relative;
  967. display: block;
  968. z-index: 3;
  969. top: 0.375rem;
  970. left: 0.25rem;
  971. width: 0;
  972. height: 0;
  973. border-left: 1.625rem solid #fff;
  974. border-top: 1rem solid transparent;
  975. border-bottom: 1rem solid transparent;
  976. }
  977. @keyframes pulse-border {
  978. 0% {
  979. transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
  980. opacity: 1;
  981. }
  982. 100% {
  983. transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
  984. opacity: 0;
  985. }
  986. }
  987. /* end of video play button */
  988. .basic-2 .p-heading {
  989. margin-bottom: 1rem;
  990. }
  991. /***********************/
  992. /* 11. Pricing */
  993. /***********************/
  994. .cards-2 {
  995. padding-top: 7.875rem;
  996. padding-bottom: 2.25rem;
  997. background-color: #f3f7fd;
  998. text-align: center;
  999. }
  1000. .cards-2 .h2-heading {
  1001. margin-bottom: 3.75rem;
  1002. }
  1003. .cards-2 .card {
  1004. display: block;
  1005. max-width: 19rem;
  1006. margin-right: auto;
  1007. margin-bottom: 3rem;
  1008. margin-left: auto;
  1009. border: 1px solid #ccd3df;
  1010. border-radius: 0.375rem;
  1011. }
  1012. .cards-2 .card .card-body {
  1013. padding: 2.5rem 2rem 2.75rem 2em;
  1014. }
  1015. .cards-2 .card .card-title {
  1016. margin-bottom: 0.5rem;
  1017. color: #20a0ff;
  1018. font: 700 1.125rem/1.5rem "Open Sans", sans-serif;
  1019. }
  1020. .cards-2 .card .price .currency {
  1021. margin-right: 0.25rem;
  1022. color: #434c54;
  1023. font-weight: 700;
  1024. font-size: 1.5rem;
  1025. vertical-align: 40%;
  1026. }
  1027. .cards-2 .card .price .value {
  1028. color: #434c54;
  1029. font: 700 3.25rem/3.5rem "Open Sans", sans-serif;
  1030. text-align: center;
  1031. }
  1032. .cards-2 .card .frequency {
  1033. font-size: 0.875rem;
  1034. }
  1035. .cards-2 .card .divider {
  1036. height: 1px;
  1037. margin-top: 1.75rem;
  1038. margin-bottom: 2rem;
  1039. border: none;
  1040. background-color: #ccd3df;
  1041. }
  1042. .cards-2 .card .list-unstyled {
  1043. margin-top: 1.875rem;
  1044. margin-bottom: 1.625rem;
  1045. text-align: left;
  1046. }
  1047. .cards-2 .card .list-unstyled .media {
  1048. margin-bottom: 0.5rem;
  1049. }
  1050. .cards-2 .card .list-unstyled .fas {
  1051. color: #20a0ff;
  1052. font-size: 0.875rem;
  1053. line-height: 1.625rem;
  1054. }
  1055. .cards-2 .card .list-unstyled .fas.fa-times {
  1056. margin-left: 0.1875rem;
  1057. margin-right: 0.125rem;
  1058. color: #555;
  1059. }
  1060. .cards-2 .card .list-unstyled .media-body {
  1061. margin-left: 0.625rem;
  1062. vertical-align: middle;
  1063. }
  1064. /****************************/
  1065. /* 12. Testimonials */
  1066. /****************************/
  1067. .slider-2 {
  1068. padding-top: 2.75rem;
  1069. padding-bottom: 4rem;
  1070. }
  1071. .slider-2 .slider-container {
  1072. position: relative;
  1073. }
  1074. .slider-2 .swiper-container {
  1075. position: static;
  1076. width: 82%;
  1077. text-align: center;
  1078. }
  1079. .slider-2 .image-wrapper {
  1080. width: 6rem;
  1081. margin-right: auto;
  1082. margin-bottom: 1rem;
  1083. margin-left: auto;
  1084. }
  1085. .slider-2 .image-wrapper img {
  1086. border-radius: 50%;
  1087. }
  1088. .slider-2 .testimonial-text {
  1089. margin-bottom: 0.5rem;
  1090. }
  1091. .slider-2 .testimonial-author {
  1092. color: #333;
  1093. }
  1094. .slider-2 .swiper-button-prev,
  1095. .slider-2 .swiper-button-next {
  1096. width: 1.125rem;
  1097. }
  1098. .slider-2 .swiper-button-prev:focus,
  1099. .slider-2 .swiper-button-next:focus {
  1100. /* even if you can't see it chrome you can see it on mobile device */
  1101. outline: none;
  1102. }
  1103. .slider-2 .swiper-button-prev {
  1104. left: -0.375rem;
  1105. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23505c67'%2F%3E%3C%2Fsvg%3E");
  1106. background-size: 1.125rem 1.75rem;
  1107. }
  1108. .slider-2 .swiper-button-next {
  1109. right: -0.375rem;
  1110. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23505c67'%2F%3E%3C%2Fsvg%3E");
  1111. background-size: 1.125rem 1.75rem;
  1112. }
  1113. /**************************/
  1114. /* 13. Newsletter */
  1115. /**************************/
  1116. .form {
  1117. padding-top: 4rem;
  1118. padding-bottom: 6rem;
  1119. }
  1120. .form .text-container {
  1121. margin-bottom: 3.5rem;
  1122. padding: 3.5rem 1rem 2.5rem 1rem;
  1123. border-radius: 0.5rem;
  1124. background-color: #f3f7fd;
  1125. }
  1126. .form h2 {
  1127. margin-bottom: 2.75rem;
  1128. text-align: center;
  1129. }
  1130. .form .icon-container {
  1131. text-align: center;
  1132. }
  1133. .form .fa-stack {
  1134. width: 2em;
  1135. margin-bottom: 0.75rem;
  1136. margin-right: 0.375rem;
  1137. font-size: 1.5rem;
  1138. }
  1139. .form .fa-stack .fa-stack-1x {
  1140. color: #fff;
  1141. transition: all 0.2s ease;
  1142. }
  1143. .form .fa-stack .fa-stack-2x {
  1144. color: #20a0ff;
  1145. transition: all 0.2s ease;
  1146. }
  1147. .form .fa-stack:hover .fa-stack-1x {
  1148. color: #20a0ff;
  1149. }
  1150. .form .fa-stack:hover .fa-stack-2x {
  1151. color: #f3f7fd;
  1152. }
  1153. /**********************/
  1154. /* 14. Footer */
  1155. /**********************/
  1156. .footer-frame {
  1157. width: 100%;
  1158. height: 1.5rem;
  1159. }
  1160. .footer {
  1161. padding-top: 3rem;
  1162. padding-bottom: 0.5rem;
  1163. background-color: #20a0ff;
  1164. }
  1165. .footer .footer-col {
  1166. margin-bottom: 2.25rem;
  1167. }
  1168. .footer h4 {
  1169. margin-bottom: 0.625rem;
  1170. color: #fff;
  1171. }
  1172. .footer .list-unstyled,
  1173. .footer p {
  1174. color: #f3f7fd;
  1175. }
  1176. .footer .footer-col.middle .list-unstyled .fas {
  1177. color: #fff;
  1178. font-size: 0.5rem;
  1179. line-height: 1.5rem;
  1180. }
  1181. .footer .footer-col.middle .list-unstyled .media-body {
  1182. margin-left: 0.5rem;
  1183. }
  1184. .footer .footer-col.last .list-unstyled .fas {
  1185. color: #fff;
  1186. font-size: 0.875rem;
  1187. line-height: 1.5rem;
  1188. }
  1189. .footer .footer-col.last .list-unstyled .media-body {
  1190. margin-left: 0.625rem;
  1191. }
  1192. .footer .footer-col.last .list-unstyled .fas.fa-globe {
  1193. margin-left: 1rem;
  1194. margin-right: 0.625rem;
  1195. }
  1196. /*************************/
  1197. /* 15. Copyright */
  1198. /*************************/
  1199. .copyright {
  1200. padding-top: 1rem;
  1201. padding-bottom: 0.375rem;
  1202. background-color: #20a0ff;
  1203. text-align: center;
  1204. }
  1205. .copyright .p-small {
  1206. padding-top: 1.375rem;
  1207. border-top: 1px solid #718ad1;
  1208. color: #fff;
  1209. }
  1210. .copyright a {
  1211. color: #96a8da;
  1212. }
  1213. /**********************************/
  1214. /* 16. Back To Top Button */
  1215. /**********************************/
  1216. a.back-to-top {
  1217. position: fixed;
  1218. z-index: 999;
  1219. right: 0.75rem;
  1220. bottom: 0.75rem;
  1221. display: none;
  1222. width: 2.625rem;
  1223. height: 2.625rem;
  1224. border-radius: 1.875rem;
  1225. background: #2092D9 url("../images/up-arrow.png") no-repeat center 47%;
  1226. background-size: 1.125rem 1.125rem;
  1227. text-indent: -9999px;
  1228. }
  1229. a:hover.back-to-top {
  1230. background-color: #2082D9;
  1231. }
  1232. /***************************/
  1233. /* 17. Extra Pages */
  1234. /***************************/
  1235. .ex-header {
  1236. padding-top: 8rem;
  1237. padding-bottom: 5rem;
  1238. background-color: #20a0ff;
  1239. text-align: center;
  1240. }
  1241. .ex-header h1 {
  1242. color: #fff;
  1243. }
  1244. .ex-basic-1 {
  1245. padding-top: 2rem;
  1246. padding-bottom: 0.875rem;
  1247. background-color: #f3f7fd;
  1248. }
  1249. .ex-basic-1 .breadcrumbs {
  1250. margin-bottom: 1.125rem;
  1251. }
  1252. .ex-basic-1 .breadcrumbs .fa {
  1253. margin-right: 0.5rem;
  1254. margin-left: 0.625rem;
  1255. }
  1256. .ex-basic-2 {
  1257. padding-top: 4.75rem;
  1258. padding-bottom: 4rem;
  1259. }
  1260. .ex-basic-2 h3 {
  1261. margin-bottom: 1rem;
  1262. }
  1263. .ex-basic-2 .text-container {
  1264. margin-bottom: 3.625rem;
  1265. }
  1266. .ex-basic-2 .text-container.last {
  1267. margin-bottom: 0;
  1268. }
  1269. .ex-basic-2 .text-container.dark {
  1270. padding: 1.625rem 1.5rem 0.75rem 2rem;
  1271. background-color: #f3f7fd;
  1272. }
  1273. .ex-basic-2 .image-container-large {
  1274. margin-bottom: 4rem;
  1275. }
  1276. .ex-basic-2 .image-container-large img {
  1277. border-radius: 0.25rem;
  1278. }
  1279. .ex-basic-2 .image-container-small img {
  1280. border-radius: 0.25rem;
  1281. }
  1282. .ex-basic-2 .list-unstyled .fas {
  1283. color: #20a0ff;
  1284. font-size: 0.5rem;
  1285. line-height: 1.625rem;
  1286. }
  1287. .ex-basic-2 .list-unstyled .media-body {
  1288. margin-left: 0.625rem;
  1289. }
  1290. .ex-basic-2 .form-container {
  1291. margin-top: 3rem;
  1292. }
  1293. .ex-basic-2 .btn-outline-reg {
  1294. margin-top: 1.75rem;
  1295. }
  1296. .ex-footer-frame {
  1297. width: 100%;
  1298. height: 2.75rem;
  1299. background-color: #f3f7fd;
  1300. }
  1301. /****************************************/
  1302. /* 18. Sign Up and Log In Pages */
  1303. /****************************************/
  1304. .ex-2-header {
  1305. padding-top: 9rem;
  1306. background-color: #20a0ff;
  1307. text-align: center;
  1308. min-height: 100vh;
  1309. }
  1310. .ex-2-header h1,
  1311. .ex-2-header p {
  1312. color: #fff;
  1313. }
  1314. .ex-2-header p {
  1315. max-width: 24rem;
  1316. margin-right: auto;
  1317. margin-bottom: 2.5rem;
  1318. margin-left: auto;
  1319. }
  1320. .ex-2-header .form-container {
  1321. max-width: 26rem;
  1322. margin-right: auto;
  1323. margin-left: auto;
  1324. padding: 2.25rem 1.25rem 1.25rem 1.25rem;
  1325. border-radius: 0.5rem;
  1326. background-color: #f3f7fd;
  1327. }
  1328. .ex-2-header .checkbox {
  1329. text-align: left;
  1330. }
  1331. /*****************************/
  1332. /* 19. Media Queries */
  1333. /*****************************/
  1334. /* Min-width width 768px */
  1335. @media (min-width: 768px) {
  1336. /* General Styles */
  1337. .p-heading {
  1338. width: 85%;
  1339. margin-right: auto;
  1340. margin-left: auto;
  1341. }
  1342. .h2-heading {
  1343. width: 80%;
  1344. margin-right: auto;
  1345. margin-left: auto;
  1346. }
  1347. /* end of general styles */
  1348. /* Header */
  1349. .header .text-container {
  1350. margin-bottom: 4rem;
  1351. }
  1352. .header h1 {
  1353. font-size: 3.5rem;
  1354. line-height: 4.125rem;
  1355. }
  1356. .header .btn-solid-lg {
  1357. margin-bottom: 0;
  1358. margin-left: 0;
  1359. }
  1360. .header-frame {
  1361. height: 5.5rem;
  1362. }
  1363. /* end of header */
  1364. /* Testimonials */
  1365. .slider-2 .swiper-button-prev {
  1366. width: 1.375rem;
  1367. background-size: 1.375rem 2.125rem;
  1368. }
  1369. .slider-2 .swiper-button-next {
  1370. width: 1.375rem;
  1371. background-size: 1.375rem 2.125rem;
  1372. }
  1373. /* end of testimonials */
  1374. /* Newsletter */
  1375. .form .text-container {
  1376. padding: 4rem 2.5rem 3rem 2.5rem;
  1377. }
  1378. .form form {
  1379. margin-right: 4rem;
  1380. margin-left: 4rem;
  1381. }
  1382. /* end of newsletter */
  1383. /* Footer */
  1384. .footer-frame {
  1385. height: 5rem;
  1386. }
  1387. /* end of footer */
  1388. /* Extra Pages */
  1389. .ex-header {
  1390. padding-top: 11rem;
  1391. padding-bottom: 9rem;
  1392. }
  1393. .ex-basic-2 .text-container.dark {
  1394. padding: 2.5rem 3rem 2rem 3rem;
  1395. }
  1396. .ex-basic-2 .form-container {
  1397. margin-top: 0;
  1398. }
  1399. /* end of extra pages */
  1400. /* Sign Up And Log In Pages */
  1401. .ex-2-header {
  1402. padding-top: 11rem;
  1403. }
  1404. .ex-2-header .form-container {
  1405. padding: 2.25rem 1.75rem 1.25rem 1.75rem;
  1406. }
  1407. /* end of sign up and log in pages */
  1408. }
  1409. /* end of min-width width 768px */
  1410. /* Min-width width 992px */
  1411. @media (min-width: 992px) {
  1412. /* Navigation */
  1413. .navbar-custom {
  1414. padding: 2.125rem 1.5rem 2.125rem 2rem;
  1415. background: transparent;
  1416. box-shadow: none;
  1417. }
  1418. .navbar-custom .navbar-nav {
  1419. margin-top: 0;
  1420. margin-bottom: 0;
  1421. }
  1422. .navbar-custom .nav-item .nav-link {
  1423. padding: 0.25rem 0.75rem 0.25rem 0.75rem;
  1424. }
  1425. .navbar-custom .nav-item .nav-link:hover,
  1426. .navbar-custom .nav-item .nav-link.active {
  1427. opacity: 1;
  1428. }
  1429. .navbar-custom.top-nav-collapse {
  1430. padding: 0.5rem 1.5rem 0.5rem 2rem;
  1431. background-color: #20a0ff;
  1432. box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.1);
  1433. }
  1434. .navbar-custom.top-nav-collapse .nav-item .nav-link:hover,
  1435. .navbar-custom.top-nav-collapse .nav-item .nav-link.active {
  1436. color: #fff;
  1437. }
  1438. .navbar-custom .dropdown-menu {
  1439. padding-top: 1rem;
  1440. padding-bottom: 1rem;
  1441. border-top: 0.25rem solid rgba(0, 0, 0, 0);
  1442. border-radius: 0.25rem;
  1443. }
  1444. .navbar-custom.top-nav-collapse .dropdown-menu {
  1445. border-top: 0.25rem solid rgba(0, 0, 0, 0);
  1446. box-shadow: 0 0.375rem 0.375rem 0 rgba(0, 0, 0, 0.02);
  1447. }
  1448. .navbar-custom .dropdown-item {
  1449. padding-top: 0.25rem;
  1450. padding-bottom: 0.25rem;
  1451. }
  1452. .navbar-custom .dropdown-items-divide-hr {
  1453. width: 84%;
  1454. }
  1455. .navbar-custom .nav-item .btn-outline-sm {
  1456. margin-top: 0;
  1457. margin-bottom: 0;
  1458. margin-left: 1rem;
  1459. }
  1460. /* end of navigation */
  1461. /* General Styles */
  1462. .p-heading {
  1463. width: 65%;
  1464. }
  1465. .h2-heading {
  1466. width: 60%;
  1467. }
  1468. /* end of general styles */
  1469. /* Header */
  1470. .header .header-content {
  1471. text-align: left;
  1472. }
  1473. .header .text-container {
  1474. margin-top: 4rem;
  1475. margin-bottom: 0;
  1476. }
  1477. .header .image-container {
  1478. position: relative;
  1479. margin-top: 3rem;
  1480. }
  1481. .header .image-container .img-wrapper {
  1482. position: absolute;
  1483. display: block;
  1484. width: 470px;
  1485. }
  1486. .header-frame {
  1487. height: 8rem;
  1488. }
  1489. /* end of header */
  1490. /* Description */
  1491. .cards-1 .card {
  1492. display: inline-block;
  1493. width: 17rem;
  1494. max-width: 100%;
  1495. margin-right: 1rem;
  1496. margin-left: 1rem;
  1497. vertical-align: top;
  1498. }
  1499. .cards-1 .scenes {
  1500. display: inline-block;
  1501. width: 20rem;
  1502. max-width: 100%;
  1503. margin-right: 1rem;
  1504. margin-left: 1rem;
  1505. vertical-align: top;
  1506. }
  1507. .cards-1 .card-image {
  1508. width: 9rem;
  1509. }
  1510. /* end of description */
  1511. /* Features */
  1512. .tabs .nav-tabs {
  1513. display: flex;
  1514. justify-content: center;
  1515. margin-bottom: 2.75rem;
  1516. }
  1517. .tabs .nav-link {
  1518. padding-right: 1.25rem;
  1519. padding-left: 1.25rem;
  1520. border-bottom: 2px solid rgb(202, 202, 202);
  1521. }
  1522. .tabs .nav-link:hover,
  1523. .tabs .nav-link.active {
  1524. border-bottom: 2px solid #20a0ff;
  1525. }
  1526. .tabs .image-container {
  1527. margin-bottom: 0;
  1528. }
  1529. /* end of features */
  1530. /* Details Lightboxes */
  1531. .lightbox-basic {
  1532. max-width: 62.5rem;
  1533. padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  1534. }
  1535. .lightbox-basic .image-container {
  1536. max-width: 100%;
  1537. margin-right: 2rem;
  1538. margin-bottom: 0;
  1539. margin-left: 0.5rem;
  1540. }
  1541. .lightbox-basic h3 {
  1542. margin-top: 0.5rem;
  1543. }
  1544. /* end of details lightboxes */
  1545. /* Details */
  1546. .basic-1 {
  1547. padding-top: 8rem;
  1548. }
  1549. .basic-1 .text-container {
  1550. margin-bottom: 0;
  1551. }
  1552. /* end of details */
  1553. /* Video */
  1554. .basic-2 .image-container {
  1555. max-width: 53.125rem;
  1556. margin-right: auto;
  1557. margin-left: auto;
  1558. }
  1559. .basic-2 p {
  1560. width: 65%;
  1561. margin-right: auto;
  1562. margin-left: auto;
  1563. }
  1564. /* end of video */
  1565. /* Pricing */
  1566. .cards-2 .card {
  1567. display: inline-block;
  1568. margin-right: 0.5rem;
  1569. margin-left: 0.5rem;
  1570. vertical-align: top;
  1571. }
  1572. /* end of pricing */
  1573. /* Testimonials */
  1574. .slider-2 .swiper-container {
  1575. width: 92%;
  1576. text-align: left;
  1577. }
  1578. .slider-2 .image-wrapper {
  1579. float: left;
  1580. width: 10rem;
  1581. margin-bottom: 0;
  1582. }
  1583. .slider-2 .text-wrapper {
  1584. max-width: 100%;
  1585. margin-top: 1.25rem;
  1586. margin-left: 13rem;
  1587. }
  1588. .slider-2 .swiper-button-prev {
  1589. left: -0.75rem;
  1590. }
  1591. .slider-2 .swiper-button-next {
  1592. right: -0.75rem;
  1593. }
  1594. /* end of testimonials */
  1595. /* Newsletter */
  1596. .form .text-container {
  1597. width: 55rem;
  1598. margin-right: auto;
  1599. margin-left: auto;
  1600. padding-top: 5rem;
  1601. padding-bottom: 4.5rem;
  1602. }
  1603. .form h2 {
  1604. margin-right: 7rem;
  1605. margin-left: 7rem;
  1606. }
  1607. .form form {
  1608. margin-right: 9rem;
  1609. margin-left: 9rem;
  1610. }
  1611. /* end of newsletter */
  1612. /* Extra Pages */
  1613. .ex-header h1 {
  1614. width: 80%;
  1615. margin-right: auto;
  1616. margin-left: auto;
  1617. }
  1618. .ex-basic-2 {
  1619. padding-bottom: 5rem;
  1620. }
  1621. /* end of extra pages */
  1622. }
  1623. /* end of min-width width 992px */
  1624. /* Min-width width 1200px */
  1625. @media (min-width: 1200px) {
  1626. /* General Styles */
  1627. .h2-heading {
  1628. width: 50%;
  1629. }
  1630. /* end of general styles */
  1631. /* Header */
  1632. .header .header-content {
  1633. padding-top: 11rem;
  1634. padding-bottom: 5rem;
  1635. }
  1636. .header .text-container {
  1637. margin-top: 5.5rem;
  1638. margin-right: 0.5rem;
  1639. }
  1640. .header .image-container {
  1641. margin-top: 1rem;
  1642. margin-left: 1.5rem;
  1643. }
  1644. .header .image-container .img-wrapper {
  1645. width: 630px;
  1646. }
  1647. .header-frame {
  1648. height: 9.375rem;
  1649. }
  1650. /* end of header */
  1651. /* Customer */
  1652. .slider-1 .slider-container {
  1653. margin-right: 3rem;
  1654. margin-left: 3rem;
  1655. }
  1656. /* end of customer */
  1657. /* Description */
  1658. .cards-1 .card {
  1659. width: 18.875rem;
  1660. margin-right: 2rem;
  1661. margin-left: 2rem;
  1662. }
  1663. .cards-1 .scenes {
  1664. width: 22.875rem;
  1665. margin-right: 2rem;
  1666. margin-left: 2rem;
  1667. }
  1668. .cards-1 .card-image {
  1669. width: 12.5rem;
  1670. }
  1671. /* end of description */
  1672. /* Features */
  1673. .tabs .image-container {
  1674. margin-right: 1.5rem;
  1675. margin-left: 1rem;
  1676. }
  1677. .tabs .text-container {
  1678. margin-top: 1.5rem;
  1679. margin-right: 1rem;
  1680. margin-left: 1.5rem;
  1681. }
  1682. /* end of features */
  1683. /* Details */
  1684. .basic-1 .image-container {
  1685. margin-right: 1rem;
  1686. margin-left: 1.5rem;
  1687. }
  1688. .basic-1 .text-container {
  1689. margin-top: 1rem;
  1690. margin-right: 1.5rem;
  1691. margin-left: 1rem;
  1692. }
  1693. .basic-1 h2 {
  1694. margin-bottom: 1rem;
  1695. }
  1696. /* end of details */
  1697. /* Pricing */
  1698. .cards-2 .card {
  1699. width: 19.375rem;
  1700. max-width: 100%;
  1701. margin-right: 1.75rem;
  1702. margin-left: 1.75rem;
  1703. }
  1704. .cards-2 .card .card-body {
  1705. padding-right: 2.25rem;
  1706. padding-left: 2.25rem;
  1707. }
  1708. /* end of pricing */
  1709. /* Testimonials */
  1710. .slider-2 .slider-container {
  1711. width: 64.125rem;
  1712. margin-right: auto;
  1713. margin-left: auto;
  1714. }
  1715. /* end of testimonials */
  1716. /* Newsletter */
  1717. .form .text-container {
  1718. width: 64.75rem;
  1719. padding-top: 6rem;
  1720. padding-bottom: 5.5rem;
  1721. }
  1722. .form h2 {
  1723. margin-right: 12rem;
  1724. margin-left: 12rem;
  1725. }
  1726. .form form {
  1727. margin-right: 15rem;
  1728. margin-left: 15rem;
  1729. }
  1730. /* end of newsletter */
  1731. /* Footer */
  1732. .footer .footer-col.first {
  1733. margin-right: 1.5rem;
  1734. }
  1735. .footer .footer-col.middle {
  1736. margin-right: 0.75rem;
  1737. margin-left: 0.75rem;
  1738. }
  1739. .footer .footer-col.last {
  1740. margin-left: 1.5rem;
  1741. }
  1742. /* end of footer */
  1743. /* Extra Pages */
  1744. .ex-header h1 {
  1745. width: 60%;
  1746. margin-right: auto;
  1747. margin-left: auto;
  1748. }
  1749. .ex-basic-2 .form-container {
  1750. margin-left: 1.75rem;
  1751. }
  1752. .ex-basic-2 .image-container-small {
  1753. margin-left: 1.75rem;
  1754. }
  1755. /* end of extra pages */
  1756. }
  1757. /* end of min-width width 1200px */
  1758. /* new style start */
  1759. .nav-divider {
  1760. border:1px solid #fff;
  1761. vertical-align: middle;
  1762. }
  1763. .other-item {
  1764. margin-right: 3rem;
  1765. }
  1766. .overload {
  1767. position: relative;
  1768. }
  1769. .overload span {
  1770. color: #20a0ff;
  1771. cursor: pointer;
  1772. }
  1773. .overload .service {
  1774. display: none;
  1775. position: absolute;
  1776. right: 13rem;
  1777. padding: 1rem;
  1778. background: #fff;
  1779. box-shadow: 3px 3px 10px #ccc;
  1780. z-index: 99999999;
  1781. }
  1782. .overload .service img {
  1783. width: 8rem;
  1784. }
  1785. .overload .service p {
  1786. margin-bottom: 0;
  1787. margin: 0.5rem 0;
  1788. }
  1789. .overload .service p:last-child {
  1790. color: #20a0ff;
  1791. }
  1792. .overload:hover .service {
  1793. display: block;
  1794. }
  1795. #scenes {
  1796. background: #f3f7fd;
  1797. }
  1798. #scenes .card {
  1799. background-color: #f3f7fd;
  1800. }
  1801. .cards-1 .scenes {
  1802. text-align: left;
  1803. padding: 1rem 1.2rem;
  1804. background: #f3f7fd;
  1805. border-radius: 10px;
  1806. }
  1807. .cards-1 .scenes .scenes-head {
  1808. color: #20a0ff;
  1809. font-size: 1.2rem;
  1810. margin-bottom: 0.8rem;
  1811. }
  1812. .cards-1 .scenes .scenes-body img {
  1813. float: left;
  1814. width: 4rem;
  1815. margin-right: 0.5rem;
  1816. vertical-align: middle;
  1817. }
  1818. .cards-1 .scenes .scenes-body p {
  1819. font-size: 1rem;
  1820. vertical-align: middle;
  1821. }
  1822. .swiper-slide .img-fluid {
  1823. border: 1px solid #eee;
  1824. }
  1825. /* new style end */