@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
*{
    font-family: 'Roboto', sans-serif;
}

body{
    background: #f1fbff;
}


.section-padding{
    padding: 100px 0;
}

.carousel-item{
    height: 90vh;
    min-height: 300px;
    width: 100%;
}

.carousel-caption{
    bottom: 220px;
    z-index: 2;
}

.carousel-caption h5{
    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 25px;
}

.carousel-caption p{
    width: 60%;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
}

.carousel-inner::before{
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.navbar-nav a{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar-dark .navbar-brand{
    color: #000;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    width: 100%;
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover{
    color: #000;
}

.navbar-dark .navbar-nav .navbar-link{
    color: rgb(255, 247, 247);
}

.w-100{
    height: 100vh;
}

.project .card{
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
}

@media only screen and (min-width: 768px) and (max-width: 991px){
    .carousel-caption{
        bottom: 370px;
    }
    .carousel-caption p{
        width: 100%;
    }

}

@media only screen and (max-width: 767px) {
    .navbar-nav{
        text-align:center;
    }
    .carousel-caption{
        bottom: 125px;
    }
    .carousel-caption h5{
        font-size: 17px;
    }
    .carousel-caption a{
        padding: 10px 15px;
    }
    .carousel-caption p{
        width: 100%;
        line-height: 1.6;
        font-size: 12px;
    }

    .carousel-item{
        height: 80vh;
    }

    #image{
        height: 700px;
    }
}

@media only screen and (max-width: 550px) {
    iframe{
        width: 400px;
    }

    .carousel-item{
        height: 60vh;
    }
    #image{
        height: 500px;
    }

    
}


@media only screen and (max-width: 400px) {
    iframe{
        width: 300px;
        min-height: 300px;
    }

    .carousel-item{
        height: 40vh;
        min-height: 300px;
    }

    #image{
        height: 300px;
    }

    .logo-image{
        height: 20px;
    }

}