style.css 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. /* Andrey Shevchenko. FEA-23. Home work 7 */
  2. * {
  3. box-sizing: border-box;
  4. }
  5. body {
  6. font-family: 'Roboto', sans-serif;
  7. /* background-color: rgb(0, 0, 0); */
  8. padding: 0px;
  9. margin: 0;
  10. }
  11. .headerclass {
  12. position: absolute;
  13. left: 0;
  14. top: 0;
  15. width: 100%;
  16. padding: 62px;
  17. display: flex;
  18. flex-direction: row;
  19. flex-wrap: nowrap;
  20. align-items: center;
  21. justify-content: space-between;
  22. color: #fff;
  23. font-size: 14px;
  24. font-weight: 500;
  25. z-index: 3;
  26. }
  27. .headerclass > :nth-child(-n + 2) {
  28. margin-right: 20px;
  29. }
  30. .headerclass a {
  31. color: #fff;
  32. text-decoration: none;
  33. }
  34. .headerclass a:hover {
  35. text-decoration: underline;
  36. }
  37. .navclass {
  38. color: #fff;
  39. display: flex;
  40. flex-direction: row;
  41. flex-wrap: nowrap;
  42. justify-content: space-between;
  43. min-width: 400px;
  44. max-width: 550px;
  45. flex-grow: 1;
  46. margin-right: -20px;
  47. }
  48. .navclass > :last-child {
  49. color: rgba(255, 202, 0, 1);
  50. width: 120px;
  51. }
  52. @media (max-width: 1100px) {
  53. .navclass {
  54. display: none;
  55. }
  56. }
  57. .heademail {
  58. font-size: 16px;
  59. }
  60. @media (max-width: 800px) {
  61. .heademail {
  62. display: none;
  63. }
  64. }
  65. .emeilmenu {
  66. display: flex;
  67. justify-content: space-between;
  68. max-width: 420px;
  69. flex-grow: 1;
  70. }
  71. @media (max-width: 800px) {
  72. .emeilmenu {
  73. justify-content: flex-end;
  74. }
  75. }
  76. .headmenu {
  77. display: flex;
  78. flex-direction: row;
  79. flex-wrap: nowrap;
  80. align-items: center;
  81. margin-left: 25px;
  82. }
  83. @media (max-width: 450px) {
  84. .topmenumenu {
  85. display: none;
  86. }
  87. }
  88. .poloski {
  89. width: 50px;
  90. height: 12px;
  91. border-top: #fff solid 1px;
  92. border-bottom: #fff solid 1px;
  93. margin-left: 25px;
  94. }
  95. /* ---------------MAIN-------------- */
  96. .all_window {
  97. width: 100%;
  98. height: 100vh;
  99. display: flex;
  100. justify-content: center;
  101. align-items: center;
  102. background-color: #000;
  103. padding-left: 50px;
  104. padding-right: 50px;
  105. margin-bottom: 41px;
  106. }
  107. .video {
  108. position: absolute;
  109. left: 0px;
  110. top: 0px;
  111. width: 100%;
  112. height: 100vh;
  113. z-index: 1;
  114. }
  115. .center_blok {
  116. max-width: 960px;
  117. z-index: 2;
  118. margin-top: 100px;
  119. }
  120. .welcome {
  121. margin-bottom: 23px;
  122. }
  123. .welcome__svg {
  124. margin-right: 9px;
  125. }
  126. .welcome__text {
  127. font-weight: 300;
  128. font-size: 18px;
  129. line-height: 21px;
  130. color: rgb(255, 255, 255, 1);
  131. }
  132. .center_blok__title {
  133. font-weight: 700;
  134. font-size: 64px;
  135. line-height: 75px;
  136. color: #ffffff;
  137. max-width: 806px;
  138. margin-bottom: 100px;
  139. }
  140. @media (max-width: 1100px) {
  141. .center_blok__title {
  142. font-size: 45px;
  143. line-height: 55px;
  144. max-width: 600px;
  145. }
  146. }
  147. .center_blok__discuss {
  148. position: relative;
  149. width: 240px;
  150. height: 68px;
  151. background-color: rgb(255, 202, 0, 1);
  152. display: flex;
  153. align-items: center;
  154. justify-content: center;
  155. overflow: hidden;
  156. }
  157. .center_blok__discuss:hover .center_blok__discuss__text {
  158. color: rgb(255, 202, 0, 1);
  159. transition: all 1s linear;
  160. }
  161. .center_blok__discuss:hover .center_blok__discuss__tochka {
  162. transition: all 1s linear;
  163. box-shadow: 0 0px 0 180px rgb(32, 32, 32, 1);
  164. right: 150px;
  165. }
  166. .center_blok__discuss__text {
  167. position: absolute;
  168. left: 30px;
  169. font-weight: 500;
  170. font-size: 14px;
  171. color: #202020;
  172. z-index: 10;
  173. transition: all 0.4s linear;
  174. }
  175. .center_blok__discuss__tochka {
  176. position: absolute;
  177. right: 30px;
  178. width: 8px;
  179. height: 8px;
  180. border-radius: 50%;
  181. background-color: rgb(32, 32, 32);
  182. margin-left: 67px;
  183. z-index: 9;
  184. box-shadow: 0 0px 0 0px rgb(32, 32, 32, 1);
  185. transition: all 0.4s linear;
  186. }
  187. /* -------BOTTOM----------- */
  188. .low_left_scroll {
  189. display: flex;
  190. justify-content: center;
  191. align-items: center;
  192. position: absolute;
  193. left: 30px;
  194. bottom: 111px;
  195. color: rgb(126, 126, 126);
  196. font-size: 14px;
  197. line-height: 20px;
  198. transform: rotate(-90deg);
  199. z-index: 3;
  200. }
  201. @media (max-width: 800px) {
  202. .low_left_scroll {
  203. display: none;
  204. }
  205. }
  206. .low_left_scroll__arrow {
  207. transform: rotate(90deg);
  208. margin-right: 35px;
  209. }
  210. .chatbutton {
  211. position: absolute;
  212. right: 60px;
  213. bottom: 109px;
  214. width: 76px;
  215. height: 76px;
  216. background-color: rgb(255, 202, 0);
  217. border-radius: 50%;
  218. display: flex;
  219. justify-content: center;
  220. align-items: center;
  221. box-shadow: none;
  222. transition: all 0.2s linear;
  223. z-index: 3;
  224. }
  225. @media (max-width: 450px) {
  226. .chatbutton {
  227. display: none;
  228. }
  229. }
  230. .chatbutton:hover {
  231. box-shadow: 0 0px 0 15px rgb(255, 202, 0, 0.2);
  232. }
  233. /* --------------whitepart----------- */
  234. .whitepart {
  235. max-width: 960px;
  236. border: 2px solid #000;
  237. margin: 0 auto;
  238. display: none;
  239. }
  240. .topik {
  241. margin-bottom: 53px;
  242. }
  243. .services {
  244. display: flex;
  245. flex-wrap: nowrap;
  246. justify-content: space-between;
  247. border: 2px solid rgb(62, 251, 37);
  248. }
  249. .servicess_item {
  250. max-width: 50%;
  251. display: flex;
  252. justify-content: center;
  253. border: 2px solid rgb(251, 37, 37);
  254. }
  255. .servicess_item__img {
  256. margin-right: 17px;
  257. /* width: 130px; */
  258. height: 130px;
  259. }
  260. .servicess_item__info__name {
  261. font-weight: 500;
  262. font-size: 22px;
  263. line-height: 26px;
  264. color: rgb(32, 32, 32);
  265. margin-bottom: 28px;
  266. }
  267. .servicess_item__info__content {
  268. font-size: 14px;
  269. line-height: 20px;
  270. color: #7e7e7e;
  271. margin-bottom: 21px;
  272. }
  273. .servicess_item__info__more {
  274. font-weight: 500;
  275. font-size: 14px;
  276. line-height: 16px;
  277. color: #202020;
  278. }