_footer.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. @include mobile{
  30. font-size:12px;
  31. line-height: 18px;
  32. }
  33. }
  34. &__logo{
  35. width: 210px;
  36. height: 48px;
  37. @include mobile{
  38. width:100%;
  39. display:flex;
  40. align-items: center;
  41. justify-content: center;
  42. }
  43. img {
  44. width: 190px;
  45. height: 44px;
  46. display: block;
  47. cursor: pointer;
  48. object-fit: contain;
  49. transition: opacity 0.3s ease;
  50. }
  51. }
  52. &__bottom-imgs{
  53. display: flex;
  54. justify-content: center;
  55. align-items: center;
  56. gap: 40px;
  57. align-self: stretch;
  58. list-style:none;
  59. margin:0;
  60. padding:0;
  61. img{
  62. opacity: 0.4;
  63. }
  64. @include mobile{
  65. gap:20px;
  66. display:grid;
  67. grid-template-columns: 1fr 1fr;
  68. }
  69. }
  70. &__menu-list{
  71. display: flex;
  72. align-items: center;
  73. justify-content: center;
  74. gap: 24px;
  75. @include mobile{
  76. gap:16px;
  77. }
  78. }
  79. &__menu-item{
  80. list-style: none;
  81. }
  82. &__menu-link{
  83. color: var(--Main-White, #FFF);
  84. font-size: 16px;
  85. font-style: normal;
  86. font-weight: 700;
  87. line-height: normal;
  88. text-decoration-line: underline;
  89. text-decoration-style: solid;
  90. text-decoration-skip-ink: none;
  91. text-decoration-thickness: auto;
  92. text-underline-offset: auto;
  93. text-underline-position: from-font;
  94. &:hover{
  95. color:#fff;
  96. opacity:0.9;
  97. }
  98. }
  99. &__copyright{
  100. color: var(--Main-White, #FFF);
  101. font-size: 14px;
  102. font-style: normal;
  103. font-weight: 400;
  104. line-height: normal;
  105. }
  106. }