styles.css 41 KB

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