style.css 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486
  1. body{
  2. font-family: 'Fira Sans', sans-serif;
  3. color: #8d8d8d;
  4. }
  5. button{
  6. display: block;
  7. background: transparent;
  8. }
  9. ul, li{
  10. display: block;
  11. margin: 0;
  12. padding: 0;
  13. }
  14. .vh-dependent{
  15. height: 46vh;
  16. display: flex;
  17. align-items: center;
  18. }
  19. .be-static{
  20. position: static;
  21. }
  22. h1, h2, h3, h4, h5, h6{
  23. font-style: normal;
  24. font-weight: 700;
  25. color: #151515;
  26. margin: 0;
  27. padding: 0;
  28. }
  29. h2{
  30. font-size: 38px;
  31. }
  32. h3{
  33. font-size: 22px;
  34. }
  35. .btn{
  36. background: #4737ff;
  37. color: #fff;
  38. text-transform: uppercase;
  39. font-weight: 500;
  40. font-size: 14px;
  41. padding: 13px 26px;
  42. border: none;
  43. display: inline;
  44. border-radius: 3px;
  45. letter-spacing: 0.3em;
  46. text-align: center;
  47. transition: all 0.3s ease;
  48. }
  49. .btn:hover{
  50. background: #3516f2;
  51. color: #fff;
  52. }
  53. .header{
  54. height: 90vh;
  55. }
  56. .nav{
  57. padding-top: 59px;
  58. margin-bottom: 127px;
  59. }
  60. .logo{
  61. }
  62. .search{
  63. border: none;
  64. }
  65. .menu{
  66. border: none;
  67. }
  68. .offer-cont__title{
  69. font-size: 60px;
  70. letter-spacing: -0.01em;
  71. line-height: 1.2em;
  72. }
  73. .offer-cont__text{
  74. margin: 30px 0 56px;
  75. }
  76. .offer-cont__btn{
  77. }
  78. .hero{
  79. background: url('../img/image-1.jpg') no-repeat right top;
  80. background-size: 80% 100%;
  81. width: 55%;
  82. height: 800px;
  83. position: absolute;
  84. right: 0;
  85. top: 142px;
  86. }
  87. .video{
  88. position: absolute;
  89. left: 0;
  90. bottom: 25%;
  91. width: 40%;
  92. height: 36%;
  93. display: block;
  94. background: url('../img/video.jpg') no-repeat center center;
  95. display: flex;
  96. justify-content: center;
  97. text-align: center;
  98. }
  99. .video::after{
  100. content: '';
  101. display: block;
  102. background: url('../img/play.svg');
  103. width: 65px;
  104. height: 65px;
  105. border-radius: 4px;
  106. }
  107. .problems{
  108. padding-top: 440px;
  109. }
  110. .about{
  111. }
  112. .about__title{
  113. margin-bottom: 30px;
  114. }
  115. .about__text{
  116. }
  117. .about__author{
  118. background: url('../img/author.jpg') no-repeat left center;
  119. padding: 7px 0 7px 96px;
  120. margin-top: 61px;
  121. }
  122. .about__name{
  123. font-size: 22px;
  124. }
  125. .about__dop{
  126. margin-bottom: 0;
  127. }
  128. .services{
  129. padding-top: 142px;
  130. }
  131. .section-title{
  132. }
  133. .section-title__label{
  134. text-transform: uppercase;
  135. font-size: 14px;
  136. letter-spacing: 0.25em;
  137. color: #8f8f8f;
  138. margin-bottom: 40px;
  139. }
  140. .section-title__heading{
  141. }
  142. .serv-list{
  143. color: #8d8d8d;
  144. margin-top: 67px;
  145. }
  146. .serv-list__item{
  147. margin-bottom: 20px;
  148. }
  149. .left{
  150. margin-left: 37px;
  151. }
  152. .works-carousel{
  153. margin-top: 99px;
  154. }
  155. /* @media screen and (min-width: 992px){
  156. .works-carousel, .item, .works-carousel .owl-item{
  157. width: 825px !important;
  158. position: relative;
  159. }
  160. } */
  161. .owl-theme .owl-dots, .owl-theme .owl-nav{
  162. text-align: left;
  163. }
  164. .owl-theme .owl-nav [class*=owl-]{
  165. margin: 0;
  166. }
  167. .works-carousel .owl-nav{
  168. margin-top: 50px !important;
  169. }
  170. .works-carousel .owl-prev{
  171. margin-right: 25px !important;
  172. }
  173. .owl-carousel__play{
  174. display: block;
  175. background: url('../img/play.svg');
  176. width: 65px;
  177. height: 65px;
  178. position: absolute;
  179. left: 50%;
  180. top: 50%;
  181. margin-left: -32px;
  182. margin-top: -32px;
  183. cursor: pointer;
  184. border-radius: 4px;
  185. }
  186. .collage{
  187. padding-top: 219px;
  188. width: 50%;
  189. background: url('../img/res-1.jpg') no-repeat left top / 80% 70%;
  190. height: 540px;
  191. position: absolute;
  192. left: 0;
  193. }
  194. .collage img{
  195. display: block;
  196. width: 350px;
  197. height: 450px;
  198. position: absolute;
  199. right: 0;
  200. bottom: 0;
  201. box-shadow: 30px 80px 130px rgba(0, 0, 0, 0.25);
  202. }
  203. .result{
  204. padding-top: 219px;
  205. }
  206. .easy{
  207. margin-left: 65px;
  208. margin-top: 30px;
  209. }
  210. .easy__title{
  211. margin-bottom: 30px;
  212. }
  213. .easy__text{
  214. margin-bottom: 62px;
  215. }
  216. .easy__point{
  217. text-transform: uppercase;
  218. padding-left: 83px;
  219. letter-spacing: 0.1em;
  220. color: #000;
  221. font-weight: 500;
  222. font-size: 14px;
  223. padding-top: 20px;
  224. padding-bottom: 20px;
  225. margin-bottom: 25px;
  226. }
  227. .first{
  228. background: url('../img/icon100.svg') no-repeat left center;
  229. }
  230. .second{
  231. background: url('../img/bag.svg') no-repeat left center;
  232. }
  233. .works{
  234. padding-top: 283px;
  235. }
  236. .work-tabs{
  237. margin-left: 60px;
  238. font-size: 14px;
  239. text-transform: uppercase;
  240. letter-spacing: 0.3em;
  241. margin-top: 70px;
  242. }
  243. .work-tabs__item a{
  244. text-decoration: none;
  245. color: #8d8d8d;
  246. }
  247. .work-tabs__item.active a{
  248. color: #1434e1;
  249. }
  250. .works-wrap{
  251. flex-wrap: wrap;
  252. margin-top: 108px;
  253. }
  254. .works-wrap__item{
  255. margin-bottom: 30px;
  256. display: block;
  257. position: relative;
  258. }
  259. .works-wrap__item img{
  260. transition: all 0.4s ease;
  261. display: block;
  262. }
  263. .works-wrap__item:hover img{
  264. box-shadow: -30px 80px 200px rgba(0, 0, 0, 0.25);
  265. -moz-transform: rotate(3deg) translate(0px, -3px) skew(2deg, 2deg);
  266. -webkit-transform: rotate(3deg) translate(0px, -3px) skew(2deg, 2deg);
  267. -o-transform: rotate(3deg) translate(0px, -3px) skew(2deg, 2deg);
  268. -ms-transform: rotate(3deg) translate(0px, -3px) skew(2deg, 2deg);
  269. transform: rotate(3deg) translate(0px, -3px) skew(2deg, 2deg);
  270. }
  271. .works-wrap__item:hover:after{
  272. visibility: visible;
  273. }
  274. .works-wrap__item:after{
  275. content: '';
  276. visibility: hidden;
  277. display: block;
  278. background: url('../img/play.svg');
  279. width: 65px;
  280. height: 65px;
  281. position: absolute;
  282. left: 50%;
  283. top: 50%;
  284. margin-left: -32px;
  285. margin-top: -32px;
  286. transition: all 0.3s ease;
  287. }
  288. .testimonials{
  289. padding-top: 248px;
  290. }
  291. .contributor{
  292. margin-top: 121px;
  293. }
  294. .contributor__title{
  295. margin-bottom: 20px;
  296. }
  297. .contributor__desc{
  298. }
  299. .cont-photo{
  300. display: block;
  301. }
  302. .contributor-carousel .owl-nav{
  303. display: flex;
  304. margin-top: -50px;
  305. position: relative;
  306. }
  307. .contributor-carousel .owl-prev{
  308. margin-right: 25px;
  309. }
  310. .clients{
  311. padding-top: 278px;
  312. }
  313. .clients-row{
  314. margin-top: 127px;
  315. }
  316. .footer{
  317. height: 240px;
  318. background: #515151;
  319. margin-top: 136px;
  320. }
  321. .footer-logo{
  322. margin-top: 109px;
  323. margin-bottom: 109px;
  324. }
  325. .section-title__heading_review{
  326. font-size: 28px;
  327. }
  328. @media screen and (max-width: 1200px){
  329. .work-tabs{
  330. margin-left: 0;
  331. }
  332. .works-wrap__item{
  333. width: 30%;
  334. }
  335. .works-wrap__item img{
  336. display: block;
  337. width: 100%;
  338. }
  339. .contributor{
  340. margin-top: 50px;
  341. }
  342. }
  343. @media screen and (max-width: 992px){
  344. .works-carousel .item, .works-carousel .owl-item{
  345. width: auto !important;
  346. }
  347. }
  348. @media screen and (max-width: 720px){
  349. .hero{
  350. position: relative;
  351. width: 100%;
  352. height: 200px;
  353. top: 0;
  354. margin-top: 60px;
  355. }
  356. .vh-dependent{
  357. height: auto;
  358. display: flex;
  359. align-items: center;
  360. }
  361. .about{
  362. margin-top: 60px;
  363. }
  364. .collage{
  365. position: relative;
  366. width: 100%;
  367. }
  368. .easy{
  369. margin-left: 0;
  370. margin-top: 70px;
  371. }
  372. .contributor-carousel .owl-nav{
  373. margin-top: 40px;
  374. }
  375. }
  376. @media screen and (max-width: 576px){
  377. .left{
  378. margin-left: 0;
  379. }
  380. .works-wrap__item{
  381. width: 100%;
  382. margin-bottom: 40px;
  383. }
  384. .clients-row{
  385. flex-direction: column;
  386. justify-content: center;
  387. }
  388. .clients-row__item{
  389. margin-bottom: 30px;
  390. text-align: center;
  391. }
  392. .work-tabs{
  393. flex-direction: column;
  394. }
  395. .work-tabs__item{
  396. margin-bottom: 40px;
  397. }
  398. }