.left-side {
    width: 60%;
    height: 100%;

    background-color: #1E242E;
    position: relative;
    overflow: hidden;
}

.left-side .top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    overflow: hidden;
    display: flex;
    padding: .3rem;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: 8s 26s full ease-in forwards;
}

@keyframes full {
    0% {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        overflow: hidden;
        display: flex;
        padding: .3rem;
        align-items: center;
        gap: 10px;
        z-index: 2;
    }

    25% {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        overflow: hidden;
        display: flex;
        padding: .3rem;
        align-items: center;
        gap: 10px;
        z-index: 2;
        opacity: 0;
    }

    60% {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
        padding: 5rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        z-index: 2;
        opacity: 0;
        color: #fff;
    }

    100% {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
        padding: 5rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        z-index: 2;
        opacity: 1;
        color: #fff;
    }
}

.left-side .top img {
    height: 100%;
}

.left-side .top h1 {
    font-size: 22px;
}

.left-side .carousel {
    width: 400%;
    height: 100%;
    background-color: #1E242E;
    display: flex;
}

.left-side .carousel .card {
    display: flex;
    width: 80%;
    height: 100%;
    animation: 40s slide ease-in-out forwards;
}

.left-side .carousel .card1 {
    background-color: #2D3643;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 3rem;
}

.left-side .carousel .card1 .text-card {
    z-index: 2;
    width: 100%;
    height: 80%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    backdrop-filter: blur(5px);
    border-radius: 5px;
}

.left-side .carousel .card .text-card h2 {
    font-size: 40px;
}

.left-side .carousel .card .text-card p {
    font-size: 18px;
}

.left-side .carousel .card1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 130%;
}

.left-side .carousel .card2 {
    background-color: #1a57ac;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 3rem;
}

.left-side .carousel .card2 .text-card {
    z-index: 2;
    width: 100%;
    height: 80%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    backdrop-filter: blur(5px);
    border-radius: 5px;
}

.left-side .carousel .card2 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 130%;
}

.left-side .carousel .card3 {
    background-color: #062857;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 3rem;
}

.left-side .carousel .card3 .text-card {
    z-index: 2;
    width: 100%;
    height: 80%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    backdrop-filter: blur(5px);
    border-radius: 5px;
}

.left-side .carousel .card3 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 130%;
}

.left-side .carousel .card4 {
    background-color: #1E242E;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 3rem;
}

@keyframes slide {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }

    20% {
        transform: translateX(0%);
    }

    25% {
        transform: translateX(-100%);
    }

    45% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(-200%);
    }

    70% {
        transform: translateX(-200%);
    }

    75% {
        transform: translateX(-300%);
    }

    95% {
        opacity: 1;
        transform: translateX(-300%);
    }

    100% {
        opacity: 1;
        transform: translateX(-300%);
    }
}

.right-side {
    width: 40%;
    height: 100%;
    position: relative;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.right-side .rins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: transparent;
    border: 4px solid #000;
    margin: auto;
}


.right-side .rin1 {
    top: -50%;
    left: -40%;
    right: 0;
    bottom: 0;
    width: 180px;
    height: 180px;
    border: 4px solid #000000;
    animation: scale1 4s 1.5s ease-in-out infinite;
}

@keyframes scale1 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.right-side .rin2 {
    top: -45%;
    left: 60%;
    right: 0;
    bottom: 0;
    width: 120px;
    height: 120px;
    border: 4px solid #C86567;
    animation: scale2 4s 2.5s ease-in-out infinite;
}

@keyframes scale2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.right-side .rin3 {
    top: 55%;
    left: -30%;
    right: 0;
    bottom: 0;
    width: 80px;
    height: 80px;
    border: 4px solid #000000;
    animation: scale2 4s 2.5s ease-in-out infinite;
}

.right-side .rin4 {
    top: 100%;
    left: 50%;
    right: 0;
    bottom: 0;
    width: 180px;
    height: 180px;
    border: 4px solid #C86567;
    animation: scale1 4s 1.5s ease-in-out infinite;
}

.right-side form {
    width: 70%;
    height: max-content;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0px 0px 15px #000;
    text-align: center;
    padding: 5%;

    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.right-side form .form-group {
    text-align: left;
    display: flex;
    flex-direction: column;
    margin-top: .5rem;
}

.right-side form .form-group label {
    font-size: 18px;
}

.right-side form .form-group input {
    width: 100%;
    height: 30px;
    border: none;
    border-radius: 8px;
    border: #000 solid 1px;
    padding: 1rem;
    margin-top: .5rem;
}

.right-side form .form-group input:focus {
    outline: none;
    box-shadow: 0px 0px 8px #000;
}

.right-side form a {
    margin-top: 1.5rem;
    text-decoration: none;
    color: #000;
}

.right-side form input[type="submit"] {
    margin-top: 1.5rem;
    height: 40px;
    background-color: #13991e;
    font-weight: bold;
    border-radius: 5px;
    border: none;
}

.right-side form input[type="submit"]:hover {
    background-color: #0c7715;
    cursor: pointer;
}

.right-side img {
    display: none;
}

@media screen and (max-width: 1000px) {
    .left-side {
        display: none;
    }

    .right-side {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .right-side img {
        display: block;
        width: 180px;
        z-index: 3;
    }

    .right-side form {
        width: 90%;
        height: max-content;
        border-radius: 15px;
        background-color: #ffffff;
        box-shadow: 0px 0px 15px #000;
        text-align: center;
        padding: 8% 5%;

        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 2;
    }
}

@media screen and (max-width: 320px){
    .right-side form{
        transform: scale(.7);
    }

    .right-side img {
        display: block;
        width: 120px;
        z-index: 3;
        margin-bottom: -15%;
    }
}