body {
    font-family: 'Nunito', sans-serif;
}
.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
    .snap-container {
        scroll-snap-type: y mandatory;
        height: 100vh;
        height: 100svh;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .snap-child {
        scroll-snap-align: start;
        flex-shrink: 0;
        height: 100vh;
        height: 100svh;
    }

    html, body {
        margin: 0;
        padding: 0;
        height: 100%;
        overflow-y: auto;
    }

    html {
        scroll-behavior: smooth;
    }
    
    .scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: serif;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    }
    
    .circle-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: relative;
    margin-bottom:12px;
    margin-inline: auto;
    animation: pulse 2s infinite;
    }
    
    .circle-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
    }
    
    @keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
    }

    .responsive-img {
        width: 50%!important;
    }

}