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

.first-div {
    margin-top: 50px;
}


.a {
    width: 700px;
    /* height: 100%; */
}

.div-class{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

#accordion .panel {
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0 0 10px;
    overflow: hidden;
    position: relative;
}

#accordion .panel-heading {
    padding: 0;
    border: none;
    border-radius: 0;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
}

#accordion .panel-heading:before,
#accordion .panel-heading:after {
    content: "";
    width: 50%;
    height: 20%;
    box-shadow: 0 15px 5px rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 15px;
    left: 10px;
    transform: rotate(-3deg);
    z-index: -1;
}

#accordion .panel-heading:after {
    left: auto;
    right: 10px;
    transform: rotate(3deg);
}

#accordion .panel-title a {
    display: block;
    padding: 15px 70px 15px 70px;
    margin: 0;
    background: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f39f5f;
    border-radius: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    position: relative;
}

#accordion .panel-title a:before,
#accordion .panel-title a.collapsed:before {
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 55px;
    height: 100%;
    text-align: center;
    line-height: 50px;
    border-left: 2px solid #f39f5f;
    position: absolute;
    top: 0;
    right: 0;
}

#accordion .panel-title a.collapsed:before {
    content: "\f107";
}

#accordion .panel-title a .icon {
    display: inline-block;
    width: 55px;
    height: 100%;
    border-right: 2px solid #f39f5f;
    font-size: 20px;
    color: #d11149;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

#accordion .panel-body {
    padding: 10px 20px;
    margin: 0 0 20px;
    border-bottom: 3px solid #d11149;
    border-top: none;
    background: #fff;
    font-size: 15px;
    /* color: #333; */
    line-height: 27px;
}

#accordion .panel-body p {
    color: #235e7e;
    font-weight: 900;
    font-family: 'Josefin Sans', sans-serif;
    transition: .5s;
}

#accordion .panel-body p:hover {
    color: #d11149;
    text-decoration: underline;
    cursor: pointer;
}

.shoes-box {
    text-align: center;
    transition: .5s;
    margin-top: 40px;
}

.shoes-box:hover {
    /* background: radial-gradient(white, #fddee7); */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.418);
    border-radius: 50px;
    padding: 15x 15px 15px;
}
.shoes-box a img{
    width: 250px;
    height: 250px;
}

.button {
    font-size: 1em;
    padding: 10px;
    color: #fff;
    border: 2px solid #06D85F;
    border-radius: 20px/50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.button:hover {
    background: #06D85F;
}

.box {
    z-index: 60;
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 35%;
    position: relative;
    transition: all 5s ease-in-out;
}

.popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
}

.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.popup .close:hover {
    color: #06D85F;
}

.popup .content {
    max-height: 30%;
    overflow: auto;
}

@media screen and (max-width: 700px) {
    .box {
        width: 70%;
    }

    .popup {
        width: 70%;
    }
}

.img{
    width: 700px;
}

