@media (max-width: 1440px){
    .container{
        max-width: calc(80%) !important;
    }
}


/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 

    .title-1{
        font-size: 45px;
        line-height: 70px;
    }

    .p-normal {
        font-size: 22px;
    }

    #curve-4 svg{
        transform: translateY(-190px);
    }

}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { 
    .title-1{
        font-size: 55px;
        line-height: 80px;
    }

    .p-normal {
        font-size: 25px;
    }

    #curve-4 svg{
        transform: translateY(-23%);
    }
}

/* NEW CODE */

@media (max-width: 1024px) {

    .container{
        max-width: calc(100% - 100px) !important;
    }

    .bottom-nav{
        display:none;
    }

}

@media (max-width: 767px) {

    .container{
        max-width: calc(100% - 20px) !important;
    }

    .bottom-nav{
        display:none;
    }

}

