@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PT Serif", serif;
}

#for-bg {
    background-image: url(../assets/banner1.jpg?);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.legal-pages {
    background-color: white;
}

.logo {
    max-width: 300px;
}

.skyblue {
    color: #8a1515;
}

a {
    text-decoration: none;
}

.text {
    background: -webkit-linear-gradient(#8a1515, #e9fffe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-custom {
    background-color: #8a1515;
    border: 1px solid white;
    transition: all 0.5s ease;
}

.btn-custom:hover {
    background-color: black;
}

@media only screen and (max-width:767px) {
    .logo {
        max-width: 60px;
    }
    .section {
        padding-top: 70px;
    }
}