.splice-4 {
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

.my-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(2, 33, 51, 0.272);
}

.my-info-card-text h2 {
    color: rgb(2, 33, 51);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    font-family: "Gotham Pro" sans-serif;
    text-align: left;
}

.my-info-card-text span {
    color: rgb(39, 127, 178);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-transform: uppercase;
    font-family: "Gotham Pro" sans-serif;
}

.my-audio-item {
    display: flex;
    align-items: center;
    gap: 30px;
}

.my-audio-item-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.my-audio-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.my-audio-item .controls {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.my-audio-item button {
    background: none;
    border: none;
    cursor: pointer;
}

.my-audio-item .progress-bar,
.my-audio-item .progress-container {
    width: 100%;
}

.my-audio-item .volume-bar {
    width: 110px;
}

.my-audio-item .controls .play-pause img.paused {
    display: none;
}

.my-audio-item.active .controls .play-pause img.paused {
    display: block;
}

.my-audio-item.active .controls .play-pause img.played {
    display: none;
}

.my-audio-item .prev,
.my-audio-item .next,
.my-audio-item .progress-container,
.my-audio-item .volume-container,
.my-audio-item .current-time-display {
    display: none;
}

.my-audio-item .controls {
    width: max-content;
}

.my-audio-item .info {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.my-audio-item .info small {
    margin-left: auto;
    color: rgb(39, 127, 178);
    font-family: "Gotham Pro" sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.my-audio-item .info .info-eye {
    display: flex;
    align-items: center;
    gap: 8px;

    color: rgb(2, 33, 51);
    font-family: "Gotham Pro" sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.my-audio-item.active .controls .prev,
.my-audio-item.active .controls .next,
.my-audio-item.active .controls .progress-container,
.my-audio-item.active .controls .volume-container,
.my-audio-item.active .controls .current-time-display {
    display: flex;
}

.my-audio-item.active .info {
    width: max-content;
}

.my-audio-item.active .info small,
.my-audio-item.active .info .info-eye {
    display: none;
}

.my-audio-item.active .controls {
    width: 100%;
}

.my-audio-item.active .current-time-display {
    width: 100px;
    font-size: 14px;
    flex-shrink: 0;
}

.my-audio-item .info h3 {
    color: rgb(2, 33, 51);
    font-family: "Gotham Pro" sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    transition: 0.3s ease;
}

.my-audio-item:hover .info h3,
.my-audio-item.active .info h3 {
    color: #277fb2;
}

.library {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 80px;
}
.library-card {
    width: calc(50% - 10px);
    border-radius: 10px;
    box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.library-card-top {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px;
}

.library-card-image {
    width: 180px;
    height: 230px;
    min-width: 180px;
    min-height: 230px;
    background-color: #000;
    border-radius: 22px;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    overflow: hidden;
}
.library-card-image img {
    max-width: 180px;
    max-height: 230px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}
.library-card-info h2 {
    color: rgb(2, 33, 51);
    font-size: 32px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 10px;
}

.library-card-info p {
    color: rgb(2, 33, 51);
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
}

.library-card-bottom {
    display: flex;
    align-items: center;
    position: relative;
}
.library-card-bottom::after{
    position: absolute;
    content: "";
    width: 1px;
    height: 70%;
    background-color: #022133;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.library-card-bottom a {
    padding: 28px 0;
    width: 50%;
    color: rgb(2, 33, 51);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    text-align: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.library-card-bottom a:hover{
    background-color: #022133;
    color: #fff;
}
@media (max-width: 1150px) {
    .my-info-wrapper {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0 12px;
        gap: 20px;
    }

    .my-audio-item {
        padding: 20px;
        border: 1px solid #022133;
        flex-direction: column;
        width: calc(50% - 10px);
    }

    .my-audio-item .controls {
        flex-wrap: wrap;
        justify-content: center;
    }

    .my-audio-item .controls .progress-container,
    .my-audio-item .info,
    .my-audio-item.active .info {
        width: 100%;
    }

    .my-audio-item .info {
        flex-wrap: wrap;
    }

    .my-audio-item .info h3 {
        width: 100%;
    }

    .my-audio-item .info small {
        margin-left: 0;
        margin-right: auto;
    }

    .my-audio-item-image {
        width: 100%;
        height: auto;
        max-height: 250px;
        overflow: hidden;
    }
}

@media (max-width: 700px) {
    .my-audio-item {
        padding: 14px;
        border: 1px solid #022133;
        flex-direction: column;
        width: 100%;
    }
}

.my-contact ul li a {
    display: block;
    padding: 30px 0;
    font-family: "Gotham Pro" sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    border-bottom: 1px solid rgba(2, 33, 51, 0.272);
}

.my-contact ul li:last-child a {
    border-bottom: none;
}

.my-contact ul li a b {
    text-transform: uppercase;
    color: #277fb2;
    margin-right: 10px;
    font-weight: 400;
}

.my-contact ul {
    margin-bottom: 40px;
}

.my-content-map,
.my-content-map iframe,
.my-content-map div {
    width: 100%;
    height: 500px;
}

@media (max-width: 1000px) {
    .my-contact ul {
        padding: 0 20px;
    }

    .my-contact ul li a {
        padding: 20px 0;
    }
}

@media (max-width: 500px) {
    .my-contact ul li a,
    .my-contact ul li a b {
        display: block;
        text-align: center;
    }

    .my-content-map,
    .my-content-map iframe,
    .my-content-map div {
        height: 400px;
    }

    .library-card{
        width: 100%;
    }
}
