@font-face {
    font-family: "Roboto Thin";
    src: url("../fonts/Roboto/Roboto-Thin.ttf");
}

@font-face {
    font-family: "Roboto Regular";
    src: url("../fonts/Roboto/Roboto-Regular.ttf");
}

@font-face {
    font-family: "Roboto Medium";
    src: url("../fonts/Roboto/Roboto-Medium.ttf");
}

@font-face {
    font-family: "Roboto Bold";
    src: url("../fonts/Roboto/Roboto-Bold.ttf");
}

@font-face {
    font-family: "Roboto Light";
    src: url("..fonts/Roboto/Roboto-Light.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Regular', sans-serif;
    background: #edf2f4;
    line-height: 27px;
    color: #252525;
}

img {
    max-width: 100%;
    height: auto;
}

li {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}

p {
    font-family: "Roboto Regular", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;
    color: #252525;
}

a {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding: 0;
}
/* Header */

.navbar {
    position: relative;
}
.brand {
    position: absolute;
    right: 50%;
    top: 20%;
    margin-left: -50px;  
    display: block;
    transform: translateX(35%);
}

.container {
    background-color: #fff;
    min-height: 200px;
}

.nav-link {
    color: #333;
    font-weight: bold;
}

.nav-link:hover {
    color: #900;
}

.nav-login {
    padding-right: 60px;
    padding-top: 20%;
}
.nav-login a {
    font-size: 20px;
}
/* Section 1 */

.section-1 {
    background-color: #FFF;
}

.section-1 .container-fluid {
    padding: 15px 64px 0px 64px;
}

.section-1 .container-fluid .row {
    background-color: #edf2f4;
    padding: 60px 64px 30px 64px;
}

.card {
    /* width: 20rem; */
    box-shadow: 0px 4px 29px rgba(59, 99, 128, 0.2);
}

.card-title a {
    color: #44a0cb;
    text-decoration: none;
    cursor: pointer;
}

.card-title a:hover {
    color: #2192c7;
    transition: all .3s;
}

.hr {
    height: 1px;
    width: 100%;
    background-color: #d6e5ed;
}

.hr-blue {
    height: 1px;
    width: 100%;
    background-color: #44a0cb;
}
