:root {
    --color-c1_1: #ffbc00;
    --color-c1_2: #ff0058;
    --color-c2_1: #03a9f4;
    --color-c2_2: #ff0058;
    --color-c3_1: #4dff03;
    --color-c3_2: #00d0ff;
}

.ss-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 0;
}

.ss-container .ss-container__box {
    position: relative;
    width: 320px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 30px;
    transition: 0.5s;
}

.ss-container .ss-container__box::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 50px;
    width: 50%;
    height: 100%;
    text-decoration: none;
    background: #fff;
    border-radius: 8px;
    transform: skewX(15deg);
    transition: 0.5s;
}

.ss-container .ss-container__box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 50%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    transform: skewX(15deg);
    transition: 0.5s;
    filter: blur(30px);
}

.ss-container .ss-container__box:hover:before,
.ss-container .ss-container__box:hover:after {
    transform: skewX(0deg);
    left: 20px;
    width: calc(100% - 90px);

}

.ss-container .ss-container__box:nth-child(1):before,
.ss-container .ss-container__box:nth-child(1):after {
    background: linear-gradient(315deg, var(--color-c1_1), var(--color-c1_2))
}

.ss-container .ss-container__box:nth-child(2):before,
.ss-container .ss-container__box:nth-child(2):after {
    background: linear-gradient(315deg, var(--color-c2_1), var(--color-c2_2))
}

.ss-container .ss-container__box:nth-child(3):before,
.ss-container .ss-container__box:nth-child(3):after {
    background: linear-gradient(315deg, var(--color-c3_1), var(--color-c3_2))
}

.ss-container .ss-container__box span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
}

.ss-container .ss-container__box span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: 0.1s;
    animation: animate 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08)
}

.ss-container .ss-container__box:hover span::before {
    top: -50px;
    left: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
}

.ss-container .ss-container__box span::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: 0.5s;
    animation: animate 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    animation-delay: -1s;
}

.ss-container .ss-container__box:hover span:after {
    bottom: -50px;
    right: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
}

@keyframes animate {
    0%, 100% {
        transform: translateY(10px);
    }

    50% {
        transform: translate(-10px);
    }
}

.ss-container .ss-container__box .ss-container__box__content {
    position: relative;
    left: 0;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1;
    color: #fff;
}

.ss-container .ss-container__box:hover .ss-container__box__content {
    left: -25px;
    padding: 60px 40px;
}

.ss-container .ss-container__box .ss-container__box__content h2 {
    font-size: 2em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.ss-container .ss-container__box .ss-container__box__content p {
    font-size: 1em;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.2em;
}

.ss-container .ss-container__box .ss-container__box__content a {
    display: inline-block;
    font-size: 1.1em;
    color: #111;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 5px;
}

.ss-container .ss-container__box .ss-container__box__content a:hover {
    background: #ffcf4d;
    border: 1px solid rgba(255, 0, 88, 0.4);
    box-shadow: 0 1px 15px rgba(1, 1, 1, 0.2);
}

.site-sections__header {
    margin-top: 30px;
    line-height: 1.1em;
    font-weight: bold;
    width: 100%;
    font-weight: normal;
    text-align: center;
    font-size: 40px;
    font-family: "Titan One", serif;
    color: white;
}


.questions-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.questions {
    position: relative;
    max-width: 1150px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.questions .questions-section__card {
    position: relative;
    width: 300px;
    height: 420px;
    display: flex;
    background: white;
    align-self: center;
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}

.questions .questions-section__card .circle {
    position: relative;
    width: 100%;
    height: 100%;
    background: black;
    clip-path: circle(200px at center 0);
    text-align: center;
}


.questions .questions-section__card .circle h2 {
    color: white;
    font-size: 4.5em;
    padding: 30px 0;
}

.questions .questions-section__card .content {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 10px;
    text-align: center;
}

.questions .questions-section__card .content p {
    color: gray;
    width: 100%;
    text-align: center;
}


.questions:hover .questions-section__card {
    filter: blur(10px);
    transform: scale(0.9);
    opacity: 0.5;
}

.questions:hover .questions-section__card:hover {
    filter: blur(0px);
    transform: scale(1);
    opacity: 1;
}

.questions .questions-section__card:nth-child(1) .circle {
    background: red;
}

.questions .questions-section__card:nth-child(2) .circle {
    background: orange;
}

.questions .questions-section__card:nth-child(3) .circle {
    background: green;
}

.snake-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.snake {
    max-width: 1100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.snake .snake-section__card {
    overflow: hidden;
    position: relative;
    width: 300px;
    height: 420px;
    background: #342d6b;
    justify-content: center;
    align-items: center;
    margin: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}


.snake .snake-section__card::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    width: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.snake .snake-section__card .content {
    padding: 30px;
    text-align: center;
}

.snake .snake-section__card .content h2 {
    position: absolute;
    right: 30px;
    top: 100px;
    font-size: 4em;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.2);
    z-index: 1;
    transition: 0.5s;
}

.snake .snake-section__card:hover .content h2 {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-70px);
}

.snake .snake-section__card .content p {
    position: absolute;
    top: 200px;
    color: white;
    font-weight: bold;
}

.snake .snake-section__card .content h1 {
    position: absolute;
    top: 150px;
    text-align: center;
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

.snake .snake-section__card span {
    transition: 0.3s;
}

.snake:hover .snake-section__card {
    transition: 0.5s;
    opacity: 0.6;
    filter: blur(10px);
}

.snake:hover .snake-section__card:hover {
    opacity: 1;
    filter: blur(0px);
}

.snake .snake-section__card:hover span:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #1779ff);
    animation: animate1 2s linear infinite;
}

@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.snake .snake-section__card:hover span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, transparent, #1779ff);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}


.snake .snake-section__card:hover span:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, transparent, #1779ff);
    animation: animate3 2s linear infinite;
}

@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


.snake .snake-section__card:hover span:nth-child(4) {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, transparent, #1779ff);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

