.svg-wrap {
    position: absolute;
    width: 0px;
    height: 0px;
    overflow: hidden;
}

/*--------------------*/
/* Rounded slide */
/*--------------------*/
.color-4 {
    background-color: #566473;
}

.nav-roundslide2 a {
    margin: 0 20px;
    padding: 15px;
    width: 62px;
    height: 62px;
    border-radius: 40px;
    /* background: #34495e67; */
    background: transparent;
}

.nav-roundslide2 a:hover {

    background: #34495e;
}

.swiper-button-prev-scott,
.swiper-button-next-scott {
  color: #fff; /* Example color */
  background-color: rgba(0, 0, 0, 0.5); /* Example background */
  padding: 10px;
  border-radius: 50%;
  /* Further positioning or icon customization */
}

.nav-roundslide a {
    margin: 0 20px;
    padding: 15px;
    width: 62px;
    height: 62px;
    border-radius: 40px;
    background: #34495e;
    -webkit-transition: width 0.3s, background-color 0.3s;
    transition: width 0.3s, background-color 0.3s;
}

.nav-roundslide .icon-wrap {
    position: absolute;
    width: 32px;
}

.nav-roundslide a.prev .icon-wrap {
    left: 15px;
}

.nav-roundslide a.next .icon-wrap {
    right: 15px;
}

.nav-roundslide svg.icon {
    fill: #566473;
}

.nav-roundslide h3 {
    position: absolute;
    top: 0;
    margin: 0;
    color: #566473;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 0.85em;
    line-height: 4.45;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
}

.nav-roundslide a.prev h3 {
    right: 20px;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.nav-roundslide a.next h3 {
    left: 20px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.nav-roundslide a:hover {
    width: 200px;
    background: #fff;
}

.nav-roundslide a:hover h3 {
    opacity: 1;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}