.state-to-other-state-link-container {
    background: #eff4f6;
    border-radius: 10px;
    padding: 20px;
    margin: 50px 0;
}

.state-to-other-state-link-container .state-to-other-state-link-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 100%;
    color: #010852;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    letter-spacing: -0.4px;
}

.state-to-other-state-link-container .state-to-other-state-link-title img {
    margin-right: 12px;
}

.state-to-other-state-link-container .state-to-other-state-link-content {
    background-color: #fff;
    border-radius: 6px;
    padding: 20px;
    margin-top: 16px;
}

.state-to-other-state-link-container .show-hide-btn{
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #1D9DE7;
    border: none;
    background: transparent;
    margin-left: 9px;
    margin-top: 4px;
    position: relative;
}

.state-to-other-state-link-container .show-hide-btn:hover{
    font-size: 16.5px;
    color: #006AA8;
    transition: all 0.09s;
}

.state-to-other-state-link-container .show-hide-btn:hover::after{
    border-color: #006AA8;
}
.state-to-other-state-link-container .show-hide-btn::after{
    position: absolute;
    content: '';
    top: 32%;
    border: solid #0689D6;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transition: transform 0.3s linear;
    transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translateY(-50%);
    margin-left: 10px;
}
.show-hide-btn.expanded::after{
    transform: rotate(225deg);
    top: 40%;
}
.state-to-other-state-link-container .explore-title{
    display: block;
    color: #333;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 1px;
    margin-bottom: 16px;

}

.state-to-other-state-link-container .state-to-other-state-link-content ul,
.state-to-other-state-link-container .state-to-other-state-link-content ol {
    margin-bottom: 0;
    padding-left: 20px;
}

.state-to-other-state-link-container .state-to-other-state-link-content li {
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 16px;
}

.state-to-other-state-link-container .state-to-other-state-link-content li::marker {
    color: #000;
}

.state-to-other-state-link-container .state-to-other-state-link-content li a {
    font-size: 14px;
    line-height: 22px;
    color: #1D9DE7;
}

.state-to-other-state-link-container .state-to-other-state-link-content li a:hover {
    color: #007BC2;
}

@media (width: 360px){
    .state-to-other-state-link-container{
        padding: 13px;
    }
}

@media (max-width: 375px){
    .state-to-other-state-link-container .state-to-other-state-link-title img {
        margin-right: 4px;
    }
}

@media (min-width: 768px) {
    .state-to-other-state-link-container {
        background: url(/images/icons/Grid-BG.svg), linear-gradient(95.47deg, #F2F8FB 24.23%, #FCFDFD 97.54%);
        padding: 40px;
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .state-to-other-state-link-container .state-to-other-state-link-title{
        font-size: 28px;
    }

    .state-to-other-state-link-container .show-hide-btn{
        font-size: 16px;
    }

    .state-to-other-state-link-container .state-to-other-state-link-content {
        margin-top: 20px;
        padding: 24px;
    }

    .state-to-other-state-link-container .state-to-other-state-link-title img{
        width: 52px;
        height: 52px;
    }

    .state-to-other-state-link-container .state-to-other-state-link-content li a{
        font-size: 16px;
        line-height: 19px;
    }
}