.btn {
    /* width: 175px; */
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    line-height: 22px;
    height: 46px;
    display: inline-flex;
    padding: 12px 24px 12px 24px;
    gap: 8px;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
}
.btn:hover {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}
.btn-primary {
    background-color: #2671FF;
    color: #FFFFFF;
    transition: all 0.3s ease-in-out;
}
.btn-secondary {
    background-color: #FFFFFF;
    color: #333333;
    box-shadow: 0px 4px 15px 0px #2671FF29;
    transition: all 0.3s ease-in-out;
}
.btn-tertiary {
    background-color: #FFFFFF;
    color: #333333;
    box-shadow: 4px 4px 20px 0px #FF8F2529, -4px -4px 20px 0px #1F2C9C29;
    transition: all 0.3s ease-in-out;
}
.btn-outline-white {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.btn-outline-black {
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
}
.only-icon {
    width: 46px;
    height: 46px;
    padding: 0;
    align-items: center;
    justify-content: center;
}
.only-icon span {
    display: block;
    width: 13px;
    height: 13px;
    line-height: 13px;
}
.btn.brands-carousel-btn {
    display: flex;
    align-items: center;
    flex-direction: row;
}
.btn.brands-carousel-btn {
    padding: 12px 16px 12px 16px;
    gap: 0;
}
.btn.brands-carousel-btn:hover {
    gap: 8px;
}
.btn.brands-carousel-btn p {
    width: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.btn.brands-carousel-btn span {
    display: block;
    width: 13px;
    height: 13px;
}
.btn.brands-carousel-btn span svg {
    display: block;
    width: 100%;
    height: auto;
}
.btn.brands-carousel-btn:hover {
    padding: 12px 24px 12px 24px;
}
.btn.brands-carousel-btn:hover p {
    width: auto;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    transition: all 0.3s ease-in-out;
}

.link {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #1D2224;
}
.link.play {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
@media (max-width: 1080px) {
    .btn.brands-carousel-btn {
        gap: 8px;
        padding: 12px 24px 12px 24px;
    }
    .btn.brands-carousel-btn p {
        width: auto;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transition: all 0.3s ease-in-out;
    }
}
