/* 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;
}
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;
}
a,
a:visited,
a:focus,
a:hover{
  color:inherit;
  text-decoration:none;
}

/*//////////// GENERAL ////////////*/
html {
  height: 100%;
}
body{
  min-height: 100%;
  font-family: 'Open Sans', Arial, sans-serif;
  background: url(../img/background-darker.jpg) no-repeat top;
  color: #ffffff;
  line-height: 1.2;
  position: relative;
  background-size: cover;
  overflow-x:hidden;
}

.content{
  width:600px;
  margin:0 auto;
  padding: 75px;
  text-align:center;
  border:3px solid #ffffff;
  position:relative;
}
.content:before{
  content:"";
  display:block;
  width:180px;
  height:180px;
  background:url("../img/logo.jpg") no-repeat center center;
  background-size:cover;
  border-radius:90px;
  position:absolute;
  top: -60px;
  right: -60px;
  transform: rotate(20deg);
}
.content:after{
  content:"";
  display:block;
  width:180px;
  height:180px;
  background:url("../img/TyPleud.png") no-repeat center center #ffffff;
  background-size:contain;
  border-radius:90px;
  position:absolute;
  top: -60px;
  left: -60px;
  transform: rotate(-20deg);
  border:2px solid #000000;
}
.content h1{
  text-transform:uppercase;
  font-size:68px;
  font-weight:bold;
}

.content p{
  text-transform:uppercase;
  margin: 20px 0 30px;
}

.content .progressbar-content{
  width: 100%;
  background-color: grey;
  position:relative;
}

.content .progressbar-content .progressbar{
  width: 80%;
  height:15px;
  background-color: #82b0e0;
}

.content .progressbar-content:before{
  content:"0%";
  display:block;
  position:absolute;
  bottom:-25px;
  left:0;
}

.content .progressbar-content:after{
  content:"100%";
  display:block;
  position:absolute;
  bottom:-25px;
  right:0;
}

.content .notify{
  display:inline-block;
  background:#82b0e0;
  padding:10px 35px;
  margin: 80px 0 100px;
  transition: all 1s linear;
}
.content .notify:hover{
  background:#d4e4f4;
}

.content ul.social {
  margin: 80px 0 20px;
  display: flex; 
  flex-direction: row; 
  flex-wrap: nowrap; 
  justify-content: center; 
  align-content: center; 
  align-items: flex-start; 
  }
.content ul.social li a { 
  display: inline-block; 
  font-size:0; 
  width: 90px; 
  height: 90px; 
  border: 3px solid #ffffff; 
  border-radius: 100%; 
  margin: 0 34px; 
  text-align: center; 
  line-height: 140px;
}
.content ul.social li a:hover { 
  color: #9098a0; 
  border: 3px solid #9098a0; 
}
.content ul.social li a img{ 
  width: 50px;
}
.content ul.social li a.tel{
  position:relative;
}
.content ul.social li a.tel span{
  position: absolute;
  font-size: 16px;
  line-height: 1;
  width: 120px;
  top: 0px;
  left: -11px;
  opacity:0;
  transition:all 0.2s linear;
}
.content ul.social li a.tel:hover span{
  opacity:1;
  top: -35px;
  color:white !important;
}

.legal{
  font-size:10px;
  color:lightgrey;
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; 
    padding: 0;
    border: 1px solid #888;
    width:560px; 
}
.modal-header {
    padding: 2px 16px;
    background-color: #4B99AD;
    color: white;
}
.modal-header h2{
    padding: 8px;
}
.modal-body {padding: 2px 16px;}

.modal-footer {
    padding: 2px 16px;
    background-color: #4B99AD;
    color: white;
}

.modal-content {
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s
}

@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

.close {
    color: #ffffff;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.form-style {
    margin:10px auto;
    max-width: 400px;
    padding: 20px 12px 10px 20px;
    
    color:black;
}
.form-style li {
    padding: 0;
    display: block;
    list-style: none;
    margin: 10px 0 0 0;
}
.form-style label{
    margin:0 0 3px 0;
    padding:0px;
    display:block;
    font-weight: bold;
    font-size:13px;
}
.form-style input[type=text], 
.form-style input[type=date],
.form-style input[type=datetime],
.form-style input[type=number],
.form-style input[type=search],
.form-style input[type=time],
.form-style input[type=url],
.form-style input[type=email],
textarea, 
select{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border:1px solid #BEBEBE;
    padding: 7px;
    margin:0px;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;  
}
.form-style input[type=text]:focus, 
.form-style input[type=date]:focus,
.form-style input[type=datetime]:focus,
.form-style input[type=number]:focus,
.form-style input[type=search]:focus,
.form-style input[type=time]:focus,
.form-style input[type=url]:focus,
.form-style input[type=email]:focus,
.form-style textarea:focus, 
.form-style select:focus{
    -moz-box-shadow: 0 0 8px #88D5E9;
    -webkit-box-shadow: 0 0 8px #88D5E9;
    box-shadow: 0 0 8px #88D5E9;
    border: 1px solid #88D5E9;
}
.form-style .field-divided{
    width: 49%;
}

.form-style .field-long{
    width: 100%;
}
.form-style .field-select{
    width: 100%;
}
.form-style .field-textarea{
    height: 100px;
}
.form-style input[type=submit], .form-style input[type=button]{
    background: #4B99AD;
    padding: 8px 15px 8px 15px;
    border: none;
    color: #fff;
}
.form-style input[type=submit]:hover, .form-style input[type=button]:hover{
    background: #4691A4;
    box-shadow:none;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
}
.form-style .required{
    color:red;
}
.form-style #alert{
  margin-left: 15px;
  font-size: 12px;
}
.form-style #alert.failure{
  color:red;
}
.form-style #alert.valid{
  color:green;
}

@media screen and (max-width:880px)
{
  .content{
    width: 300px;
    padding:25px;
  }
  .content:before{
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
  }
  .content:after{
    top: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
  }
  .content h1{
    font-size: 40px
  }
  .content ul.social li a{
        margin: 0 10px;
        line-height: 0;
            width: 55px;
    height: 55px;
  }
  .content ul.social li a img{
        width: 30px;
    margin-top: 12px;

  }
  .modal-content{
        width: 100%;
    max-width: 560px;
  }
}





















































