@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");

body {
    font-family: "Inter", sans-serif;
    color: #637381;
}

a {
    color: #3056d3;
}

.navbar {
    background: #3056d3;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar .navbar-brand {
    color: #fff;
}

.navbar-nav .nav-item {
    position: relative;
    padding: 0px 20px;
}

.navbar-nav .nav-item > a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: 25px 8px;
    position: relative;
}

.navbar-nav .nav-item a.nav-link:hover {
    color: #fff;
    opacity: 0.5;
}

.navbar.sticky {
    background-color: rgba(255, 255, 255, 0.8);
}

.navbar.sticky .navbar-nav .nav-item > a {
    color: #3056d3;
}

.navbar.sticky .navbar-nav .nav-item a.nav-link:hover {
    color: #3056d3;
    opacity: 1;
}

.navbar.sticky .navbar-brand {
    color: #3056d3;
}

section {
    padding: 50px;
}

section.container {
    font-size: 16px;
    line-height: 28px;
}

section.home {
    padding-top: 50px;
    background: #3056d3;
}

section.services h3 {
    color: #3056d3;
}

section.application {
    background-color: #f3f4fe;
    padding: 100px 0;
}

section.application .container {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

section.application .container .content {
    padding: 70px;
}

section.application .container .image {
    background-image: url(images/application-bckg.webp);
}

section.contact .phone {
    background: url(images/phone-call.png) no-repeat;
    background-size: 30px 30px;
    background-position: 0px 5px;
    padding: 0 0 30px 54px;
}

section.contact .phone b {
    display: block;
    font-size: 24px;
    color: #3056d3;
}

section.contact .phone div {
    display: inline-block;
    margin: 10px 30px 0 0;
}

section.contact .email {
    background: url(images/at.png) no-repeat;
    background-size: 30px 30px;
    padding: 0px 0 40px 54px;
}

section.contact .facebook {
    background: url(images/facebook.png) no-repeat;
    background-size: 30px 30px;
    padding: 0px 0 40px 54px;
}

section.contact .address {
    background: url(images/marker.png) no-repeat;
    background-size: 30px 30px;
    padding: 0px 0 20px 54px;
}

footer {
    background: #212b36;
    color: #fff;
    padding: 30px;
}

footer a {
    color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 990px) {
    section {
        padding: 30px;
    }

    section.application {
        padding: 50px; 
    }

    section.application .container .content {
        padding: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    section.application {
        padding: 50px; 
    }

    section.application .container .content {
        padding: 50px;
    }
}

@media only screen and (max-width: 575px) {
    section {
        padding: 20px;
    }
    
    section.application {
        padding: 20px; 
    }

    section.application .container .content {
        padding: 30px;
    }
}

@media only screen and (max-width: 990px) {
    section.contact .email {
        padding: 0px 0 30px 54px;
    }

    section.contact .facebook {
        padding: 0px 0 30px 54px;
    }
}

h1, h2, h3, h4, h5 {
    color: #212b36;
}

h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 30px;
}

h3 {
    margin: 30px 0 20px;
}