_footer.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. // Footer
  2. .footer {
  3. background: var(--footer-bg-color);
  4. display: flex;
  5. gap:32px;
  6. padding: 48px 0;
  7. flex-direction: column;
  8. align-items: center;
  9. color: var(--text-color);
  10. @include mobile{
  11. gap: 24px;
  12. padding: 32px 0;
  13. }
  14. &__content-inner{
  15. display: flex;
  16. align-items: flex-start;
  17. gap: 60px;
  18. align-self: stretch;
  19. @include mobile{
  20. gap: 20px;
  21. flex-direction: column;
  22. }
  23. }
  24. &__text{
  25. font-size: 14px;
  26. font-style: normal;
  27. font-weight: 400;
  28. line-height: 20px; /* 142.857% */
  29. color:var(--body-bg-color);
  30. @include mobile{
  31. font-size:12px;
  32. line-height: 18px;
  33. }
  34. }
  35. &__logo{
  36. width: 210px;
  37. height: 48px;
  38. @include mobile{
  39. width:100%;
  40. display:flex;
  41. align-items: center;
  42. justify-content: center;
  43. }
  44. img {
  45. width: 190px;
  46. height: 44px;
  47. display: block;
  48. cursor: pointer;
  49. object-fit: contain;
  50. transition: opacity 0.3s ease;
  51. }
  52. }
  53. &__bottom-imgs{
  54. display: flex;
  55. justify-content: center;
  56. align-items: center;
  57. gap: 40px;
  58. align-self: stretch;
  59. list-style:none;
  60. margin:0;
  61. padding:0;
  62. img{
  63. opacity: 0.4;
  64. }
  65. @include mobile{
  66. gap:20px;
  67. display:grid;
  68. grid-template-columns: 1fr 1fr;
  69. }
  70. }
  71. &__menu-list{
  72. display: flex;
  73. align-items: center;
  74. justify-content: center;
  75. gap: 24px;
  76. @include mobile{
  77. gap:16px;
  78. }
  79. }
  80. &__menu-item{
  81. list-style: none;
  82. }
  83. &__menu-link{
  84. color: var(--Main-White, #FFF);
  85. font-size: 16px;
  86. font-style: normal;
  87. font-weight: 700;
  88. line-height: normal;
  89. text-decoration-line: underline;
  90. text-decoration-style: solid;
  91. text-decoration-skip-ink: none;
  92. text-decoration-thickness: auto;
  93. text-underline-offset: auto;
  94. text-underline-position: from-font;
  95. &:hover{
  96. color:#fff;
  97. opacity:0.9;
  98. }
  99. }
  100. &__copyright{
  101. color: var(--Main-White, #FFF);
  102. font-size: 14px;
  103. font-style: normal;
  104. font-weight: 400;
  105. line-height: normal;
  106. }
  107. }