@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');


:root {
    --whiteColor: #FFFFFF; 
    --darkColor: #2C3E50;
    --darkTextColor: #051E50;
    --darkLightColor: #2C3350B2;
    --darkenColor:#253647;
    --neutralLightColor: #F2F2F2;
    --primaryColor: #F7941D;
    --primaryDarkenColor: #D87703;
    --lightenPrimaryColor: #F7941D99;
    --charcoalColor: #4A4A4A;
    --charcoalLightenColor: #4A4A4AB2;
    --lightColor: #CDE6F4;
    --lightDarkenColor: #A4D3EE;
    --accentColor: #084E86;
    --lightenAccentColor: #084E8699;
    --neutralMutedColor: #C5C5C5;
}
.borderPrimary{
    border-color: var(--primaryColor);
}
.borderRadius28{
    border-radius: 28px;
}

.borderRadius16{
    border-radius: 16px !important;
}
.navbar{
    --bs-navbar-padding-y: 0rem !important;
}
p,h2{
    cursor:default;
}
.coverImg{
    height: 500px;
    object-fit: cover;
}
.pointer {
    cursor: pointer;
}
.defaultCursor {
    cursor: default;
}

input.form-control:focus {
outline: none;  /* Removes the default outline */
border-color: none;  /* Custom green border on focus */
box-shadow: none;  /* Green glow around the input */
}
@media (max-width: 991px) {
    .w-sm-100{
        width: 100% !important;
    }
    .w-sm-50{
        width: 50% !important;
    }
    .grid-container-sm{
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .w-md-50{
        width: 50% !important;
    }
}

@media (min-width:1200px) {
    .w-lg-25{
        width:25% !important;
    }
    .w-lg-50{
        width: 50% !important;
    }
    .w-lg-75{
        width: 75% !important;
    }
    .w-lg-40 {
        width: 40% !important;
    }
}


