@use "../base" as *; @use "../abstracts" as *; $contact-max-width: 252px; #block-footer-contact { width: 100%; display: block; @include breakpoint(medium) { max-width: calc(50% - 4px); display: flex; justify-content: center; } @include breakpoint(full) { display: block; } .info-box { width: 100%; min-height: 0; border-radius: 4px; border: 1px solid $light-gray; display: flex; flex-direction: row; position: relative; height: 100%; @include breakpoint(medium) { min-height: 240px; max-width: 100%; } &__image { display: none; position: absolute; bottom: 0; right: 0; max-width: 265px; width: 100%; height: 250px; @include breakpoint(medium) { display: block; } } .contact { width: 100%; max-width: none; margin: 20px 18px; @include breakpoint(medium) { max-width: $contact-max-width; margin: 36.5px 0 44.5px 40px; } &__title { font-family: $font-primary; font-weight: 500; font-size: 1.25rem; line-height: 1.625rem; margin-bottom: 14px; @include breakpoint(medium) { font-size: 1.5rem; line-height: 2rem; margin-bottom: 24px; } } &__phone-number { margin-bottom: 8px; a { font-family: $font-primary; font-size: 0.875rem; line-height: 1.125rem; text-decoration: none; display: flex; align-items: center; &::before { content: ""; display: inline-block; width: 16px; height: 16px; background-image: url("/assets/icons/phone.svg"); background-repeat: no-repeat; margin-right: 8px; } } } &__phone-number--second { margin-bottom: 8px; @include breakpoint(medium) { margin-bottom: 12px; } } &__available { font-family: $font-primary; font-weight: 700; font-size: 0.625rem; line-height: 1rem; color: $mid-gray; text-transform: uppercase; margin-bottom: 8px; @include breakpoint(medium) { margin-bottom: 10px; } } &__mail { margin-bottom: 4px; a { font-family: $font-primary; font-size: 0.875rem; line-height: 1.125rem; text-decoration: none; &::before { content: ""; display: inline-block; width: 16px; height: 16px; background-image: url("/assets/icons/mail.svg"); // Dostosuj ścieżkę i nazwę ikony background-repeat: no-repeat; margin-right: 8px; position: relative; top: 2px; } } } &__form { font-family: $font-primary; font-size: 10px; font-weight: 700; line-height: 16px; text-align: left; color: $mid-gray; text-transform: uppercase; a { font-family: $font-primary; font-size: 10px; font-weight: 700; line-height: 16px; text-align: left; text-decoration: none; color: $dark-gray; &::after { content: ""; display: inline-block; width: 12px; height: 12px; background-image: url("/assets/icons/arrow-right.svg"); background-repeat: no-repeat; margin-left: 3px; position: relative; top: 1px; } } } } } }