main > section {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: #f1f1f1;

    box-shadow:0 5px 5px #a3a3a3;
}


.game-title {
    font-size: 20pt;
}

.intro-section {
    height: 100vh;
    background: linear-gradient(180deg, rgba(56, 188, 204, .5) 0%, rgba(51, 206, 198, .5) 9%, rgba(86, 221, 181, .5) 18%, rgba(136, 234, 157, .5) 27%, rgba(190, 244, 132, .5) 36%, rgba(190, 244, 132, .5) 52%, rgba(136, 234, 157, .5) 60%, rgba(86, 221, 181, .5) 75%, rgba(51, 206, 198, .5) 85%, rgba(56, 188, 204, .5) 100%);
}


.intro-text {
    width: 50%;
    height: 100%;
    position: relative;
}

#intro-text-1 {
    position: absolute;
    top: 35%;
    left: 10%;
}

#intro-text-2 {
    position: absolute;
    top: 65%;
    left: 5%;

}

.intro-images {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.intro-images img{
    height: 100%;
    width: auto;
}

.swiper {
    width: 75%;
}

.games-section {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;

    box-shadow: none;
}

.game-card {
    border-radius: 20px;
    background-color: #38BCCC;
    position: relative;

    margin: 20px 0;
    box-shadow:0 5px 5px #a3a3a3;
}

.game-card::before {
    content: "";
    position: absolute;
    height: 65%;
    width: 100%;
    background-color: #8bd7e0;
    border-radius: 20px 20px 0 0;
}

.game-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
}

.game-card-image {
    height: 35vh;
    width: 45vw;
    border-radius: 30px;
    padding: 3px;
    background-color: rgba(56, 188, 204, .5);
}

.game-card-image img {
    height: 100%;
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    border: 3px solid #fff;
    cursor: pointer;
}

.game-card-text {
    margin: 5px;
    display: flex;
    justify-content: space-between;
    width: 40vw;
    padding-top: 10px;
}

.game-more-info{
    cursor: pointer;
    transition: all 0.3s;
}

.game-more-info:hover{
    transform: scale(125%);
}

.presentation-section {
    height: 50vh;
    display: flex;
    align-items: center;
    background-color: rgba(190, 244, 132, .5);
}

.presentation-text {
    width: 50%;
    padding-left: 30px;

}

.presentation-title {
}

.presentation-description {

}

.presentation-image {
    width: 50%;
    display: flex;
    justify-content: end;

}

.presentation-image img {
    height: 50vh;
    width: 40vw;
    object-fit: cover;

}


.actus-section {
    height: 50vh;
    display: flex;
    align-items: center;
    background-color: rgba(136, 234, 157, .5);

}

.actus-image {
    width: 50%;
}

.actus-image img {
    height: 50vh;
    width: 40vw;
    object-fit: cover;
}

.actus-text {
    width: 50%;
}

.actus-title {
}

.actus-description {

}


.stats-section {
    height: 50vh;
    display: flex;
    align-items: center;
    background-color: rgba(86, 221, 181, .5);
}

.stats-image {
    width: 50%;
    display: flex;
    justify-content: end;
}

.stats-image img {
    height: 50vh;
    width: 40vw;
    object-fit: cover;
}

.stats-text {
    width: 50%;
    padding-left: 30px;
}

.stats-title {
}

.stats-description {

}

.map-section {
    height: 50vh;
    display: flex;
    align-items: center;
    background-color: rgba(51, 206, 198, .5);
}

.map-map {
    width: 50%;
    height: 100%;
}

.map-text {
    width: 50%;
}

iframe{
    width: 80%;
    height: 100%;
}