style.css 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817
  1. /***************************************************************************************************************
  2. |||||||||||||||||||||||||||| MASTER STYLESHEET FOR DIMON ||||||||||||||||||||||||||||||||||||
  3. ****************************************************************************************************************
  4. |||||||||||||||||||||||||||| TABLE OF CONTENT ||||||||||||||||||||||||||||||||||||
  5. ****************************************************************************************************************
  6. ****************************************************************************************************************
  7. * 1. common styles
  8. * 2. header styles
  9. * 3. banner styles
  10. * 4. blog styles
  11. * 5. sidebar styles
  12. * 6. footer styles
  13. * 7. inner-banner styles
  14. * 8. video styles
  15. * 9. brand styles
  16. * 10. mailchimp styles
  17. * 11. accrodion styles
  18. * 12. fact styles
  19. * 13. testimonials styles
  20. * 14. pricing styles
  21. * 15. cta styles
  22. * 16. service styles
  23. * 17. app-shot styles
  24. 更多模板:http://www.bootstrapmb.com/
  25. ****************************************************************************************************************
  26. |||||||||||||||||||||||||||| End TABLE OF CONTENT ||||||||||||||||||||||||||||||||||||
  27. ****************************************************************************************************************/
  28. /*
  29. * 1. common styles
  30. */
  31. body {
  32. font-family: "Rubik";
  33. color: #74727a;
  34. font-size: 18px;
  35. line-height: 34px;
  36. }
  37. a:active,
  38. a:hover,
  39. a:focus,
  40. a:visited {
  41. text-decoration: none;
  42. }
  43. .page-wrapper {
  44. position: relative;
  45. margin: 0 auto;
  46. width: 100%;
  47. min-width: 300px;
  48. overflow: hidden;
  49. }
  50. .thm-base-bg {
  51. background-color: #ff4eb5;
  52. }
  53. .thm-base-bg-2 {
  54. background-color: #ffa065;
  55. }
  56. .thm-gray-bg {
  57. background-color: #fefbf4;
  58. }
  59. @media (min-width: 1200px) {
  60. .container {
  61. max-width: 1200px;
  62. }
  63. }
  64. .block-title {
  65. margin-bottom: 45px;
  66. }
  67. .block-title__title {
  68. margin: 0;
  69. margin-top: -10px;
  70. font-size: 50px;
  71. font-weight: 400;
  72. color: #2a2833;
  73. line-height: 1.2em;
  74. }
  75. .block-title__title span {
  76. font-weight: 700;
  77. }
  78. .thm-btn {
  79. border: none;
  80. display: inline-block;
  81. vertical-align: middle;
  82. outline: none;
  83. font-size: 16px;
  84. font-weight: 500;
  85. color: #2a2833;
  86. padding: 13px 41px;
  87. border-radius: 5px;
  88. -webkit-transition: background .4s ease, color .4s ease;
  89. transition: background .4s ease, color .4s ease;
  90. background-image: -webkit-gradient(linear, left top, right top, from(#ff4eb5), to(#ffa065));
  91. background-image: linear-gradient(90deg, #ff4eb5 0%, #ffa065 100%);
  92. position: relative;
  93. }
  94. .thm-btn:before {
  95. content: '';
  96. position: absolute;
  97. top: 2px;
  98. right: 2px;
  99. bottom: 2px;
  100. left: 2px;
  101. border-radius: 5px;
  102. background-color: #fff;
  103. -webkit-transform: scaleX(1);
  104. transform: scaleX(1);
  105. -webkit-transition: -webkit-transform .4s ease;
  106. transition: -webkit-transform .4s ease;
  107. transition: transform .4s ease;
  108. transition: transform .4s ease, -webkit-transform .4s ease;
  109. }
  110. .thm-btn span {
  111. position: relative;
  112. }
  113. .thm-btn:hover {
  114. color: #fff;
  115. }
  116. .thm-btn:hover:before {
  117. -webkit-transform: scaleX(0);
  118. transform: scaleX(0);
  119. }
  120. .post-pagination {
  121. display: -webkit-box;
  122. display: -ms-flexbox;
  123. display: flex;
  124. -webkit-box-pack: center;
  125. -ms-flex-pack: center;
  126. justify-content: center;
  127. -webkit-box-align: center;
  128. -ms-flex-align: center;
  129. align-items: center;
  130. }
  131. .post-pagination a {
  132. border-radius: 50%;
  133. background-color: #fefbf4;
  134. font-size: 15px;
  135. font-weight: 600;
  136. text-align: center;
  137. padding: 8px 19px;
  138. color: #2a2833;
  139. -webkit-transition: all .4s ease;
  140. transition: all .4s ease;
  141. }
  142. .post-pagination a:hover, .post-pagination a.active {
  143. background-color: #2a2833;
  144. color: #fff;
  145. }
  146. .post-pagination a + a {
  147. margin-left: 15px;
  148. }
  149. .preloader {
  150. position: fixed;
  151. background-color: #fff;
  152. background-position: center center;
  153. background-repeat: no-repeat;
  154. top: 0;
  155. left: 0;
  156. right: 0;
  157. bottom: 0;
  158. z-index: 9991;
  159. display: -webkit-box;
  160. display: -ms-flexbox;
  161. display: flex;
  162. -webkit-box-pack: center;
  163. -ms-flex-pack: center;
  164. justify-content: center;
  165. -webkit-box-align: center;
  166. -ms-flex-align: center;
  167. align-items: center;
  168. text-align: center;
  169. }
  170. .preloader__image {
  171. -webkit-animation-fill-mode: both;
  172. animation-fill-mode: both;
  173. -webkit-animation-name: flipInY;
  174. animation-name: flipInY;
  175. -webkit-animation-duration: 2s;
  176. animation-duration: 2s;
  177. -webkit-animation-iteration-count: infinite;
  178. animation-iteration-count: infinite;
  179. }
  180. .scroll-to-top {
  181. display: inline-block;
  182. width: 45px;
  183. height: 45px;
  184. background-image: -webkit-gradient(linear, left top, right top, from(#ff4eb5), color-stop(51%, #ffa065), to(#ff4eb5));
  185. background-image: linear-gradient(to right, #ff4eb5 0%, #ffa065 51%, #ff4eb5 100%);
  186. background-size: 200% auto;
  187. position: fixed;
  188. bottom: 40px;
  189. right: 40px;
  190. z-index: 99;
  191. text-align: center;
  192. -webkit-transition: .4s;
  193. transition: .4s;
  194. display: none;
  195. border-radius: 50%;
  196. }
  197. .scroll-to-top i {
  198. color: #fff;
  199. font-size: 18px;
  200. line-height: 45px;
  201. }
  202. .scroll-to-top:hover {
  203. background-position: right center;
  204. }
  205. .scroll-to-top:hover i {
  206. color: #fff;
  207. }
  208. /*
  209. * 2. header styles
  210. */
  211. .header-navigation {
  212. background-color: transparent;
  213. margin-bottom: 0;
  214. border: none;
  215. border-radius: 0;
  216. padding: 0;
  217. position: relative;
  218. background-color: transparent;
  219. }
  220. .header-navigation .container {
  221. background: transparent;
  222. position: relative;
  223. display: block;
  224. }
  225. .header-navigation .container .logo-box {
  226. float: left;
  227. position: absolute;
  228. top: 50%;
  229. left: 15px;
  230. -webkit-transform: translateY(-50%);
  231. transform: translateY(-50%);
  232. display: -webkit-box;
  233. display: -ms-flexbox;
  234. display: flex;
  235. -webkit-box-align: center;
  236. -ms-flex-align: center;
  237. align-items: center;
  238. }
  239. .header-navigation .container .navbar-brand {
  240. height: auto;
  241. margin: 0;
  242. line-height: 1;
  243. }
  244. .header-navigation .container .menu-toggler {
  245. display: none;
  246. }
  247. .header-navigation .container .right-side-box {
  248. position: absolute;
  249. top: 50%;
  250. -webkit-transform: translateY(-50%);
  251. transform: translateY(-50%);
  252. right: 15px;
  253. }
  254. .header-navigation .main-navigation {
  255. float: none;
  256. text-align: right;
  257. padding-right: 90px;
  258. }
  259. @media (min-width: 1200px) {
  260. .header-navigation .main-navigation {
  261. display: block !important;
  262. }
  263. }
  264. .header-navigation ul.navigation-box {
  265. margin: 0;
  266. padding: 0;
  267. list-style: none;
  268. }
  269. .header-navigation ul.navigation-box li a .sub-nav-toggler {
  270. display: none;
  271. }
  272. .header-navigation ul.navigation-box > li {
  273. position: relative;
  274. padding: 40px 0;
  275. display: inline-block;
  276. vertical-align: middle;
  277. /* Second Level Menu */
  278. /* Thrid Level Menu */
  279. }
  280. .header-navigation ul.navigation-box > li + li {
  281. margin-left: 70px;
  282. }
  283. .header-navigation ul.navigation-box > li:first-child {
  284. padding-left: 0;
  285. }
  286. .header-navigation ul.navigation-box > li:last-child {
  287. padding-right: 0;
  288. }
  289. .header-navigation ul.navigation-box > li > a {
  290. padding: 0;
  291. -webkit-transition: all .4s ease;
  292. transition: all .4s ease;
  293. position: relative;
  294. font-size: 16px;
  295. font-weight: 400;
  296. color: #74727a;
  297. position: relative;
  298. }
  299. .header-navigation ul.navigation-box > li.current > a, .header-navigation ul.navigation-box > li:hover > a {
  300. color: #2a2833;
  301. text-shadow: 1px 0 0 rgba(42, 40, 51, 0.8);
  302. }
  303. .header-navigation ul.navigation-box > li > .sub-menu {
  304. position: absolute;
  305. top: 100%;
  306. left: 0;
  307. z-index: 911;
  308. float: left;
  309. min-width: 220px;
  310. padding: 0px 0px;
  311. text-align: left;
  312. list-style: none;
  313. background-color: #2a2833;
  314. background-clip: padding-box;
  315. opacity: 0;
  316. border-radius: 0px;
  317. visibility: hidden;
  318. -webkit-transition: opacity .4s ease, visibility .4s ease;
  319. transition: opacity .4s ease, visibility .4s ease;
  320. -webkit-box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
  321. box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
  322. }
  323. @media (min-width: 1200px) {
  324. .header-navigation ul.navigation-box > li > .sub-menu {
  325. display: block !important;
  326. }
  327. }
  328. .header-navigation ul.navigation-box > li > .sub-menu.right-align {
  329. left: auto;
  330. right: 0;
  331. }
  332. .header-navigation ul.navigation-box > li > .sub-menu.center-align {
  333. left: 50%;
  334. -webkit-transform: translateX(-50%);
  335. transform: translateX(-50%);
  336. }
  337. .header-navigation ul.navigation-box > li > .sub-menu > li {
  338. display: block;
  339. position: relative;
  340. -webkit-transition: all .4s ease;
  341. transition: all .4s ease;
  342. }
  343. .header-navigation ul.navigation-box > li > .sub-menu > li + li {
  344. border-top: 1px solid rgba(255, 255, 255, 0.1);
  345. }
  346. .header-navigation ul.navigation-box > li > .sub-menu > li > a {
  347. font-size: 15px;
  348. color: #fff;
  349. font-weight: 500;
  350. padding: 12px 30px;
  351. display: block;
  352. line-height: 26px;
  353. white-space: nowrap;
  354. position: relative;
  355. -webkit-transition: all .4s ease;
  356. transition: all .4s ease;
  357. }
  358. .header-navigation ul.navigation-box > li > .sub-menu > li:hover > a {
  359. color: #fff;
  360. background: #ffa065;
  361. }
  362. .header-navigation ul.navigation-box > li:hover:before {
  363. -webkit-transform: scale(1, 1);
  364. transform: scale(1, 1);
  365. -webkit-transform-origin: left bottom;
  366. transform-origin: left bottom;
  367. }
  368. .header-navigation ul.navigation-box > li:hover > .sub-menu {
  369. opacity: 1;
  370. visibility: visible;
  371. }
  372. .header-navigation ul.navigation-box > li > ul > li {
  373. /* no more nested showen */
  374. }
  375. .header-navigation ul.navigation-box > li > ul > li > .sub-menu {
  376. position: absolute;
  377. top: 0%;
  378. left: 100%;
  379. z-index: 911;
  380. float: left;
  381. min-width: 220px;
  382. padding: 0px 0px;
  383. text-align: left;
  384. list-style: none;
  385. background-color: #2a2833;
  386. background-clip: padding-box;
  387. opacity: 0;
  388. border-radius: 0px;
  389. visibility: hidden;
  390. -webkit-transition: opacity .4s ease, visibility .4s ease;
  391. transition: opacity .4s ease, visibility .4s ease;
  392. -webkit-box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
  393. box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
  394. }
  395. @media (min-width: 1200px) {
  396. .header-navigation ul.navigation-box > li > ul > li > .sub-menu {
  397. display: block !important;
  398. }
  399. }
  400. .header-navigation ul.navigation-box > li > ul > li > .sub-menu.right-align {
  401. left: auto;
  402. right: 100%;
  403. }
  404. .header-navigation ul.navigation-box > li > ul > li > .sub-menu.center-align {
  405. left: 50%;
  406. -webkit-transform: translateX(-50%);
  407. transform: translateX(-50%);
  408. }
  409. .header-navigation ul.navigation-box > li > ul > li > .sub-menu > li {
  410. display: block;
  411. position: relative;
  412. -webkit-transition: all .4s ease;
  413. transition: all .4s ease;
  414. }
  415. .header-navigation ul.navigation-box > li > ul > li > .sub-menu > li + li {
  416. border-top: 1px solid rgba(255, 255, 255, 0.1);
  417. }
  418. .header-navigation ul.navigation-box > li > ul > li > .sub-menu > li > a {
  419. font-size: 15px;
  420. color: #fff;
  421. font-weight: 500;
  422. padding: 12px 30px;
  423. display: block;
  424. line-height: 26px;
  425. white-space: nowrap;
  426. position: relative;
  427. -webkit-transition: all .4s ease;
  428. transition: all .4s ease;
  429. }
  430. .header-navigation ul.navigation-box > li > ul > li > .sub-menu > li:hover > a {
  431. color: #fff;
  432. background: #ffa065;
  433. }
  434. .header-navigation ul.navigation-box > li > ul > li:hover > .sub-menu {
  435. opacity: 1;
  436. visibility: visible;
  437. }
  438. .header-navigation ul.navigation-box > li > ul > li ul {
  439. display: none;
  440. }
  441. .stricked-menu {
  442. position: fixed;
  443. top: 0;
  444. left: 0;
  445. width: 100%;
  446. z-index: 999;
  447. background-color: #fff;
  448. -webkit-box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
  449. box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
  450. opacity: 0;
  451. -webkit-transform: translateY(-110%);
  452. transform: translateY(-110%);
  453. -webkit-transition: all .4s ease;
  454. transition: all .4s ease;
  455. }
  456. .stricked-menu ul.navigation-box > li {
  457. padding-top: 18px;
  458. padding-bottom: 18px;
  459. }
  460. .stricked-menu.stricky-fixed {
  461. opacity: 1;
  462. -webkit-transform: translateY(0%);
  463. transform: translateY(0%);
  464. }
  465. .site-header {
  466. position: relative;
  467. }
  468. .site-header__header-one {
  469. position: absolute;
  470. top: 0;
  471. left: 0;
  472. width: 100%;
  473. z-index: 91;
  474. }
  475. .site-header__header-one .header-navigation .main-navigation {
  476. padding-right: 0;
  477. text-align: center;
  478. }
  479. .site-header__header-two .header-navigation ul.navigation-box > li > a {
  480. color: #ffffff;
  481. }
  482. .site-header__header-two .header-navigation ul.navigation-box > li.current > a,
  483. .site-header__header-two .header-navigation ul.navigation-box > li:hover > a {
  484. color: #ffffff;
  485. text-shadow: 1px 0 0 rgba(255, 255, 255, 0.8);
  486. }
  487. .site-header__header-two .header__cta-btn {
  488. color: #fff;
  489. background-image: none;
  490. border-radius: 5px;
  491. overflow: hidden;
  492. }
  493. .site-header__header-two .header__cta-btn:before {
  494. top: 0;
  495. bottom: 0;
  496. left: 0;
  497. right: 0;
  498. background-color: transparent;
  499. border: 2px solid;
  500. -o-border-image: linear-gradient(90deg, #ff4eb5 0%, #ffa065 100%);
  501. border-image: -webkit-gradient(linear, left top, right top, from(#ff4eb5), to(#ffa065));
  502. border-image: linear-gradient(90deg, #ff4eb5 0%, #ffa065 100%);
  503. border-image-slice: 1;
  504. }
  505. .site-header__header-two .header__cta-btn:after {
  506. content: '';
  507. position: absolute;
  508. top: 0;
  509. bottom: 0;
  510. left: 0;
  511. right: 0;
  512. background-image: -webkit-gradient(linear, left top, right top, from(#ff4eb5), to(#ffa065));
  513. background-image: linear-gradient(90deg, #ff4eb5 0%, #ffa065 100%);
  514. border-radius: 5px;
  515. opacity: 0;
  516. -webkit-transition: all .4s ease;
  517. transition: all .4s ease;
  518. z-index: 0;
  519. }
  520. .site-header__header-two .header__cta-btn span {
  521. z-index: 2;
  522. }
  523. .site-header__header-two .header__cta-btn:hover:before {
  524. -webkit-transform: scaleX(1);
  525. transform: scaleX(1);
  526. }
  527. .site-header__header-two .header__cta-btn:hover:after {
  528. opacity: 1;
  529. }
  530. .site-header__header-two .stricked-menu {
  531. background-color: #2a2833;
  532. }
  533. /*
  534. * 3. banner styles
  535. */
  536. .banner-one {
  537. position: relative;
  538. background-image: url(../images/background/banner-bg-1-1.png);
  539. background-repeat: no-repeat;
  540. background-size: cover;
  541. background-position: top center;
  542. }
  543. .banner-one .container {
  544. padding-top: 350px;
  545. padding-bottom: 230px;
  546. position: relative;
  547. }
  548. .banner-one__title {
  549. margin: 0;
  550. color: #2a2833;
  551. font-weight: 300;
  552. font-size: 90px;
  553. line-height: 1em;
  554. letter-spacing: -.06em;
  555. }
  556. .banner-one__title span {
  557. font-weight: 500;
  558. }
  559. .banner-one__text {
  560. margin: 0;
  561. font-size: 20px;
  562. line-height: 36px;
  563. color: #74727a;
  564. margin-top: 25px;
  565. margin-bottom: 40px;
  566. }
  567. .banner-one__btn {
  568. padding: 18px 55px;
  569. }
  570. .banner-one__moc {
  571. position: absolute;
  572. bottom: 7%;
  573. right: -30px;
  574. }
  575. .banner-one__moc:before {
  576. content: '';
  577. width: 639px;
  578. height: 639px;
  579. background-image: linear-gradient(40deg, #ff43c0 0%, #ffa95c 100%);
  580. -webkit-box-shadow: 0px 20px 60px 0px rgba(244, 151, 190, 0.8);
  581. box-shadow: 0px 20px 60px 0px rgba(244, 151, 190, 0.8);
  582. border-radius: 50%;
  583. position: absolute;
  584. top: -14%;
  585. left: -24%;
  586. -webkit-transform-origin: center bottom;
  587. transform-origin: center bottom;
  588. -webkit-animation-fill-mode: both;
  589. animation-fill-mode: both;
  590. -webkit-animation-name: bounce;
  591. animation-name: bounce;
  592. -webkit-animation-timing-function: ease-out;
  593. animation-timing-function: ease-out;
  594. -webkit-animation-duration: 5s;
  595. animation-duration: 5s;
  596. -webkit-animation-iteration-count: infinite;
  597. animation-iteration-count: infinite;
  598. }
  599. .banner-one__moc img {
  600. position: relative;
  601. -webkit-animation: featureImgBounce 5s ease-in-out 0s infinite alternate;
  602. animation: featureImgBounce 5s ease-in-out 0s infinite alternate;
  603. }
  604. [class*=banner-one__shape-] {
  605. position: absolute;
  606. border-radius: 50%;
  607. -webkit-animation-name: bubbleMover;
  608. animation-name: bubbleMover;
  609. -webkit-animation-timing-function: linear;
  610. animation-timing-function: linear;
  611. -webkit-animation-iteration-count: infinite;
  612. animation-iteration-count: infinite;
  613. }
  614. .banner-one__shape-1 {
  615. background-image: linear-gradient(40deg, #0db8ff 0%, #f332ff 100%);
  616. -webkit-box-shadow: 0px 20px 60px 0px rgba(141, 142, 255, 0.8);
  617. box-shadow: 0px 20px 60px 0px rgba(141, 142, 255, 0.8);
  618. width: 143px;
  619. height: 143px;
  620. top: 5%;
  621. left: 3%;
  622. -webkit-animation-duration: 8s;
  623. animation-duration: 8s;
  624. -webkit-perspective: 150px;
  625. perspective: 150px;
  626. }
  627. .banner-one__shape-2 {
  628. background-image: linear-gradient(40deg, #39aeff 0%, #3cff53 100%);
  629. -webkit-box-shadow: 0px 20px 40px 0px rgba(58, 212, 173, 0.8);
  630. box-shadow: 0px 20px 40px 0px rgba(58, 212, 173, 0.8);
  631. width: 85px;
  632. height: 85px;
  633. top: 12%;
  634. left: 37%;
  635. -webkit-animation-duration: 10s;
  636. animation-duration: 10s;
  637. -webkit-perspective: 85px;
  638. perspective: 85px;
  639. }
  640. .banner-one__shape-3 {
  641. background-image: linear-gradient(40deg, #ff43c0 0%, #ffa95c 100%);
  642. -webkit-box-shadow: 0px 20px 40px 0px rgba(255, 118, 142, 0.8);
  643. box-shadow: 0px 20px 40px 0px rgba(255, 118, 142, 0.8);
  644. width: 85px;
  645. height: 85px;
  646. bottom: 12%;
  647. left: 6%;
  648. -webkit-animation-duration: 7s;
  649. animation-duration: 7s;
  650. -webkit-perspective: 85px;
  651. perspective: 85px;
  652. }
  653. .banner-one__shape-4 {
  654. background-image: linear-gradient(40deg, #ff703e 0%, #ffec4e 100%);
  655. -webkit-box-shadow: 0px 20px 40px 0px rgba(255, 178, 71, 0.8);
  656. box-shadow: 0px 20px 40px 0px rgba(255, 178, 71, 0.8);
  657. width: 85px;
  658. height: 85px;
  659. top: 20%;
  660. right: 4%;
  661. -webkit-animation-duration: 12s;
  662. animation-duration: 12s;
  663. -webkit-perspective: 85px;
  664. perspective: 85px;
  665. }
  666. @-webkit-keyframes bubbleMover {
  667. 0% {
  668. -webkit-transform: translateY(0px) translateX(0) rotate(0);
  669. transform: translateY(0px) translateX(0) rotate(0);
  670. }
  671. 30% {
  672. -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
  673. transform: translateY(30px) translateX(50px) rotate(15deg);
  674. -webkit-transform-origin: center center;
  675. transform-origin: center center;
  676. }
  677. 50% {
  678. -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
  679. transform: translateY(50px) translateX(100px) rotate(45deg);
  680. -webkit-transform-origin: right bottom;
  681. transform-origin: right bottom;
  682. }
  683. 80% {
  684. -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
  685. transform: translateY(30px) translateX(50px) rotate(15deg);
  686. -webkit-transform-origin: left top;
  687. transform-origin: left top;
  688. }
  689. 100% {
  690. -webkit-transform: translateY(0px) translateX(0) rotate(0);
  691. transform: translateY(0px) translateX(0) rotate(0);
  692. -webkit-transform-origin: center center;
  693. transform-origin: center center;
  694. }
  695. }
  696. @keyframes bubbleMover {
  697. 0% {
  698. -webkit-transform: translateY(0px) translateX(0) rotate(0);
  699. transform: translateY(0px) translateX(0) rotate(0);
  700. }
  701. 30% {
  702. -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
  703. transform: translateY(30px) translateX(50px) rotate(15deg);
  704. -webkit-transform-origin: center center;
  705. transform-origin: center center;
  706. }
  707. 50% {
  708. -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
  709. transform: translateY(50px) translateX(100px) rotate(45deg);
  710. -webkit-transform-origin: right bottom;
  711. transform-origin: right bottom;
  712. }
  713. 80% {
  714. -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
  715. transform: translateY(30px) translateX(50px) rotate(15deg);
  716. -webkit-transform-origin: left top;
  717. transform-origin: left top;
  718. }
  719. 100% {
  720. -webkit-transform: translateY(0px) translateX(0) rotate(0);
  721. transform: translateY(0px) translateX(0) rotate(0);
  722. -webkit-transform-origin: center center;
  723. transform-origin: center center;
  724. }
  725. }
  726. .banner-two {
  727. position: relative;
  728. background-color: #2a2833;
  729. background-image: url(../images/background/banner-2-bg.jpg);
  730. background-repeat: no-repeat;
  731. background-size: cover;
  732. background-position: top center;
  733. margin-bottom: 120px;
  734. }
  735. .banner-two .container {
  736. padding-top: 260px;
  737. padding-bottom: 120px;
  738. position: relative;
  739. }
  740. .banner-two__title {
  741. margin: 0;
  742. color: #fff;
  743. font-weight: 300;
  744. font-size: 90px;
  745. line-height: 1em;
  746. letter-spacing: -.06em;
  747. }
  748. .banner-two__title span {
  749. font-weight: 500;
  750. }
  751. .banner-two__text {
  752. margin: 0;
  753. font-size: 20px;
  754. line-height: 36px;
  755. color: rgba(255, 255, 255, 0.7);
  756. margin-top: 25px;
  757. margin-bottom: 40px;
  758. }
  759. .banner-two__btn {
  760. color: #fff;
  761. background-image: none;
  762. border-radius: 5px;
  763. overflow: hidden;
  764. padding: 16px 55px;
  765. }
  766. .banner-two__btn:before {
  767. top: 0;
  768. bottom: 0;
  769. left: 0;
  770. right: 0;
  771. background-color: transparent;
  772. border: 2px solid;
  773. -o-border-image: linear-gradient(90deg, #ff4eb5 0%, #ffa065 100%);
  774. border-image: -webkit-gradient(linear, left top, right top, from(#ff4eb5), to(#ffa065));
  775. border-image: linear-gradient(90deg, #ff4eb5 0%, #ffa065 100%);
  776. border-image-slice: 1;
  777. }
  778. .banner-two__btn:after {
  779. content: '';
  780. position: absolute;
  781. top: 0;
  782. bottom: 0;
  783. left: 0;
  784. right: 0;
  785. background-image: -webkit-gradient(linear, left top, right top, from(#ff4eb5), to(#ffa065));
  786. background-image: linear-gradient(90deg, #ff4eb5 0%, #ffa065 100%);
  787. border-radius: 5px;
  788. opacity: 0;
  789. -webkit-transition: all .4s ease;
  790. transition: all .4s ease;
  791. z-index: 0;
  792. }
  793. .banner-two__btn span {
  794. z-index: 2;
  795. }
  796. .banner-two__btn:hover:before {
  797. -webkit-transform: scaleX(1);
  798. transform: scaleX(1);
  799. }
  800. .banner-two__btn:hover:after {
  801. opacity: 1;
  802. }
  803. .banner-two__moc {
  804. position: absolute;
  805. bottom: 0;
  806. right: 0px;
  807. }
  808. .banner-two__moc img {
  809. position: relative;
  810. }
  811. [class*=banner-two__shape-] {
  812. position: absolute;
  813. border-radius: 50%;
  814. -webkit-filter: blur(5px);
  815. filter: blur(5px);
  816. -webkit-animation-name: bubbleMover;
  817. animation-name: bubbleMover;
  818. -webkit-animation-timing-function: linear;
  819. animation-timing-function: linear;
  820. -webkit-animation-iteration-count: infinite;
  821. animation-iteration-count: infinite;
  822. }
  823. .banner-two__shape-1 {
  824. background-image: linear-gradient(40deg, #0db8ff 0%, #f332ff 100%);
  825. width: 143px;
  826. height: 143px;
  827. top: 5%;
  828. left: 3%;
  829. -webkit-animation-duration: 8s;
  830. animation-duration: 8s;
  831. -webkit-perspective: 150px;
  832. perspective: 150px;
  833. }
  834. .banner-two__shape-2 {
  835. background-image: linear-gradient(40deg, #39aeff 0%, #3cff53 100%);
  836. width: 85px;
  837. height: 85px;
  838. top: 12%;
  839. left: 37%;
  840. -webkit-animation-duration: 10s;
  841. animation-duration: 10s;
  842. -webkit-perspective: 85px;
  843. perspective: 85px;
  844. }
  845. .banner-two__shape-3 {
  846. background-image: linear-gradient(40deg, #ff43c0 0%, #ffa95c 100%);
  847. width: 85px;
  848. height: 85px;
  849. bottom: 12%;
  850. left: 6%;
  851. -webkit-animation-duration: 7s;
  852. animation-duration: 7s;
  853. -webkit-perspective: 85px;
  854. perspective: 85px;
  855. }
  856. .banner-two__shape-4 {
  857. background-image: linear-gradient(40deg, #ff703e 0%, #ffec4e 100%);
  858. width: 85px;
  859. height: 85px;
  860. top: 20%;
  861. right: 4%;
  862. -webkit-animation-duration: 12s;
  863. animation-duration: 12s;
  864. -webkit-perspective: 85px;
  865. perspective: 85px;
  866. }
  867. /*
  868. * 4. blog styles
  869. */
  870. .blog-one {
  871. padding: 120px 0;
  872. }
  873. .blog-one__single {
  874. position: relative;
  875. margin-bottom: 30px;
  876. }
  877. .blog-one__single:hover .blog-one__more-link {
  878. color: #fff;
  879. opacity: 1;
  880. }
  881. .blog-one__single:hover .blog-one__image > img {
  882. opacity: 0.5;
  883. }
  884. .blog-one__single:hover .blog-one__content {
  885. -webkit-box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.03);
  886. box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.03);
  887. }
  888. .blog-one__image {
  889. position: relative;
  890. background-color: #2a2833;
  891. border-top-left-radius: 5px;
  892. border-top-right-radius: 5px;
  893. }
  894. .blog-one__image > img {
  895. border-top-left-radius: 5px;
  896. border-top-right-radius: 5px;
  897. width: 100%;
  898. -webkit-transition: all .4s ease;
  899. transition: all .4s ease;
  900. }
  901. .blog-one__content {
  902. border-style: solid;
  903. border-width: 1px;
  904. border-color: #efefef;
  905. background-color: white;
  906. border-top: 0;
  907. -webkit-transition: all .4s ease;
  908. transition: all .4s ease;
  909. border-bottom-left-radius: 5px;
  910. border-bottom-right-radius: 5px;
  911. padding: 0 50px;
  912. padding-top: 45px;
  913. padding-bottom: 40px;
  914. }
  915. .blog-one__meta {
  916. margin: 0;
  917. display: -webkit-box;
  918. display: -ms-flexbox;
  919. display: flex;
  920. -webkit-box-align: center;
  921. -ms-flex-align: center;
  922. align-items: center;
  923. }
  924. .blog-one__meta li {
  925. display: -webkit-box;
  926. display: -ms-flexbox;
  927. display: flex;
  928. -webkit-box-align: center;
  929. -ms-flex-align: center;
  930. align-items: center;
  931. line-height: 1em;
  932. }
  933. .blog-one__meta li + li:before {
  934. content: '.';
  935. color: #74727a;
  936. font-size: 14px;
  937. font-weight: 400;
  938. margin-left: 10px;
  939. margin-right: 10px;
  940. }
  941. .blog-one__meta li a {
  942. color: #74727a;
  943. font-size: 14px;
  944. font-weight: 400;
  945. -webkit-transition: all .4s ease;
  946. transition: all .4s ease;
  947. }
  948. .blog-one__meta li a:hover {
  949. color: #ff4eb5;
  950. }
  951. .blog-one__title {
  952. font-weight: 500;
  953. font-size: 24px;
  954. line-height: 36px;
  955. color: #2a2833;
  956. margin: 0;
  957. margin-top: 5px;
  958. margin-bottom: 15px;
  959. }
  960. .blog-one__title a {
  961. color: inherit;
  962. -webkit-transition: all .4s ease;
  963. transition: all .4s ease;
  964. }
  965. .blog-one__title a:hover {
  966. color: #ff4eb5;
  967. }
  968. .blog-one__link {
  969. color: #ff4eb5;
  970. font-size: 14px;
  971. font-weight: 500;
  972. line-height: 1em;
  973. text-transform: uppercase;
  974. letter-spacing: .2em;
  975. -webkit-transition: all .4s ease;
  976. transition: all .4s ease;
  977. }
  978. .blog-one__link:hover {
  979. color: #2a2833;
  980. }
  981. .blog-one__more-link {
  982. font-size: 33px;
  983. color: #fff;
  984. position: absolute;
  985. top: 50%;
  986. left: 50%;
  987. -webkit-transform: translate(-50%, -50%);
  988. transform: translate(-50%, -50%);
  989. opacity: 0;
  990. -webkit-transition: color .4s ease, opacity .4s ease;
  991. transition: color .4s ease, opacity .4s ease;
  992. }
  993. .blog-one .post-pagination {
  994. margin-top: 40px;
  995. }
  996. .blog-details {
  997. padding: 120px 0;
  998. }
  999. .blog-details .blog-one__single {
  1000. margin-bottom: 0;
  1001. }
  1002. .blog-details .blog-one__title {
  1003. font-size: 30px;
  1004. font-weight: 500;
  1005. line-height: 1.2em;
  1006. margin-bottom: 28px;
  1007. }
  1008. .blog-details .blog-one__content {
  1009. padding-left: 50px;
  1010. padding-right: 50px;
  1011. border-radius: 0;
  1012. -webkit-box-shadow: none !important;
  1013. box-shadow: none !important;
  1014. }
  1015. .blog-details .blog-one__text {
  1016. margin-bottom: 0;
  1017. font-size: 16px;
  1018. line-height: 34px;
  1019. }
  1020. .blog-details .blog-one__text + .blog-one__text {
  1021. margin-top: 30px;
  1022. }
  1023. .blog-details__content-title {
  1024. margin: 0;
  1025. color: #2a2833;
  1026. font-size: 30px;
  1027. font-weight: 500;
  1028. margin-bottom: 40px;
  1029. }
  1030. .blog-details .share-block {
  1031. display: -webkit-box;
  1032. display: -ms-flexbox;
  1033. display: flex;
  1034. -webkit-box-align: center;
  1035. -ms-flex-align: center;
  1036. align-items: center;
  1037. -webkit-box-pack: justify;
  1038. -ms-flex-pack: justify;
  1039. justify-content: space-between;
  1040. padding: 50px;
  1041. border: 1px solid #efefef;
  1042. border-top: 0;
  1043. border-bottom-left-radius: 5px;
  1044. border-bottom-right-radius: 5px;
  1045. }
  1046. .blog-details .share-block .left-block p {
  1047. margin: 0;
  1048. color: #2a2833;
  1049. font-size: 24px;
  1050. font-weight: 400;
  1051. }
  1052. .blog-details .share-block .left-block p a {
  1053. color: #74727a;
  1054. font-size: 16px;
  1055. font-weight: 400;
  1056. -webkit-transition: all .4s ease;
  1057. transition: all .4s ease;
  1058. margin-left: 5px;
  1059. letter-spacing: 0;
  1060. }
  1061. .blog-details .share-block .left-block p a:hover {
  1062. color: #2a2833;
  1063. }
  1064. .blog-details .share-block .social-block {
  1065. display: -webkit-box;
  1066. display: -ms-flexbox;
  1067. display: flex;
  1068. -webkit-box-align: center;
  1069. -ms-flex-align: center;
  1070. align-items: center;
  1071. }
  1072. .blog-details .share-block .social-block a {
  1073. width: 56px;
  1074. height: 56px;
  1075. border-radius: 50%;
  1076. background-color: #ff4eb5;
  1077. text-align: center;
  1078. line-height: 56px;
  1079. color: #fff;
  1080. background-size: 200% auto;
  1081. font-size: 18px;
  1082. -webkit-transition: all .4s ease;
  1083. transition: all .4s ease;
  1084. }
  1085. .blog-details .share-block .social-block a + a {
  1086. margin-left: 10px;
  1087. }
  1088. .blog-details .share-block .social-block a:hover {
  1089. background-position: right center;
  1090. }
  1091. .blog-details .share-block .social-block a.fa-facebook-square {
  1092. background-image: linear-gradient(40deg, #ffa95c 0%, #ff43c0 51%, #ffa95c 100%);
  1093. }
  1094. .blog-details .share-block .social-block a.fa-twitter {
  1095. background-image: linear-gradient(40deg, #0db8ff 0%, #f332ff 51%, #0db8ff 100%);
  1096. }
  1097. .blog-details .share-block .social-block a.fa-instagram {
  1098. background-image: linear-gradient(40deg, #39aeff 0%, #3cff53 51%, #39aeff 100%);
  1099. }
  1100. .blog-details .share-block .social-block a.fa-pinterest-p {
  1101. background-image: linear-gradient(40deg, #ff703e 0%, #ffec4e 51%, #ff703e 100%);
  1102. }
  1103. .blog-details__author {
  1104. border: 1px solid #efefef;
  1105. padding: 60px 60px;
  1106. margin-top: 50px;
  1107. margin-bottom: 60px;
  1108. border-radius: 5px;
  1109. }
  1110. .blog-details__author-image, .blog-details__author-content {
  1111. display: table-cell;
  1112. vertical-align: top;
  1113. }
  1114. .blog-details__author-image {
  1115. width: 169px;
  1116. }
  1117. .blog-details__author-image > img {
  1118. width: 100%;
  1119. border-radius: 5px;
  1120. }
  1121. .blog-details__author-content {
  1122. padding-left: 40px;
  1123. }
  1124. .blog-details__author-content h3,
  1125. .blog-details__author-content p {
  1126. margin: 0;
  1127. }
  1128. .blog-details__author-content h3 {
  1129. color: #2a2833;
  1130. font-size: 20px;
  1131. margin-bottom: 20px;
  1132. font-weight: 500;
  1133. }
  1134. .blog-details__author-content p {
  1135. font-size: 16px;
  1136. line-height: 30px;
  1137. color: #74727a;
  1138. margin-bottom: 0px;
  1139. }
  1140. .blog-details__author-content a {
  1141. font-size: 16px;
  1142. font-weight: 400;
  1143. line-height: 34px;
  1144. color: #ff4eb5;
  1145. -webkit-transition: all .4s ease;
  1146. transition: all .4s ease;
  1147. }
  1148. .blog-details__author-content a:hover {
  1149. color: #2a2833;
  1150. }
  1151. .comment-one {
  1152. margin-bottom: 60px;
  1153. }
  1154. .comment-one__single {
  1155. border-bottom: 1px solid #efefef;
  1156. padding-bottom: 50px;
  1157. }
  1158. .comment-one__single + .comment-one__single {
  1159. margin-top: 60px;
  1160. }
  1161. .comment-one__image, .comment-one__content {
  1162. display: table-cell;
  1163. vertical-align: top;
  1164. }
  1165. .comment-one__image {
  1166. width: 90px;
  1167. }
  1168. .comment-one__image .inner-block {
  1169. width: 100%;
  1170. border-radius: 50%;
  1171. overflow: hidden;
  1172. }
  1173. .comment-one__image .inner-block > img {
  1174. width: 100%;
  1175. }
  1176. .comment-one__content {
  1177. padding-left: 40px;
  1178. }
  1179. .comment-one__author {
  1180. margin: 0;
  1181. font-size: 20px;
  1182. font-weight: 500;
  1183. color: #2a2833;
  1184. }
  1185. .comment-one__date {
  1186. color: #ff4eb5;
  1187. font-size: 16px;
  1188. font-weight: 400;
  1189. line-height: 1em;
  1190. margin: 0;
  1191. margin-top: 15px;
  1192. margin-bottom: 25px;
  1193. }
  1194. .comment-one__date-sep {
  1195. display: inline-block;
  1196. vertical-align: middle;
  1197. margin-left: 12px;
  1198. margin-right: 12px;
  1199. }
  1200. .comment-one__text {
  1201. color: #74727a;
  1202. font-size: 16px;
  1203. line-height: 34px;
  1204. margin: 0;
  1205. }
  1206. .comment-one__reply {
  1207. padding: 8px 30px;
  1208. }
  1209. .comment-one__top-left, .comment-one__top-right {
  1210. display: table-cell;
  1211. vertical-align: top;
  1212. }
  1213. .reply-form input,
  1214. .reply-form textarea {
  1215. border: none;
  1216. outline: none;
  1217. width: 100%;
  1218. display: block;
  1219. height: 70px;
  1220. color: #74727a;
  1221. font-size: 16px;
  1222. padding-left: 30px;
  1223. border-style: solid;
  1224. border-width: 1px;
  1225. border-color: #efefef;
  1226. border-radius: 5px;
  1227. background-color: #fefbf4;
  1228. margin-bottom: 30px;
  1229. }
  1230. .reply-form input::-webkit-input-placeholder,
  1231. .reply-form textarea::-webkit-input-placeholder {
  1232. /* Chrome/Opera/Safari */
  1233. color: #74727a;
  1234. }
  1235. .reply-form input::-moz-placeholder,
  1236. .reply-form textarea::-moz-placeholder {
  1237. /* Firefox 19+ */
  1238. color: #74727a;
  1239. }
  1240. .reply-form input:-ms-input-placeholder,
  1241. .reply-form textarea:-ms-input-placeholder {
  1242. /* IE 10+ */
  1243. color: #74727a;
  1244. }
  1245. .reply-form input:-moz-placeholder,
  1246. .reply-form textarea:-moz-placeholder {
  1247. /* Firefox 18- */
  1248. color: #74727a;
  1249. }
  1250. .reply-form textarea {
  1251. height: 232px;
  1252. padding-top: 20px;
  1253. }
  1254. .blog-one__home {
  1255. padding-bottom: 90px;
  1256. }
  1257. /*
  1258. * 5. sidebar styles
  1259. */
  1260. @media (max-width: 991px) {
  1261. .sidebar {
  1262. margin-top: 50px;
  1263. }
  1264. }
  1265. .sidebar__title {
  1266. margin: 0;
  1267. color: #2a2833;
  1268. font-size: 20px;
  1269. font-weight: 500;
  1270. margin-bottom: 30px;
  1271. }
  1272. .sidebar__single:not(.sidebar__search) {
  1273. padding: 50px;
  1274. border-style: solid;
  1275. border-width: 1px;
  1276. border-color: #efefef;
  1277. border-radius: 5px;
  1278. }
  1279. @media (max-width: 1199px) {
  1280. .sidebar__single:not(.sidebar__search) {
  1281. padding: 30px;
  1282. }
  1283. }
  1284. .sidebar__single + .sidebar__single {
  1285. margin-top: 30px;
  1286. }
  1287. .sidebar__post__single + .sidebar__post__single {
  1288. margin-top: 30px;
  1289. }
  1290. .sidebar__post-image, .sidebar__post-content {
  1291. display: table-cell;
  1292. vertical-align: middle;
  1293. }
  1294. .sidebar__post-image {
  1295. width: 60px;
  1296. }
  1297. .sidebar__post-image .inner-block {
  1298. width: 100%;
  1299. }
  1300. .sidebar__post-image .inner-block > img {
  1301. width: 100%;
  1302. border-radius: 50%;
  1303. }
  1304. .sidebar__post-content {
  1305. padding-left: 20px;
  1306. }
  1307. .sidebar__post-title {
  1308. margin: 0;
  1309. font-size: 16px;
  1310. line-height: 24px;
  1311. font-weight: 400;
  1312. color: #74727a;
  1313. }
  1314. .sidebar__post-title a {
  1315. color: inherit;
  1316. -webkit-transition: all .4s ease;
  1317. transition: all .4s ease;
  1318. }
  1319. .sidebar__post-title a:hover {
  1320. color: #2a2833;
  1321. }
  1322. .sidebar__category-list {
  1323. margin: 0;
  1324. padding: 0;
  1325. list-style: none;
  1326. }
  1327. .sidebar__category-list-item {
  1328. line-height: 1em;
  1329. }
  1330. .sidebar__category-list-item a {
  1331. color: #74727a;
  1332. font-size: 16px;
  1333. font-weight: 400;
  1334. display: block;
  1335. position: relative;
  1336. -webkit-transition: all .4s ease;
  1337. transition: all .4s ease;
  1338. }
  1339. .sidebar__category-list-item a:before {
  1340. content: '\f105';
  1341. font-family: 'FontAwesome';
  1342. color: #7b7b8c;
  1343. font-weight: 900;
  1344. font-size: 14px;
  1345. position: absolute;
  1346. top: 50%;
  1347. right: 0;
  1348. -webkit-transform: translateY(-50%);
  1349. transform: translateY(-50%);
  1350. -webkit-transition: all .4s ease;
  1351. transition: all .4s ease;
  1352. }
  1353. .sidebar__category-list-item a:hover {
  1354. color: #ff4eb5;
  1355. }
  1356. .sidebar__category-list-item + .sidebar__category-list-item {
  1357. margin-top: 27px;
  1358. }
  1359. .sidebar__tags-list {
  1360. margin: 0;
  1361. padding: 0;
  1362. list-style: none;
  1363. margin-top: -10px;
  1364. }
  1365. .sidebar__tags-list-item {
  1366. display: inline-block;
  1367. vertical-align: middle;
  1368. line-height: 1em;
  1369. }
  1370. .sidebar__tags-list-item a {
  1371. display: block;
  1372. color: #74727a;
  1373. font-size: 16px;
  1374. font-weight: 400;
  1375. line-height: 1em;
  1376. -webkit-transition: all .4s ease;
  1377. transition: all .4s ease;
  1378. }
  1379. .sidebar__tags-list-item a:hover {
  1380. color: #ffa065;
  1381. }
  1382. .sidebar__search-form {
  1383. width: 100%;
  1384. height: 83px;
  1385. background-image: linear-gradient(40deg, #ff4eb5 0%, #ffa065 100%);
  1386. position: relative;
  1387. border-radius: 5px;
  1388. }
  1389. .sidebar__search-form input {
  1390. width: 100%;
  1391. height: 100%;
  1392. background-color: transparent;
  1393. border: none;
  1394. outline: none;
  1395. color: #fff;
  1396. padding-left: 40px;
  1397. padding-right: 40px;
  1398. }
  1399. .sidebar__search-form input::-webkit-input-placeholder {
  1400. /* Chrome/Opera/Safari */
  1401. color: #fff;
  1402. }
  1403. .sidebar__search-form input::-moz-placeholder {
  1404. /* Firefox 19+ */
  1405. color: #fff;
  1406. }
  1407. .sidebar__search-form input:-ms-input-placeholder {
  1408. /* IE 10+ */
  1409. color: #fff;
  1410. }
  1411. .sidebar__search-form input:-moz-placeholder {
  1412. /* Firefox 18- */
  1413. color: #fff;
  1414. }
  1415. .sidebar__search-form button[type=submit] {
  1416. background-color: transparent;
  1417. border: none;
  1418. outline: none;
  1419. position: absolute;
  1420. top: 50%;
  1421. right: 50px;
  1422. -webkit-transform: translateY(-50%);
  1423. transform: translateY(-50%);
  1424. cursor: pointer;
  1425. padding: 0;
  1426. -webkit-transition: all .4s ease;
  1427. transition: all .4s ease;
  1428. }
  1429. .sidebar__search-form button[type=submit] i {
  1430. font-size: 16px;
  1431. color: #fff;
  1432. -webkit-transition: all .4s ease;
  1433. transition: all .4s ease;
  1434. }
  1435. /*
  1436. * 6. footer styles
  1437. */
  1438. .site-footer {
  1439. position: relative;
  1440. background-position: center center;
  1441. background-repeat: no-repeat;
  1442. background-size: cover;
  1443. overflow: hidden;
  1444. background-color: white;
  1445. -webkit-box-shadow: 0px -1px 0px 0px #efefef;
  1446. box-shadow: 0px -1px 0px 0px #efefef;
  1447. }
  1448. .site-footer__upper {
  1449. padding-top: 120px;
  1450. padding-bottom: 120px;
  1451. }
  1452. .site-footer__bottom {
  1453. background-color: #fff9ff;
  1454. }
  1455. .site-footer__bottom .inner-container {
  1456. display: -webkit-box;
  1457. display: -ms-flexbox;
  1458. display: flex;
  1459. -webkit-box-pack: center;
  1460. -ms-flex-pack: center;
  1461. justify-content: center;
  1462. -webkit-box-align: center;
  1463. -ms-flex-align: center;
  1464. align-items: center;
  1465. text-align: center;
  1466. padding-top: 44px;
  1467. padding-bottom: 44px;
  1468. }
  1469. .site-footer__copy {
  1470. font-size: 16px;
  1471. font-weight: 400;
  1472. color: #74727a;
  1473. margin: 0;
  1474. }
  1475. .site-footer__copy a {
  1476. color: #ff4eb5;
  1477. -webkit-transition: all .4s ease;
  1478. transition: all .4s ease;
  1479. }
  1480. .site-footer__copy a:hover {
  1481. color: #fff;
  1482. }
  1483. .site-footer__social {
  1484. display: -webkit-box;
  1485. display: -ms-flexbox;
  1486. display: flex;
  1487. -webkit-box-align: center;
  1488. -ms-flex-align: center;
  1489. align-items: center;
  1490. }
  1491. .site-footer__social a {
  1492. width: 56px;
  1493. height: 56px;
  1494. border-radius: 50%;
  1495. background-color: #ff4eb5;
  1496. text-align: center;
  1497. line-height: 56px;
  1498. color: #fff;
  1499. background-size: 200% auto;
  1500. font-size: 18px;
  1501. -webkit-transition: all .4s ease;
  1502. transition: all .4s ease;
  1503. }
  1504. .site-footer__social a + a {
  1505. margin-left: 10px;
  1506. }
  1507. .site-footer__social a:hover {
  1508. background-position: right center;
  1509. }
  1510. .site-footer__social a.fa-facebook-square {
  1511. background-image: linear-gradient(40deg, #ffa95c 0%, #ff43c0 51%, #ffa95c 100%);
  1512. }
  1513. .site-footer__social a.fa-twitter {
  1514. background-image: linear-gradient(40deg, #0db8ff 0%, #f332ff 51%, #0db8ff 100%);
  1515. }
  1516. .site-footer__social a.fa-instagram {
  1517. background-image: linear-gradient(40deg, #39aeff 0%, #3cff53 51%, #39aeff 100%);
  1518. }
  1519. .site-footer__social a.fa-pinterest-p {
  1520. background-image: linear-gradient(40deg, #ff703e 0%, #ffec4e 51%, #ff703e 100%);
  1521. }
  1522. @media (min-width: 1200px) {
  1523. .footer-widget__links-wrap {
  1524. padding-right: 55px;
  1525. }
  1526. }
  1527. .footer-widget__title {
  1528. font-size: 18px;
  1529. font-weight: 500;
  1530. color: #2a2833;
  1531. margin: 0;
  1532. line-height: 1em;
  1533. margin-bottom: 40px;
  1534. }
  1535. .footer-widget__links {
  1536. margin: 0;
  1537. margin-top: -5px;
  1538. }
  1539. .footer-widget__links li {
  1540. line-height: 1em;
  1541. }
  1542. .footer-widget__links li + li {
  1543. margin-top: 20px;
  1544. }
  1545. .footer-widget__links li a {
  1546. font-size: 16px;
  1547. font-weight: 400;
  1548. color: #74727a;
  1549. -webkit-transition: all .4s ease;
  1550. transition: all .4s ease;
  1551. }
  1552. .footer-widget__links li a:hover {
  1553. color: #ffa065;
  1554. }
  1555. .footer-widget__contact {
  1556. font-size: 16px;
  1557. font-weight: 400;
  1558. color: #74727a;
  1559. margin: 0;
  1560. line-height: 30px;
  1561. }
  1562. .footer-widget__contact a {
  1563. color: inherit;
  1564. -webkit-transition: all .4s ease;
  1565. transition: all .4s ease;
  1566. }
  1567. .footer-widget__contact a:hover {
  1568. color: #ff4eb5;
  1569. }
  1570. .footer-widget__contact + .footer-widget__contact {
  1571. margin-top: 15px;
  1572. }
  1573. .footer-widget__mailchimp {
  1574. padding-left: 70px;
  1575. }
  1576. .footer-widget__logo {
  1577. margin-bottom: 40px;
  1578. }
  1579. /*
  1580. * 7. inner-banner styles
  1581. */
  1582. .inner-banner {
  1583. position: relative;
  1584. background-color: #fff;
  1585. background-image: url(../images/background/inner-banner-bg-1-1.jpg);
  1586. background-repeat: no-repeat;
  1587. background-size: cover;
  1588. background-position: top center;
  1589. padding-top: 245px;
  1590. padding-bottom: 120px;
  1591. }
  1592. .inner-banner__title {
  1593. text-align: center;
  1594. line-height: 1em;
  1595. font-size: 46px;
  1596. font-weight: 400;
  1597. color: #fff;
  1598. margin: 0;
  1599. margin-top: 10px;
  1600. }
  1601. .thm-breadcrumb {
  1602. margin: 0;
  1603. display: -webkit-box;
  1604. display: -ms-flexbox;
  1605. display: flex;
  1606. -webkit-box-pack: center;
  1607. -ms-flex-pack: center;
  1608. justify-content: center;
  1609. -webkit-box-align: center;
  1610. -ms-flex-align: center;
  1611. align-items: center;
  1612. }
  1613. .thm-breadcrumb li {
  1614. font-size: 18px;
  1615. font-weight: 400;
  1616. }
  1617. .thm-breadcrumb li a {
  1618. color: #ffffff;
  1619. -webkit-transition: all .4s ease;
  1620. transition: all .4s ease;
  1621. }
  1622. .thm-breadcrumb li a:hover {
  1623. color: #ffa065;
  1624. }
  1625. .thm-breadcrumb li + li::before {
  1626. content: '.';
  1627. color: #fff;
  1628. margin-left: 15px;
  1629. margin-right: 15px;
  1630. }
  1631. /*
  1632. * 8. video styles
  1633. */
  1634. .video-one {
  1635. position: relative;
  1636. }
  1637. .video-one__bg {
  1638. position: absolute;
  1639. bottom: 0%;
  1640. left: 0;
  1641. }
  1642. .video-one .container {
  1643. position: relative;
  1644. padding: 15px;
  1645. background-image: -webkit-gradient(linear, left bottom, left top, from(#ffa95c), to(#ff43c0));
  1646. background-image: linear-gradient(0deg, #ffa95c 0%, #ff43c0 100%);
  1647. border-radius: 7px;
  1648. z-index: 10;
  1649. }
  1650. .video-one__box {
  1651. position: relative;
  1652. border-radius: 7px;
  1653. }
  1654. .video-one__box > img {
  1655. width: 100%;
  1656. border-radius: 7px;
  1657. }
  1658. .video-one__box:hover .video-one__content {
  1659. background-color: rgba(42, 40, 51, 0.2);
  1660. }
  1661. .video-one__content {
  1662. position: absolute;
  1663. width: 100%;
  1664. height: 100%;
  1665. background-color: rgba(42, 40, 51, 0.6);
  1666. top: 0;
  1667. left: 0;
  1668. display: -webkit-box;
  1669. display: -ms-flexbox;
  1670. display: flex;
  1671. -webkit-box-pack: center;
  1672. -ms-flex-pack: center;
  1673. justify-content: center;
  1674. -webkit-box-align: center;
  1675. -ms-flex-align: center;
  1676. align-items: center;
  1677. text-align: center;
  1678. -webkit-box-orient: vertical;
  1679. -webkit-box-direction: normal;
  1680. -ms-flex-direction: column;
  1681. flex-direction: column;
  1682. -webkit-transition: all .4s ease;
  1683. transition: all .4s ease;
  1684. border-radius: 7px;
  1685. }
  1686. .video-one__btn {
  1687. width: 106px;
  1688. height: 106px;
  1689. background-image: -webkit-gradient(linear, left top, right top, from(#ff4eb5), color-stop(51%, #ffa065), to(#ff4eb5));
  1690. background-image: linear-gradient(to right, #ff4eb5 0%, #ffa065 51%, #ff4eb5 100%);
  1691. background-size: 200% auto;
  1692. text-align: center;
  1693. border-radius: 50%;
  1694. -webkit-transition: all .4s ease;
  1695. transition: all .4s ease;
  1696. -webkit-box-shadow: 0px 20px 40px 0px rgba(42, 40, 51, 0.8);
  1697. box-shadow: 0px 20px 40px 0px rgba(42, 40, 51, 0.8);
  1698. }
  1699. .video-one__btn i {
  1700. font-size: 24px;
  1701. color: #fff;
  1702. line-height: 106px;
  1703. }
  1704. .video-one__btn:hover {
  1705. background-position: right center;
  1706. }
  1707. .video-one__btn:hover i {
  1708. color: #fff;
  1709. }
  1710. .video-one__title {
  1711. font-size: 50px;
  1712. font-weight: 400;
  1713. color: #fff;
  1714. margin: 0;
  1715. margin-top: 20px;
  1716. }
  1717. .video-one__title span {
  1718. font-weight: 700;
  1719. }
  1720. /*
  1721. * 9. brand styles
  1722. */
  1723. .brand-one__carousel {
  1724. padding-left: 48px;
  1725. padding-right: 48px;
  1726. border-bottom: 1px solid #efefef;
  1727. padding-top: 119px;
  1728. padding-bottom: 119px;
  1729. }
  1730. .brand-one__carousel img {
  1731. opacity: 0.3;
  1732. -webkit-transition: opacity .4s ease;
  1733. transition: opacity .4s ease;
  1734. }
  1735. .brand-one__carousel img:hover {
  1736. opacity: 1;
  1737. }
  1738. /*
  1739. * 10. mailchimp styles
  1740. */
  1741. .mailchimp-one {
  1742. padding-top: 110px;
  1743. padding-bottom: 120px;
  1744. background-image: linear-gradient(40deg, #ff43c0 0%, #ffa95c 100%);
  1745. }
  1746. .mailchimp-one .block-title__title {
  1747. color: #fff;
  1748. }
  1749. .mailchimp-one__mc-form {
  1750. width: 100%;
  1751. max-width: 692px;
  1752. height: 91px;
  1753. background-color: #fff;
  1754. border-radius: 5px;
  1755. margin-left: auto;
  1756. margin-right: auto;
  1757. position: relative;
  1758. }
  1759. .mailchimp-one__mc-form input[type="email"] {
  1760. border: none;
  1761. outline: none;
  1762. background-color: transparent;
  1763. display: block;
  1764. width: 100%;
  1765. height: 100%;
  1766. padding-left: 40px;
  1767. font-size: 16px;
  1768. color: #74727a;
  1769. font-weight: 400;
  1770. }
  1771. .mailchimp-one__mc-form input[type="email"]::-webkit-input-placeholder {
  1772. /* Chrome/Opera/Safari */
  1773. color: #74727a;
  1774. }
  1775. .mailchimp-one__mc-form input[type="email"]::-moz-placeholder {
  1776. /* Firefox 19+ */
  1777. color: #74727a;
  1778. }
  1779. .mailchimp-one__mc-form input[type="email"]:-ms-input-placeholder {
  1780. /* IE 10+ */
  1781. color: #74727a;
  1782. }
  1783. .mailchimp-one__mc-form input[type="email"]:-moz-placeholder {
  1784. /* Firefox 18- */
  1785. color: #74727a;
  1786. }
  1787. .mailchimp-one__mc-form button[type=submit] {
  1788. border: none;
  1789. outline: none;
  1790. width: 61px;
  1791. height: 61px;
  1792. background-image: -webkit-gradient(linear, left top, right top, from(#ff4eb5), color-stop(51%, #ffa065), to(#ff4eb5));
  1793. background-image: linear-gradient(to right, #ff4eb5 0%, #ffa065 51%, #ff4eb5 100%);
  1794. background-size: 200% auto;
  1795. border-radius: 50%;
  1796. font-size: 22px;
  1797. color: #fff;
  1798. display: -webkit-box;
  1799. display: -ms-flexbox;
  1800. display: flex;
  1801. -webkit-box-align: center;
  1802. -ms-flex-align: center;
  1803. align-items: center;
  1804. -webkit-box-pack: center;
  1805. -ms-flex-pack: center;
  1806. justify-content: center;
  1807. text-align: center;
  1808. position: absolute;
  1809. top: 50%;
  1810. right: 15px;
  1811. -webkit-transform: translateY(-50%);
  1812. transform: translateY(-50%);
  1813. -webkit-transition: all .4s ease;
  1814. transition: all .4s ease;
  1815. }
  1816. .mailchimp-one__mc-form button[type=submit]:hover {
  1817. background-position: right center;
  1818. }
  1819. .mailchimp-one__mc-form.errored input {
  1820. background-color: red;
  1821. color: #fff;
  1822. }
  1823. .mailchimp-one__mc-form.errored input::-webkit-input-placeholder {
  1824. /* Chrome/Opera/Safari */
  1825. color: #fff;
  1826. }
  1827. .mailchimp-one__mc-form.errored input::-moz-placeholder {
  1828. /* Firefox 19+ */
  1829. color: #fff;
  1830. }
  1831. .mailchimp-one__mc-form.errored input:-ms-input-placeholder {
  1832. /* IE 10+ */
  1833. color: #fff;
  1834. }
  1835. .mailchimp-one__mc-form.errored input:-moz-placeholder {
  1836. /* Firefox 18- */
  1837. color: #fff;
  1838. }
  1839. .mc-form__response p {
  1840. background-color: #fff;
  1841. font-size: 11px;
  1842. margin: 0;
  1843. color: #2a2833;
  1844. padding-left: 10px;
  1845. padding-right: 10px;
  1846. text-align: center;
  1847. }
  1848. .mc-form__response.successed p {
  1849. background-color: green;
  1850. }
  1851. /*
  1852. * 11. accrodion styles
  1853. */
  1854. .faq-one {
  1855. padding: 0 0 120px;
  1856. position: relative;
  1857. }
  1858. .faq-one__bg {
  1859. position: absolute;
  1860. bottom: 4%;
  1861. right: 0;
  1862. }
  1863. .faq-one .container {
  1864. position: relative;
  1865. }
  1866. @media (min-width: 992px) {
  1867. .faq-one .container {
  1868. max-width: 920px;
  1869. }
  1870. }
  1871. .faq-accrodion .accrodion {
  1872. position: relative;
  1873. -webkit-transition: all .4s ease;
  1874. transition: all .4s ease;
  1875. }
  1876. .faq-accrodion .accrodion:before {
  1877. content: '';
  1878. position: absolute;
  1879. top: -2px;
  1880. bottom: -2px;
  1881. left: 0px;
  1882. right: 0px;
  1883. border-radius: 7px;
  1884. -webkit-transform: scaleX(0);
  1885. transform: scaleX(0);
  1886. background-image: -webkit-gradient(linear, left bottom, left top, from(#ff4eb5), to(#ffa065));
  1887. background-image: linear-gradient(0deg, #ff4eb5 0%, #ffa065 100%);
  1888. -webkit-transition: -webkit-transform .4s ease;
  1889. transition: -webkit-transform .4s ease;
  1890. transition: transform .4s ease;
  1891. transition: transform .4s ease, -webkit-transform .4s ease;
  1892. }
  1893. .faq-accrodion .accrodion + .accrodion {
  1894. margin-top: 20px;
  1895. }
  1896. .faq-accrodion .accrodion.active {
  1897. -webkit-box-shadow: 0px 20px 60px 0px rgba(244, 151, 190, 0.3);
  1898. box-shadow: 0px 20px 60px 0px rgba(244, 151, 190, 0.3);
  1899. }
  1900. .faq-accrodion .accrodion.active .accrodion-inner {
  1901. margin: 0 2px;
  1902. }
  1903. .faq-accrodion .accrodion.active:before {
  1904. -webkit-transform: scaleX(1);
  1905. transform: scaleX(1);
  1906. }
  1907. .faq-accrodion .accrodion.active .accrodion-title:before {
  1908. content: '\f068';
  1909. color: #ff4eb5;
  1910. }
  1911. .faq-accrodion .accrodion.active .accrodion-title {
  1912. padding-bottom: 0;
  1913. }
  1914. .faq-accrodion .accrodion.active .accrodion-title h4 {
  1915. color: #ff4eb5;
  1916. }
  1917. .faq-accrodion .accrodion .accrodion-inner {
  1918. background-color: #fff;
  1919. padding: 32px 0;
  1920. border-style: solid;
  1921. border-width: 1px;
  1922. border-color: #efefef;
  1923. border-radius: 7px;
  1924. position: relative;
  1925. -webkit-transition: all .4s ease;
  1926. transition: all .4s ease;
  1927. }
  1928. .faq-accrodion .accrodion .accrodion-title {
  1929. padding: 0px 40px;
  1930. cursor: pointer;
  1931. position: relative;
  1932. -webkit-transition: all .4s ease;
  1933. transition: all .4s ease;
  1934. }
  1935. @media (max-width: 375px) {
  1936. .faq-accrodion .accrodion .accrodion-title {
  1937. padding-right: 50px;
  1938. }
  1939. }
  1940. .faq-accrodion .accrodion .accrodion-title:before {
  1941. content: '\f067';
  1942. font-family: 'FontAwesome';
  1943. font-size: 14px;
  1944. color: #2a2833;
  1945. text-align: center;
  1946. display: -webkit-box;
  1947. display: -ms-flexbox;
  1948. display: flex;
  1949. -webkit-box-pack: center;
  1950. -ms-flex-pack: center;
  1951. justify-content: center;
  1952. -webkit-box-align: center;
  1953. -ms-flex-align: center;
  1954. align-items: center;
  1955. position: absolute;
  1956. top: 50%;
  1957. right: 40px;
  1958. -webkit-transform: translateY(-50%);
  1959. transform: translateY(-50%);
  1960. }
  1961. .faq-accrodion .accrodion .accrodion-title h4 {
  1962. margin: 0;
  1963. color: #2a2833;
  1964. font-size: 18px;
  1965. font-weight: 500;
  1966. }
  1967. @media (max-width: 375px) {
  1968. .faq-accrodion .accrodion .accrodion-title h4 {
  1969. line-height: 1.4em;
  1970. }
  1971. }
  1972. .faq-accrodion .accrodion .accrodion-content .inner {
  1973. padding: 0 40px;
  1974. padding-top: 25px;
  1975. padding-bottom: 0px;
  1976. }
  1977. .faq-accrodion .accrodion .accrodion-content p {
  1978. margin: 0;
  1979. color: #74727a;
  1980. font-size: 16px;
  1981. line-height: 30px;
  1982. }
  1983. /*
  1984. * 12. fact styles
  1985. */
  1986. .fact-one {
  1987. padding-top: 120px;
  1988. }
  1989. .fact-one .container {
  1990. z-index: 10;
  1991. position: relative;
  1992. }
  1993. .fact-one__single {
  1994. -webkit-box-shadow: 0px 20px 60px 0px rgba(42, 40, 51, 0.05);
  1995. box-shadow: 0px 20px 60px 0px rgba(42, 40, 51, 0.05);
  1996. width: 220px;
  1997. height: 220px;
  1998. border-radius: 50%;
  1999. display: -webkit-box;
  2000. display: -ms-flexbox;
  2001. display: flex;
  2002. -webkit-box-pack: center;
  2003. -ms-flex-pack: center;
  2004. justify-content: center;
  2005. -webkit-box-align: center;
  2006. -ms-flex-align: center;
  2007. align-items: center;
  2008. padding: 20px;
  2009. position: relative;
  2010. }
  2011. .fact-one__single:before {
  2012. content: '';
  2013. position: absolute;
  2014. top: 10px;
  2015. bottom: 10px;
  2016. left: 10px;
  2017. right: 10px;
  2018. border-radius: 50%;
  2019. background-image: linear-gradient(40deg, #ff43c0 0%, #ffa95c 100%);
  2020. }
  2021. .fact-one__inner {
  2022. width: 100%;
  2023. height: 100%;
  2024. -webkit-box-shadow: 0px 20px 40px 0px rgba(255, 118, 142, 0.3);
  2025. box-shadow: 0px 20px 40px 0px rgba(255, 118, 142, 0.3);
  2026. border-radius: 50%;
  2027. position: relative;
  2028. background-color: #fff;
  2029. display: -webkit-box;
  2030. display: -ms-flexbox;
  2031. display: flex;
  2032. -webkit-box-pack: center;
  2033. -ms-flex-pack: center;
  2034. justify-content: center;
  2035. -webkit-box-align: center;
  2036. -ms-flex-align: center;
  2037. align-items: center;
  2038. -webkit-box-orient: vertical;
  2039. -webkit-box-direction: normal;
  2040. -ms-flex-direction: column;
  2041. flex-direction: column;
  2042. }
  2043. .fact-one__inner h3,
  2044. .fact-one__inner p {
  2045. margin: 0;
  2046. }
  2047. .fact-one__inner h3 {
  2048. color: #2a2833;
  2049. font-weight: 400;
  2050. font-size: 40px;
  2051. line-height: 1em;
  2052. }
  2053. .fact-one__inner p {
  2054. text-transform: uppercase;
  2055. letter-spacing: .2em;
  2056. font-size: 12px;
  2057. font-weight: 500;
  2058. color: #74727a;
  2059. line-height: 1em;
  2060. margin-top: 10px;
  2061. }
  2062. .fact-one [class*=col-]:nth-child(1) .fact-one__inner {
  2063. -webkit-box-shadow: inset 0px 20px 40px 0px rgba(255, 118, 142, 0.3);
  2064. box-shadow: inset 0px 20px 40px 0px rgba(255, 118, 142, 0.3);
  2065. }
  2066. .fact-one [class*=col-]:nth-child(1) .fact-one__single:before {
  2067. background-image: linear-gradient(40deg, #ff43c0 0%, #ffa95c 100%);
  2068. }
  2069. .fact-one [class*=col-]:nth-child(2) .fact-one__inner {
  2070. -webkit-box-shadow: inset 0px 20px 60px 0px rgba(141, 142, 255, 0.3);
  2071. box-shadow: inset 0px 20px 60px 0px rgba(141, 142, 255, 0.3);
  2072. }
  2073. .fact-one [class*=col-]:nth-child(2) .fact-one__single:before {
  2074. background-image: linear-gradient(40deg, #0db8ff 0%, #f332ff 100%);
  2075. }
  2076. .fact-one [class*=col-]:nth-child(3) .fact-one__inner {
  2077. -webkit-box-shadow: inset 0px 20px 40px 0px rgba(58, 212, 173, 0.3);
  2078. box-shadow: inset 0px 20px 40px 0px rgba(58, 212, 173, 0.3);
  2079. }
  2080. .fact-one [class*=col-]:nth-child(3) .fact-one__single:before {
  2081. background-image: linear-gradient(40deg, #39aeff 0%, #3cff53 100%);
  2082. }
  2083. .fact-one [class*=col-]:nth-child(4) .fact-one__inner {
  2084. -webkit-box-shadow: inset 0px 20px 40px 0px rgba(255, 178, 71, 0.3);
  2085. box-shadow: inset 0px 20px 40px 0px rgba(255, 178, 71, 0.3);
  2086. }
  2087. .fact-one [class*=col-]:nth-child(4) .fact-one__single:before {
  2088. background-image: linear-gradient(40deg, #ff703e 0%, #ffec4e 100%);
  2089. }
  2090. /*
  2091. * 13. testimonials styles
  2092. */
  2093. .testimonials-one {
  2094. background-color: #fff9ff;
  2095. padding-top: 110px;
  2096. padding-bottom: 160px;
  2097. }
  2098. .testimonials-one .container {
  2099. position: relative;
  2100. }
  2101. .testimonials-one__carousel {
  2102. position: relative;
  2103. padding: 2px;
  2104. border-radius: 7px;
  2105. }
  2106. .testimonials-one__carousel:before {
  2107. content: '';
  2108. border-radius: 7px;
  2109. position: absolute;
  2110. top: 0;
  2111. left: 0;
  2112. right: 0;
  2113. bottom: 0;
  2114. background-image: -webkit-gradient(linear, left bottom, left top, from(#ff4eb5), to(#ffa065));
  2115. background-image: linear-gradient(0deg, #ff4eb5 0%, #ffa065 100%);
  2116. }
  2117. .testimonials-one__carousel-outer {
  2118. position: relative;
  2119. width: 100%;
  2120. max-width: 890px;
  2121. margin-left: auto;
  2122. margin-right: auto;
  2123. -webkit-box-shadow: 0px 20px 60px 0px rgba(244, 151, 190, 0.3);
  2124. box-shadow: 0px 20px 60px 0px rgba(244, 151, 190, 0.3);
  2125. }
  2126. .testimonials-one__carousel .owl-item img {
  2127. width: auto;
  2128. border-radius: 50%;
  2129. margin-left: auto;
  2130. margin-right: auto;
  2131. margin-top: 30px;
  2132. }
  2133. .testimonials-one__single {
  2134. padding-top: 71px;
  2135. padding-bottom: 71px;
  2136. background-color: #fff;
  2137. text-align: center;
  2138. border-radius: 7px;
  2139. }
  2140. .testimonials-one__single h3,
  2141. .testimonials-one__single p,
  2142. .testimonials-one__single span {
  2143. display: block;
  2144. margin: 0;
  2145. }
  2146. .testimonials-one__single p {
  2147. color: #74727a;
  2148. font-size: 24px;
  2149. line-height: 46px;
  2150. font-weight: 300;
  2151. margin-bottom: 35px;
  2152. }
  2153. .testimonials-one__single h3 {
  2154. color: #2a2833;
  2155. font-weight: 500;
  2156. font-size: 24px;
  2157. line-height: 1em;
  2158. margin-bottom: 10px;
  2159. }
  2160. .testimonials-one__single span {
  2161. font-size: 14px;
  2162. font-weight: 500;
  2163. line-height: 1em;
  2164. letter-spacing: .2em;
  2165. color: #ff4eb5;
  2166. text-transform: uppercase;
  2167. }
  2168. [class*=testimonials-one__nav-] {
  2169. display: -webkit-box;
  2170. display: -ms-flexbox;
  2171. display: flex;
  2172. width: 61px;
  2173. height: 61px;
  2174. -webkit-box-align: center;
  2175. -ms-flex-align: center;
  2176. align-items: center;
  2177. -webkit-box-pack: center;
  2178. -ms-flex-pack: center;
  2179. justify-content: center;
  2180. text-align: center;
  2181. background-color: #fff;
  2182. color: #2a2833;
  2183. border-radius: 50%;
  2184. position: absolute;
  2185. top: 50%;
  2186. -webkit-transform: translateY(-50%);
  2187. transform: translateY(-50%);
  2188. }
  2189. [class*=testimonials-one__nav-]:before {
  2190. content: '';
  2191. position: absolute;
  2192. top: 0;
  2193. left: 0;
  2194. right: 0;
  2195. bottom: 0;
  2196. border-radius: 50%;
  2197. background-image: linear-gradient(68deg, #ff4eb5 0%, #ffa065 100%);
  2198. opacity: 0;
  2199. -webkit-transition: all .4s ease;
  2200. transition: all .4s ease;
  2201. }
  2202. [class*=testimonials-one__nav-] i {
  2203. font-size: 22px;
  2204. position: relative;
  2205. }
  2206. [class*=testimonials-one__nav-]:hover {
  2207. color: #fff;
  2208. -webkit-box-shadow: 0px 20px 60px 0px rgba(244, 151, 190, 0.8);
  2209. box-shadow: 0px 20px 60px 0px rgba(244, 151, 190, 0.8);
  2210. }
  2211. [class*=testimonials-one__nav-]:hover:before {
  2212. opacity: 1;
  2213. }
  2214. .testimonials-one__nav-left {
  2215. right: calc(100% + 90px);
  2216. }
  2217. .testimonials-one__nav-right {
  2218. left: calc(100% + 90px);
  2219. }
  2220. .testimonials-one__carousel__shape-one,
  2221. .testimonials-one__carousel__shape-two {
  2222. width: 100%;
  2223. height: 100%;
  2224. background-color: #fff9ff;
  2225. position: absolute;
  2226. -webkit-transform-origin: bottom center;
  2227. transform-origin: bottom center;
  2228. -webkit-transform: scaleX(0.9);
  2229. transform: scaleX(0.9);
  2230. bottom: -20px;
  2231. opacity: .2;
  2232. border-radius: 7px;
  2233. background-image: linear-gradient(68deg, #ff4eb5 0%, #ffa065 100%);
  2234. }
  2235. .testimonials-one__carousel__shape-one:after,
  2236. .testimonials-one__carousel__shape-two:after {
  2237. content: '';
  2238. position: absolute;
  2239. top: 2px;
  2240. bottom: 2px;
  2241. left: 2px;
  2242. right: 2px;
  2243. border-radius: 7px;
  2244. background-color: #fff;
  2245. }
  2246. .testimonials-one__carousel__shape-two {
  2247. -webkit-transform: scaleX(0.85);
  2248. transform: scaleX(0.85);
  2249. bottom: -40px;
  2250. }
  2251. /*
  2252. * 14. pricing styles
  2253. */
  2254. .pricing-one {
  2255. padding-top: 110px;
  2256. padding-bottom: 90px;
  2257. /* The switch - the box around the slider */
  2258. /* Hide default HTML checkbox */
  2259. /* The slider */
  2260. /* Rounded sliders */
  2261. }
  2262. .pricing-one .switch {
  2263. position: relative;
  2264. display: inline-block;
  2265. width: 85px;
  2266. height: 40px;
  2267. vertical-align: middle;
  2268. margin: 0;
  2269. }
  2270. .pricing-one .switch input {
  2271. display: none;
  2272. }
  2273. .pricing-one .slider {
  2274. position: absolute;
  2275. cursor: pointer;
  2276. top: 0;
  2277. left: 0;
  2278. right: 0;
  2279. bottom: 0;
  2280. -webkit-transition: .4s;
  2281. transition: .4s;
  2282. border-style: solid;
  2283. border-width: 1px;
  2284. border-color: #efefef;
  2285. background-color: white;
  2286. }
  2287. .pricing-one .slider:before {
  2288. position: absolute;
  2289. content: "";
  2290. height: 27px;
  2291. width: 27px;
  2292. left: 6px;
  2293. bottom: 6px;
  2294. -webkit-transform: translateX(0px);
  2295. transform: translateX(0px);
  2296. background-image: linear-gradient(40deg, #ff4eb5 0%, #ffa065 100%);
  2297. -webkit-transition: .4s;
  2298. transition: .4s;
  2299. }
  2300. .pricing-one input:focus + .slider {
  2301. -webkit-box-shadow: 0 0 1px #2196F3;
  2302. box-shadow: 0 0 1px #2196F3;
  2303. }
  2304. .pricing-one .switch.off .slider:before {
  2305. -webkit-transform: translateX(44px);
  2306. transform: translateX(44px);
  2307. }
  2308. .pricing-one .slider.round {
  2309. border-radius: 34px;
  2310. }
  2311. .pricing-one .slider.round:before {
  2312. border-radius: 50%;
  2313. }
  2314. .pricing-one ul.switch-toggler-list {
  2315. display: -webkit-box;
  2316. display: -ms-flexbox;
  2317. display: flex;
  2318. -webkit-box-align: center;
  2319. -ms-flex-align: center;
  2320. align-items: center;
  2321. -webkit-box-pack: center;
  2322. -ms-flex-pack: center;
  2323. justify-content: center;
  2324. margin-bottom: 50px;
  2325. }
  2326. .pricing-one ul.switch-toggler-list li a {
  2327. font-size: 18px;
  2328. font-weight: 400;
  2329. color: #74727a;
  2330. padding-left: 10px;
  2331. padding-right: 10px;
  2332. display: block;
  2333. }
  2334. .pricing-one ul.switch-toggler-list li.active a {
  2335. color: #2a2833;
  2336. }
  2337. .pricing-one [class*=col-] {
  2338. margin-bottom: 30px;
  2339. }
  2340. .pricing-one [class*=col-] + [class*=col-] {
  2341. border-left: 1px solid #efefef;
  2342. }
  2343. .pricing-one [class*=col-]:nth-child(2) .pricing-one__btn {
  2344. background-image: linear-gradient(40deg, #39aefe 0%, #3cff53 100%);
  2345. }
  2346. .pricing-one [class*=col-]:nth-child(3) .pricing-one__btn {
  2347. background-image: linear-gradient(40deg, #0db8ff 0%, #f033ff 100%);
  2348. }
  2349. .pricing-one .tabed-content #year,
  2350. .pricing-one .tabed-content #month {
  2351. display: none;
  2352. }
  2353. .pricing-one__single {
  2354. padding-left: 40px;
  2355. padding-right: 40px;
  2356. }
  2357. .pricing-one__single h3,
  2358. .pricing-one__single p,
  2359. .pricing-one__single ul,
  2360. .pricing-one__single span {
  2361. display: block;
  2362. margin: 0;
  2363. }
  2364. .pricing-one__single h3 {
  2365. color: #ff4eb5;
  2366. font-size: 60px;
  2367. letter-spacing: -0.04em;
  2368. line-height: 1em;
  2369. font-weight: 400;
  2370. margin-bottom: 25px;
  2371. }
  2372. .pricing-one__single p,
  2373. .pricing-one__single span.tag-line {
  2374. color: #2a2833;
  2375. font-size: 14px;
  2376. text-transform: uppercase;
  2377. font-weight: 500;
  2378. line-height: 1em;
  2379. letter-spacing: .2em;
  2380. }
  2381. .pricing-one__single ul {
  2382. border-top: 1px solid #efefef;
  2383. margin-top: 50px;
  2384. padding-top: 50px;
  2385. margin-bottom: 50px;
  2386. }
  2387. .pricing-one__single ul li {
  2388. color: #74727a;
  2389. font-size: 16px;
  2390. font-weight: 400;
  2391. line-height: 1em;
  2392. }
  2393. .pricing-one__single ul li + li {
  2394. margin-top: 30px;
  2395. }
  2396. .pricing-one__single span.tag-line {
  2397. font-size: 12px;
  2398. color: #74727a;
  2399. margin-top: 30px;
  2400. }
  2401. .pricing-one__btn {
  2402. padding: 18px 55.5px;
  2403. }
  2404. /*
  2405. * 15. cta styles
  2406. */
  2407. .cta-one {
  2408. padding: 165px 0;
  2409. position: relative;
  2410. }
  2411. .cta-one__bg {
  2412. position: absolute;
  2413. bottom: 4%;
  2414. right: 0;
  2415. }
  2416. .cta-one .container {
  2417. position: relative;
  2418. }
  2419. .cta-one .container:before {
  2420. content: '';
  2421. width: 448px;
  2422. height: 448px;
  2423. border-radius: 50%;
  2424. background-color: #f6fff7;
  2425. position: absolute;
  2426. top: -19%;
  2427. left: -12%;
  2428. }
  2429. .cta-one__moc {
  2430. position: absolute;
  2431. top: -45px;
  2432. left: -10%;
  2433. -webkit-animation: featureImgBounce 5s ease-in-out 0s infinite alternate;
  2434. animation: featureImgBounce 5s ease-in-out 0s infinite alternate;
  2435. }
  2436. .cta-one .block-title {
  2437. margin-bottom: 0;
  2438. margin-top: 30px;
  2439. margin-bottom: 45px;
  2440. }
  2441. .cta-one .block-title__title {
  2442. letter-spacing: -.04em;
  2443. }
  2444. .cta-one__icon {
  2445. font-size: 62px;
  2446. color: #ff4eb5;
  2447. }
  2448. .cta-one__text p {
  2449. margin: 0;
  2450. color: #74727a;
  2451. font-size: 24px;
  2452. line-height: 40px;
  2453. }
  2454. .cta-one ul {
  2455. margin: 0;
  2456. margin-top: 45px;
  2457. margin-bottom: 50px;
  2458. }
  2459. .cta-one ul li {
  2460. position: relative;
  2461. font-size: 16px;
  2462. color: #74727a;
  2463. padding-left: 30px;
  2464. }
  2465. .cta-one ul li + li {
  2466. margin-top: 3px;
  2467. }
  2468. .cta-one ul li i {
  2469. font-size: 18px;
  2470. color: #ffa065;
  2471. position: absolute;
  2472. top: 50%;
  2473. left: 0;
  2474. -webkit-transform: translateY(-50%);
  2475. transform: translateY(-50%);
  2476. }
  2477. .cta-one .thm-btn {
  2478. padding: 18px 55.5px;
  2479. }
  2480. .cta-two {
  2481. padding: 120px 0;
  2482. background-color: #fefbf4;
  2483. }
  2484. .cta-two .container {
  2485. position: relative;
  2486. }
  2487. .cta-two__moc {
  2488. position: absolute;
  2489. top: -40px;
  2490. right: -35px;
  2491. -webkit-animation: featureImgBounce 5s ease-in-out 0s infinite alternate;
  2492. animation: featureImgBounce 5s ease-in-out 0s infinite alternate;
  2493. }
  2494. .cta-two .block-title {
  2495. margin-top: 30px;
  2496. margin-bottom: 35px;
  2497. }
  2498. .cta-two .block-title__title {
  2499. letter-spacing: -.04em;
  2500. }
  2501. .cta-two__icon {
  2502. font-size: 62px;
  2503. color: #ffa065;
  2504. }
  2505. .cta-two__text {
  2506. margin-bottom: 50px;
  2507. }
  2508. .cta-two__text p {
  2509. margin: 0;
  2510. color: #74727a;
  2511. font-size: 18px;
  2512. line-height: 34px;
  2513. }
  2514. .cta-two__text p + p {
  2515. margin-top: 35px;
  2516. }
  2517. .cta-two .thm-btn {
  2518. padding: 18px 55.5px;
  2519. }
  2520. @-webkit-keyframes featureImgBounce {
  2521. 0% {
  2522. -webkit-transform: translateY(0);
  2523. transform: translateY(0);
  2524. }
  2525. 100% {
  2526. -webkit-transform: translateY(-30px);
  2527. transform: translateY(-30px);
  2528. }
  2529. }
  2530. @keyframes featureImgBounce {
  2531. 0% {
  2532. -webkit-transform: translateY(0);
  2533. transform: translateY(0);
  2534. }
  2535. 100% {
  2536. -webkit-transform: translateY(-30px);
  2537. transform: translateY(-30px);
  2538. }
  2539. }
  2540. /*
  2541. * 16. service styles
  2542. */
  2543. .service-one {
  2544. padding-bottom: 90px;
  2545. }
  2546. .service-one .container {
  2547. position: relative;
  2548. z-index: 10;
  2549. }
  2550. .service-one__single {
  2551. border-style: solid;
  2552. border-width: 1px;
  2553. border-color: #efefef;
  2554. border-radius: 5px;
  2555. padding: 2px;
  2556. position: relative;
  2557. margin-bottom: 30px;
  2558. }
  2559. .service-one__single:before {
  2560. content: '';
  2561. position: absolute;
  2562. top: -1px;
  2563. left: -1px;
  2564. right: -1px;
  2565. bottom: -1px;
  2566. border-radius: 5px;
  2567. opacity: 0;
  2568. background-image: linear-gradient(40deg, #ff43c0 0%, #ffa95c 100%);
  2569. -webkit-transition: all .4s ease;
  2570. transition: all .4s ease;
  2571. }
  2572. .service-one__single h3 {
  2573. margin: 0;
  2574. font-size: 20px;
  2575. line-height: 34px;
  2576. color: #2a2833;
  2577. }
  2578. .service-one__single h3 a {
  2579. color: inherit;
  2580. -webkit-transition: all .4s ease;
  2581. transition: all .4s ease;
  2582. }
  2583. .service-one__single h3 a:hover {
  2584. color: #ff4eb5;
  2585. }
  2586. .service-one__single p {
  2587. margin: 0;
  2588. color: #74727a;
  2589. font-size: 16px;
  2590. line-height: 34px;
  2591. margin-top: 35px;
  2592. margin-bottom: 25px;
  2593. }
  2594. .service-one__single:hover:before {
  2595. opacity: 1;
  2596. }
  2597. .service-one__link {
  2598. color: #2a2833;
  2599. font-size: 22px;
  2600. -webkit-transition: all .4s ease;
  2601. transition: all .4s ease;
  2602. }
  2603. .service-one__link:hover {
  2604. color: #ff4eb5;
  2605. }
  2606. .service-one__inner {
  2607. background-color: #fff;
  2608. border-radius: 5px;
  2609. position: relative;
  2610. padding-top: 50px;
  2611. padding-bottom: 35px;
  2612. }
  2613. .service-one__icon {
  2614. width: 108px;
  2615. height: 108px;
  2616. -webkit-box-shadow: 0px 20px 40px 0px rgba(255, 118, 142, 0.8);
  2617. box-shadow: 0px 20px 40px 0px rgba(255, 118, 142, 0.8);
  2618. border-radius: 5px;
  2619. background-image: linear-gradient(40deg, #ff43c0 0%, #ffa95c 100%);
  2620. margin-left: auto;
  2621. margin-right: auto;
  2622. display: -webkit-box;
  2623. display: -ms-flexbox;
  2624. display: flex;
  2625. -webkit-box-align: center;
  2626. -ms-flex-align: center;
  2627. align-items: center;
  2628. -webkit-box-pack: center;
  2629. -ms-flex-pack: center;
  2630. justify-content: center;
  2631. color: #fff;
  2632. font-size: 70px;
  2633. margin-bottom: 30px;
  2634. }
  2635. .service-one [class*=col-]:nth-child(1) .service-one__single:before,
  2636. .service-one [class*=col-]:nth-child(1) .service-one__icon {
  2637. background-mage: linear-gradient(40deg, #ff43c0 0%, #ffa95c 100%);
  2638. }
  2639. .service-one [class*=col-]:nth-child(1) .service-one__icon {
  2640. -webkit-box-shadow: 0px 20px 40px 0px rgba(255, 118, 142, 0.8);
  2641. box-shadow: 0px 20px 40px 0px rgba(255, 118, 142, 0.8);
  2642. }
  2643. .service-one [class*=col-]:nth-child(2) .service-one__single:before,
  2644. .service-one [class*=col-]:nth-child(2) .service-one__icon {
  2645. background-image: linear-gradient(40deg, #0db8ff 0%, #f332ff 100%);
  2646. }
  2647. .service-one [class*=col-]:nth-child(2) .service-one__icon {
  2648. -webkit-box-shadow: 0px 20px 60px 0px rgba(141, 142, 255, 0.8);
  2649. box-shadow: 0px 20px 60px 0px rgba(141, 142, 255, 0.8);
  2650. }
  2651. .service-one [class*=col-]:nth-child(3) .service-one__single:before,
  2652. .service-one [class*=col-]:nth-child(3) .service-one__icon {
  2653. background-image: linear-gradient(40deg, #39aeff 0%, #3cff53 100%);
  2654. }
  2655. .service-one [class*=col-]:nth-child(3) .service-one__icon {
  2656. -webkit-box-shadow: 0px 20px 40px 0px rgba(58, 212, 173, 0.8);
  2657. box-shadow: 0px 20px 40px 0px rgba(58, 212, 173, 0.8);
  2658. }
  2659. .service-one [class*=col-]:nth-child(4) .service-one__single:before,
  2660. .service-one [class*=col-]:nth-child(4) .service-one__icon {
  2661. background-image: linear-gradient(40deg, #ff703e 0%, #ffec4e 100%);
  2662. }
  2663. .service-one [class*=col-]:nth-child(4) .service-one__icon {
  2664. -webkit-box-shadow: 0px 20px 40px 0px rgba(255, 178, 71, 0.8);
  2665. box-shadow: 0px 20px 40px 0px rgba(255, 178, 71, 0.8);
  2666. }
  2667. /*
  2668. * 17. app-shot styles
  2669. */
  2670. .app-shot-one {
  2671. padding-top: 120px;
  2672. padding-bottom: 115px;
  2673. position: relative;
  2674. }
  2675. .app-shot-one__bg {
  2676. position: absolute;
  2677. bottom: 25%;
  2678. left: 0;
  2679. }
  2680. .app-shot-one .container-fluid {
  2681. max-width: 1595px;
  2682. width: 100%;
  2683. position: relative;
  2684. }
  2685. .app-shot-one .app-shot-one__carousel {
  2686. padding-top: 100.5px;
  2687. padding-bottom: 100.5px;
  2688. margin-top: -20px;
  2689. }
  2690. .app-shot-one .app-shot-one__carousel:before {
  2691. content: '';
  2692. position: absolute;
  2693. top: 50%;
  2694. left: 50%;
  2695. -webkit-transform: translate(-50%, -49%) scaleY(1);
  2696. transform: translate(-50%, -49%) scaleY(1);
  2697. background-image: url(../images/app-shots/app-screen-moc.png);
  2698. background-position: center center;
  2699. background-repeat: no-repeat;
  2700. width: 423px;
  2701. height: 739px;
  2702. }
  2703. @media (max-width: 1440px) {
  2704. .app-shot-one .app-shot-one__carousel:before {
  2705. -webkit-transform: translate(-50%, -49%) scaleY(0.95);
  2706. transform: translate(-50%, -49%) scaleY(0.95);
  2707. }
  2708. }
  2709. @media (max-width: 1280px) {
  2710. .app-shot-one .app-shot-one__carousel:before {
  2711. -webkit-transform: translate(-50%, -49%) scale(0.8);
  2712. transform: translate(-50%, -49%) scale(0.8);
  2713. }
  2714. }
  2715. .app-shot-one .app-shot-one__carousel .owl-dots {
  2716. position: absolute;
  2717. bottom: -80px;
  2718. left: 0;
  2719. text-align: center;
  2720. z-index: 10;
  2721. width: 100%;
  2722. }
  2723. .app-shot-one .app-shot-one__carousel .owl-dots .owl-dot span {
  2724. width: 7px;
  2725. height: 7px;
  2726. background-color: #1c1d3f;
  2727. -webkit-transform: scale(1);
  2728. transform: scale(1);
  2729. opacity: 0.2;
  2730. margin: 0 3px;
  2731. -webkit-transition: opacity .4s ease, background .4s ease, -webkit-transform .4s ease;
  2732. transition: opacity .4s ease, background .4s ease, -webkit-transform .4s ease;
  2733. transition: transform .4s ease, opacity .4s ease, background .4s ease;
  2734. transition: transform .4s ease, opacity .4s ease, background .4s ease, -webkit-transform .4s ease;
  2735. }
  2736. .app-shot-one .app-shot-one__carousel .owl-dots .owl-dot:hover span, .app-shot-one .app-shot-one__carousel .owl-dots .owl-dot.active span {
  2737. opacity: 1;
  2738. background-color: #1bc9f4;
  2739. -webkit-transform: scale(1.285);
  2740. transform: scale(1.285);
  2741. }
  2742. .app-shot-one .owl-item img {
  2743. -webkit-transition: -webkit-transform .4s ease;
  2744. transition: -webkit-transform .4s ease;
  2745. transition: transform .4s ease;
  2746. transition: transform .4s ease, -webkit-transform .4s ease;
  2747. }