section#galleryslider{
    padding: 80px 0;
    background: #F1F5FF;
    overflow: hidden;
}

section#galleryslider .galslider a img{
    height: 700px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

section#galleryslider .galslider a{
    position: relative;
    bottom: -10px;
    opacity: 0;
}

section#galleryslider .container h2{
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    margin: 0;
    color: #011A36;
    margin-bottom: 60px;
}

section#galleryslider .container{
    overflow: visible;
}

section#galleryslider .splide__track{
    overflow: visible;
}

section#galleryslider .container .arrows .arrow i {
    color: white;
    font-size: 40px;
}

section#galleryslider .container .arrows .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #0ADCD2;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: 0.2s ease-in-out all;
}

section#galleryslider .container .arrows .arrow:hover{
    background: #039b94;
}

section#galleryslider .container .arrows {
    display: grid;
    gap: 20px;
    grid-template-columns: 80px 80px;
    margin-top: 40px;
}

@media screen and (max-width: 1000px) {
    section#galleryslider .galslider a img{
        height: 500px;
    }
}

@media screen and (max-width: 650px) {
    section#galleryslider .galslider a img{
        height: 400px;
    }
}

@media screen and (max-width: 750px) {
    section#galleryslider .container h2{
        font-size: 36px;
        line-height: 46px;
    }
}