@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

img {
    display: block;
}

.banner__container {
    min-width: 728px;
    width: 100%;
    height: 90px;
    background: url(./img/bg.png) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 0 17px;
    overflow: hidden;
    position: relative;
    z-index: 0;
        cursor: pointer;
}

.banner__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner__logo img {
    width: 83px;
    height: auto;
}

.banner__wrap:first-child > img {
    width: 233px;
    height: auto;
    z-index: 2;
}



.button {
    position: relative;
    display: inline-block;
    padding: 9px 20px;
    background-color: #0A9B2A;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    color: white;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    -webkit-animation: btnPulse 1.4s ease-in-out infinite;
    animation: btnPulse 1.4s ease-in-out infinite;
    box-shadow: 0px 4px 50.900001525878906px black;
}


@-webkit-keyframes btnPulse {
    0%   { -webkit-transform: translateZ(0) scale(1);    transform: translateZ(0) scale(1); }
    50%  { -webkit-transform: translateZ(0) scale(1.07); transform: translateZ(0) scale(1.07); }
    100% { -webkit-transform: translateZ(0) scale(1);    transform: translateZ(0) scale(1); }
}
@keyframes btnPulse {
    0%   { -webkit-transform: translateZ(0) scale(1);    transform: translateZ(0) scale(1); }
    50%  { -webkit-transform: translateZ(0) scale(1.07); transform: translateZ(0) scale(1.07); }
    100% { -webkit-transform: translateZ(0) scale(1);    transform: translateZ(0) scale(1); }
}

.button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.38), transparent);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
    -webkit-animation: btnShine 1.8s linear infinite;
    animation: btnShine 1.8s linear infinite;
}

@-webkit-keyframes btnShine {
    0%   { left: -80%; }
    100% { left: 130%; }
}
@keyframes btnShine {
    0%   { left: -80%; }
    100% { left: 130%; }
}


