@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

body {
    font-family: 'Raleway', sans-serif;
}

h1 {
    font-size: 50px;
    color: #2F247B;
    font-weight: 700;
}

p {
    font-size: 20px;
    font-weight: 400;
    color:#2F247B;
}

a.btn {
    display: inline-block;
    background: #587BE1;
    border-radius: 4px;
    width: 180px;
    line-height: 50px;
    padding: 0;
    color: white;
    font-size: 20px;
    font-weight: 400;
    margin-left: 20px;
    margin-right: 20px;
}

a.btn:hover {
    color: white;
    background-color: #2F247B;
}

.head {
    background: #EFF5FF;
    height: 75vh;
}

.head .block {
    height: 75vh;
}

.footer a {
    font-size: 16px;
    line-height: 40px;
    color: #646464;
    display: inline-block;
}
.footer a:hover {
    color:#2F247B;
}

.footer li {
    padding: 0;
}

/* Responsive */
@media screen and (max-width: 1000px) {
    footer li a {
        line-height: 32px;
    }

    footer ul {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    a.btn {
        width: 140px;
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media screen and (max-width: 500px) {
    p {
        font-size: 18px;
    }
}

@media screen and (max-width: 400px) {
    h1 {
        font-size: 36px;
    }
    p {
        font-size: 15px;
    }
    .head,
    .head .block {
        height: 60vh;
    }
    a.btn {
        font-size: 18px;
        line-height: 40px;
    }
}
