/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
body {
	line-height: 1;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.3em;
}

header {
position: absolute;
width: 100%;
}
.Site {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.Site-content {
  flex: 1;
  background-color: #F2F9FE;
  background-image: url("Images/bg-image.png"); 
  background-position: bottom right;
  background-size: cover;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: -15px;
    margin-right: -15px;
    justify-content: space-between;

}
.row .row {
    justify-content: flex-end;

}
.col {
    padding-left: 15px;
    padding-right: 15px;
}

.image {
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 150px;
    width:100%;
}

.Button {
	background-color:#0088F4;
	border-radius:28px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:16px;
	padding:10px 24px;
    margin-top: 30px;
	text-decoration:none;
    transition: background-color .3s ease-in-out;
}
.Button:hover {
	background-color:#181B20;
}

.top-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

h1 {
    font-weight: bold;
    font-size: 60px;
    line-height: 4.5rem;
}
h2 {
    font-weight: 400;
    font-size: 24px;
}
h2 strong {
    font-weight: 700;
}
.text-blue {
    font-weight: bold;
    color: #0088F4;
    margin-top: 30px;
}

strong {
    font-weight: bold;
}

.text-regular {
    margin-top: 20px;
}

p {
    line-height: 1.5rem;
    font-size: 18px;
}

.box {
    margin-right: 180px;
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 3px 4px 25px 6px rgba(0,0,0,0.28);
}

.icon {
    max-width: 40px;
}

footer {
    background-color: #CCE7FD;
    padding: 30px 0;
}

.footer-links {
    text-decoration: none;
    color: #181B20;
}
footer .icon-links {
    display:flex;
    }
footer .icon-links a {
width:20px;
padding: 0 5px;
}
footer .icon-links a img {
    width:20px;
    height:20px;
    }

@media screen and (max-width: 780px) {

    .row {
        flex-direction: column!important;
        align-items: center;
        margin-left:0px;
        margin-right:0px;
        }
        .col {
            margin-bottom:30px;
            width:100%;
            text-align: center;
            padding: 30px 0;
        }
        h1 {
            font-weight: bold;
            font-size: 40px;
            line-height: 1.2em;
            text-align: center;
        }
        h2 {
            font-weight: 400;
            font-size: 20px;
        }
        p {
            text-align: center;
        }
        .box {
            margin-right:0px;
            text-align: center;
        }
      header {
          position: relative;
          background-color: #F2F9FE;
      }
      .button {
        box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.4);
      }
}

