@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;800;900&display=swap);

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fffafa;

}

.fs-70 {
font-size: clamp(1.75rem, 1.5278rem + 1.1111vw, 2.5rem);    font-weight: bold;
    color: #f5f5f5;
    text-transform: uppercase;

}

.fs-36 {
    font-size: clamp(1.375rem, 1.1157rem + 1.2963vw, 2.25rem);
    font-weight: 700;
    /* color: #f5f5f5; */
    text-transform: uppercase;
}

.fs-24 {
    font-size: clamp(1rem, 0.8519rem + 0.7407vw, 1.5rem);
    font-weight: 500;
    color: #f5f5f5;
    /* text-transform: uppercase; */
}
.fs-18{
    font-size: clamp(1rem, 0.963rem + 0.1852vw, 1.125rem);
    text-align: center;
    color: black;
}

.primary-btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(to right, #659599, #3A5661);
    color: rgb(249, 244, 244);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    /* border-image: linear-gradient(to right, #2C3E50, #4CA1AF) 1; */
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}




.primary-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


.background-color {
    background: linear-gradient(to right, #2C3E50, #4CA1AF);



    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

}
.gradient-text {
  background: linear-gradient(to right, #659599, #3A5661);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}



/* navbar */


.navbar-brand {
    font-size: clamp(1.25rem, 0.287rem + 4.8148vw, 4.5rem);
    font-weight: bold;
    color: #f5f5f5;
    text-transform: uppercase;
}

.logo {
    height: 80px;
    width: 80px;
}

.nav-link {
    color: rgb(0, 0, 0) !important;
}

.nav-link.active {
    display: block;
    color: #4CA1AF !important;
    font-size: 20px !important;
    font-weight: 700;
    border-bottom: 2px solid #2C3E50 !important;
    /* border-image: linear-gradient(to right, #2C3E50, #4CA1AF) 1; */
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    /* text-transform: uppercase; */
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    scale: 1.1;
}




























/* footer */
footer {
    height: 450px;
    width: 100%;
    background-color: #3A5661;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;

}

footer .row {
    margin: 0px;
    padding: 0px;
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footerlogo {
    height: 100px;
    width: 100px;
    margin-left: 10px;
    margin-top: 10px;
}

.footerlogo img {
    height: 100px;
    width: 100px;
}


footer .col p {
    color: white;

}

footer .col ul {
    list-style: none;
    text-decoration: none !important;

}

footer .col ul li {
    margin: 10px;
}

footer .col ul li a {
    text-decoration: none !important;
    color: white !important;
}








/* media */
@media screen and (max-width:1245px) {
     footer {
        height: auto;
    }
    
}


@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
}

@media screen and (max-width: 768px) {
   

    .logo {
        height: 60px;
        width: 60px;
    }
    .primary-btn {
        padding: 5px 10px;
    }
}


