/*Reset Css*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*Reset css*/

/*Home*/

body {
    min-height: 100%;
    font-family: 'Montserrat', sans-serif;
}
b, strong {
    font-weight: bold;
}
#home-page {
    height: 100vh;
}
#home-page>div:nth-child(2) {
    display: flex;
    height: calc(100% - 60px);
    width: 100%;
}
#home-page>div:nth-child(2)>.link-image {
    width: 50%;
    position: relative;
}
#home-page>div:nth-child(2)>.link-image img {
    width: 100%;
    height: calc(100% - 50px);
    object-fit: cover;
    display: block;
}
#home-page>div:nth-child(2)>.link-image a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #193050de;
    color: white;
    padding: 11px 65px;
    text-decoration: none;
    border-radius: 40px;
    font-size: 16px;
    text-align: center;
}
#home-page>div:nth-child(2)>.link-image a:hover {
    background: #193050;
}
#home-page>.footer {
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #16314f;
    color: white;
    font-size: 24px;
    padding: 10px 0;
}
#home-page>.footer img {
}
.address {height: 50px;display: flex;align-items: center;justify-content: center;background: #16314f;color: #fff;font-weight: bold;font-size: 14px;}
.address p {
}

/*Home*/