.nav-link:hover {
    transform: scale(1.1);
    transition: transform 0.1s linear;
}



.window {
    position: fixed;
    right: -95px;
    width: 110px;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 3;
    transition: right 0.3s ease;
}

.window:hover {
    right: 0;
}

.window > ul {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.window > ul > li {
    position: relative;
    width: 100%;
    height: 110px;
    display: flex;
    background-color: #a61b29;
    border-radius: 22px 0 0 22px;
    margin: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    box-shadow: -1px 0 3px 0 rgba(48, 48, 48, .2);
    transition: transform 0.1s linear;
}

.window > ul > li:hover {
    transform: scale(1.1);
}

.window > ul > li > button {
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: #00000000;
    border: none;
}

.window > ul > li > button > img {
    padding: 5px;
    width: 65%;
}

.window > ul > li > button > span {
    padding: 5px;
    font-size: medium;
    color: white;
}

main {
    position: relative;
    top: 80px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.float {
    position: fixed;
    display: flex;
    left: calc(50vw - 18vw);
    top: calc(50vh - 12vw);
    width: 36vw;
    height: 24vw;
    background-color: white;
    box-shadow: 0 0 20px 0 #434343d1;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.float > .content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.float > .content > .exit {
    position: absolute;
    right: 0;
    top: 0;
    width: 28px;
    height: 28px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.float > .content > .exit > img {
    width: 100%;
    height: 100%;
}

.float > .content > .img {
    position: relative;
    padding: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.float > .content > .img > img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.float > .content > .img > .big {
    position: relative;
    width: 100%;
    height: 50%;
    display: flex;
    font-size: 3.4vw;
    color: white;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    align-items: center;
    line-height: 1.5;
    letter-spacing: 2px;
    justify-content: center;
}

.float > .content > .img > .small {
    position: relative;
    width: 100%;
    height: 15%;
    display: flex;
    font-size: 1.4vw;
    color: white;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    letter-spacing: 2px;
}

.float > .content > .img > .btn {
    position: relative;
    width: 100%;
    height: 35%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.float > .content > .img > .btn > .success {
    background-color: white;
    color: #1f2940;
}

.float > .content > .img > .btn > button {
    position: relative;
    width: 45%;
    height: 2.5vw;
    border: solid 1px rgb(255, 255, 255);
    background: #00000000;
    color: white;
    border-radius: 0.5vw;
    font-size: 1.4vw;
    letter-spacing: 2px;
    transition: transform 0.1s linear;
}

.float > .content > .img > .btn > .success:hover {
    transform: scale(1.05);
}