App.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. body{
  2. font-family: 'Montserrat', sans-serif;
  3. background-color:#c8cdd1;
  4. color:#1d2e3b;
  5. margin: 0 auto;
  6. padding: 0 auto;
  7. }
  8. div,p,input,button,form,span,a,ul,li{
  9. box-sizing: border-box;
  10. }
  11. .container{
  12. max-width: 1170px;
  13. margin: 0 auto;
  14. }
  15. .header{
  16. background: -webkit-linear-gradient(90deg, rgb(173, 200, 235), rgb(62, 102, 154));
  17. background: -moz-linear-gradient(90deg, rgb(173, 200, 235), rgb(62, 102, 154));
  18. background: linear-gradient(90deg, rgb(173, 200, 235), rgb(62, 102, 154));
  19. padding-top: 60px;
  20. color: #fff;
  21. padding-bottom: 100px;
  22. }
  23. .logo_image{
  24. width: 10ex;
  25. height: 10ex;
  26. }
  27. .logo{
  28. display: flex;
  29. color: #fff;
  30. }
  31. .logo_text{
  32. width: 250px;
  33. }
  34. .offer{
  35. width: 490px;
  36. }
  37. .wrapper{
  38. /* выравнивание в одну строку */
  39. display: flex;
  40. justify-content: space-between;
  41. align-items:center;
  42. }
  43. .title span{
  44. color: #273c4d;
  45. font-size: 59px;
  46. }
  47. .intro{
  48. margin: 40px 0;
  49. width: 390px;
  50. font-family: 'Open Sans', sans-serif;
  51. font-size: 16px;
  52. line-height: 1.66em;
  53. font-weight: 400;
  54. font-size: 15px;
  55. }
  56. h1,h2.h3{
  57. font-weight: 700;
  58. }
  59. p {
  60. line-height: 1.66em;
  61. }
  62. .btn{
  63. background: #fab30b;
  64. color: #253147;
  65. display: block;
  66. width: 220px;
  67. padding: 20px 0;
  68. text-align: center;
  69. text-decoration: none;
  70. transition: all 0.5s ease;
  71. border-radius: 12px;
  72. font-weight: 700;
  73. }
  74. .btn:hover{
  75. background: #eba809;
  76. }
  77. .possibility{
  78. background: #c7d0d7;
  79. padding-top: 40px;
  80. padding-bottom: 115px;
  81. }
  82. .section-title{
  83. padding-top: 30px;
  84. font-size: 20px;
  85. text-align: center;
  86. }
  87. .bonuses{
  88. display: flex;
  89. justify-content: space-between;
  90. margin-top: 65px;
  91. }
  92. .bonus{
  93. width: 290px;
  94. text-align: center;
  95. background-color: #fff;
  96. border-radius: 10px;
  97. border-style: solid;
  98. border-width: 10px;
  99. border-color: #fff;
  100. height: 320px;
  101. }
  102. .bonus-title{
  103. font-size: 19px;
  104. padding-top: 1em;
  105. }
  106. .bonus-text{
  107. margin-top: 18px;
  108. line-height: 1.66em;
  109. }
  110. ul {
  111. padding: 0; /* Убираем поля */
  112. margin-left: 20px; /* Отступ слева */
  113. width: 400px;
  114. }
  115. .list{
  116. padding-right: 100px;
  117. }
  118. .bio{
  119. background: #7cafd0;
  120. /* выравнивание в одну строку */
  121. display: flex;
  122. justify-content: space-between;
  123. align-items:center;
  124. padding-bottom: 60px;
  125. }
  126. .sven_img{
  127. width: 360px;
  128. height: 430px;
  129. }
  130. .galery{
  131. padding-bottom: 100px;
  132. }
  133. table{
  134. max-width: 1170px;
  135. margin: 0 auto;
  136. border-color: #7cafd0;
  137. border-style: solid;
  138. border-width: 20px;
  139. }
  140. .image_galery{
  141. width: 300px;
  142. height: 400px;
  143. }
  144. .mail{
  145. background-color: #ecf3f8;
  146. padding-bottom: 100px;
  147. }
  148. .form{
  149. margin-top: 40px;
  150. }
  151. .input{
  152. font-family: 'Montserrat', sans-serif;
  153. display: block;
  154. margin:auto;
  155. font-size: 15px;
  156. font-weight: 500;
  157. width: 340px;
  158. height: 50px;
  159. border: 1px solid #bbbbbb;
  160. border-radius: 5px;
  161. padding-left: 20px;
  162. margin-bottom: 15px;
  163. color: #85828c;
  164. position: relative;
  165. }
  166. .btn-form{
  167. display: block;
  168. margin: auto;
  169. border: none;
  170. cursor: pointer;
  171. width: 340px;
  172. height: 55px;
  173. }
  174. .text{
  175. font-family: 'Montserrat', sans-serif;
  176. padding-top: 10px;
  177. height: 150px;
  178. width: 320px;
  179. }
  180. .footer{
  181. background: #4a7496;
  182. padding: 62px 0;
  183. }
  184. .contact{
  185. color: #ffffff;
  186. font-size: 14px;
  187. text-align: left;
  188. }
  189. .logo_image{
  190. width: 50px;
  191. height: 50px;
  192. padding-right: 10px;
  193. }