* {
    margin: 0;
    padding: 0;
    user-select: none;
    font-family: Inter, sans-serif;
    font-weight: 700;
    color: white;
    text-decoration: none;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    background: #272934;
}
body::-webkit-scrollbar {
    display: none;
}
.header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
}
.header .left {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    margin-right: auto;
    margin-left: 3.5%;
}
.header .left:hover {
    transform: scale(1.05);
}
.logo {
    width: 50px;
    border-radius: 12px;
}
.left p {
    margin-left: 10px;
}
.right {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: 2.5%;
}
.right a p {
    margin-left: 20px;
    color: rgb(161, 161, 161);
    transition: 0.3s;
    font-size: 18px;
}
.right a p:hover {
    color: rgb(160, 17, 255);
    filter: drop-shadow(0px 0px 4px rgb(160, 17, 255));
    border-bottom: 1px solid rgb(160, 17, 255);
    transform: scale(1.03);
    transition: 0.6s;
}
.main-sector {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}
.info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.left-img {
    height: 170px;
    width: 700px;
    border-radius: 5px;
    border: 4px white solid;
    background-color: #1d222b;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    margin-top: 20px;
    transition: 0.3s;
}

.about-text {
    max-width: 1000px;
    margin-top: 30px;
    font-size: 40px;;
}

.about-text h1 {
    color: rgb(160, 17, 255);
    filter: drop-shadow(0px 0px 4px rgba(160, 17, 255, 10.5));
}
.about-text p {
    color: grey;
}

.about-text-small {
    max-width: 1000px;
    margin-top: -4px;
    font-size: 15px;
}
.about-text-small h1 {
    color: rgb(255, 255, 255);
}

.about-text-verysmall {
    max-width: 1000px;
    margin-top: 30px;
    font-size: 7px;
}
.about-text-verysmall h1 {
    color: #8992af;
}
.purple-span {
    color: rgb(160, 17, 255);
}
.red-span {
    color: rgb(255, 0, 0);
}


.down {
    margin-top: -116px;
    text-align: center;
    font-size: 16px;
    background: #1d222b !important;
    padding: 60px 50px !important;
    background-image: url("../assets/wavy-dark-by-nouridio.svg") !important;
    background-position: bottom !important;
    background-size: 200% !important;
    background-repeat: no-repeat !important;
}
@keyframes down {
    0% {
        margin-top: 50px;
    }
    50% {
        margin-top: 70px;
    }
    100% {
        margin-top: 50px;
    }
}
@media only screen and (max-width: 850px) {
    .about-text {
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }
    .left-img {
        margin-left: auto;
        margin-right: auto;
    }
}

.button {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(425px, 100%), 1fr));
    text-align: center;
    max-width: 190px;
    font-size: 40px;
}

.btn {
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

.started-btn {
    border: 2px solid #813ecc !important;
    font-size: 25px !important;
    padding: 8px;
    margin-top: 100px;
    transition: 0.3s ease-in;
}
.started-btn:hover {
    background: #813ecc !important;
    transition: 0.45s;
}



.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    object-fit: cover;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
    width: 100%;
    height: 100%;
}

.mySlides {
    display: none;
}

.slider img{
    overflow: hidden;
    object-fit: cover;
    width: 100%;
    height: 100%;
    background-color: #813ecc;
}

#more-btn {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: 10.5%;
    margin-left: 15px;
    color: rgb(161, 161, 161);
    transition: 0.3s;
    font-size: 18px;
}
#more-btn:hover {
    color: rgb(160, 17, 255);
    filter: drop-shadow(0px 0px 4px rgb(160, 17, 255));
    border-bottom: 1px solid rgb(160, 17, 255);
    transform: scale(1.03);
    transition: 0.6s;
}
#more-list{
    transform-origin: top center;
    transform: scaleY(0);
    position: absolute;
    background-color: #1d222b;
    padding: 10px;
    width: 103px;
    border-radius: 0 1vh 1vh 1vh;
    z-index: 2;
    cursor: auto;
    transition: 0.3s ease-in;

}

.more-list-item{
    color: white;
    text-decoration: none;
    width: 150%;
    display: block;
    padding: 6%;
}

.more-list-item:hover{
    color: rgb(160, 17, 255);
    filter: drop-shadow(0px 0px 4px rgb(160, 17, 255));
}

#more-list hr{
    margin: 2% auto;
    width: 96%;
}

#more-btn:hover #more-list{
    transform: scaleY(1);
    transition: 0.3s ease-out;
}

.review {
    max-width: 1000px;
    font-size: 60px;
    margin-top: 30px;
    color: rgb(160, 17, 255);
}

.review-small {
    max-width: 1000px;
    margin-top: 80px;
    font-size: 27px;
    color: rgb(161, 161, 161);
}



