@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');

*{
    font-family: 'Raleway', sans-serif;
}
body {
    background: f1fbff;
    scrollbar-width: thin;
}
body::-webkit-scrollbar {
    width: 10px;
}
body::-webkit-scrollbar-track {
    background-color: #666;
}
body::-webkit-scrollbar-thumb {
    background-color: #3c3c3c;
    border-radius: 100px;
}
.section-padding {
    padding: 100px 0;
}
.btn:hover {
    box-shadow: 5px 5px 10px rgba(0,0,0,0.25);
}

.navbar-nav a.nav-link {
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
}
.navbar .navbar-brand {
    color: #fff;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: normal2px;
}
.navbar .navbar-brand:focus,
.navbar .navbar-brand:hover {
    color: rgb(183, 183, 183);
}
nav.navbar {
    background-color: transparent !important;
    position: fixed;
    width: 100%;
    z-index: 9;
    transition: all ease-in-out 0.3s;
    padding-block: 15px;
}
nav.navbar.active-clr {
    padding-block: 5px;
    background-color: #3c3c3c !important;
}
.navbar .navbar-nav .nav-link:hover {
    color: #EFC337;
}

.carousel-item {
    height: 100vh;
    min-height: 300px;
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    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;
}
.w-100 {
    height: 100vh;
}
.services .card-body i{
    font-size: 50px;
}
.portfolio .card,
.team .card{
    box-shadow: 5px 5px 20px rgba(0,0,0,0.15);
}
.team .card-body i{
    font-size: 20px;
}
.team img {
    height: 250px;
    margin-bottom: 10px;
}
.team .socials i::before {
    filter: contrast(0.5);
}
.team .socials i:hover::before {
    transform: scale(1.1);
    filter: contrast(1);
}

@media screen and (min-width: 768px) and (max-width: 991px){
    
    .carousel-caption p {
        width: 100%;
    }
    .card {
        margin-bottom: 30px;
    }
    .img-area img {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .navbar-nav {
        text-align: center;
    }
    .carousel-caption h5 {
        font-size: 17px;
    }
    .carousel-caption a {
        padding: 10px 15px;
    }
    .carousel-caption p {
        width: 100%;
        line-height: 1.6;
        font-size: 12px;
    }
    .about-text {
        padding-top: 50px;
    }
    .card {
        margin-bottom: 30px;
    }
}