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

body {
	font: normal 300 16px / 27px 'Lato', Helvetica, Arial, Verdana, sans-serif;
	word-spacing: normal;
	margin:0px;
	margin-left: auto;
	margin-right: auto;
	color:#888888;
	background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

h1, h2, p {
  padding: 0 15px;
}

/****************/
/** TYPOGRAPHY **/
/****************/
h1 {
	text-align: center;
	font-size: 40px;
	line-height: 70px;
	color: #3a3a3a;
  margin: 20px 0 30px;
}
@media screen and (max-width: 900px) {
h1 {
  font-size: 30px;
	line-height: 40px;
}
}

h2 {
	font-family: Raleway, sans-serif;
	font-weight: 100;
	line-height: 35px;
	font-style: italic;
	text-align: center;
	font-size:30px;
	color:#ababab;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
h2 {
  font-size: 24px;
}
}

strong {
  color: #BE0300;
}

/** LISTA **/
ul {
  list-style-type: none;
}

ul li:before {
  content: "";
  background-image: url(../imgs/check.png);
  width: 10px;
  height: 10px;
  display: inline-block;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  margin-right: 8px;
}

a {
  color: #cd000d;
  text-decoration: none;
}


/************/
/** HEADER **/
/************/
.logo-img {
  width: 80px;
}
@media screen and (max-width: 900px) {
  .logo-img {
    width: 65px;
  }
}

header {
	text-align: center;
	padding: 16px 24px;
  background: #cd000d;
  width: 100%;
  height: 480px;
}

header.privacy-policy {
  height: auto;
}

header h1 {
  color: white;
}

.header-image img {
  max-width: 800px;
  margin: -250px auto 0;
  border: 6px white solid;
  display: block;
}
@media screen and (max-width: 480px) {
  .header-image img {
    margin-top: -220px;
  }
}
@media screen and (max-width: 800px) {
  .header-image img {
    max-width: 100%;
  }
}


/******************/
/** MAIN CONTENT **/
/******************/
.two-columns {
  max-width: 1200px;
}

/** intro **/
.intro {
	margin: 40px auto 0;
	padding: 0 16px;
	max-width: 1200px;
	text-align: center;
}

/** description **/
.description {
  margin: 60px 0;
  padding: 40px 0;
  background: #cd000d;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.description, .description h2, .description strong {
  color: white;
}

.description .imgs-container {
  max-width: 1200px;
}

.description .imgs-container .column {
  width: 16%;
}
@media screen and (max-width: 1024px) {
  .description .imgs-container .column {
    width: 33%;
  }
}
@media screen and (max-width: 600px) {
  .description .imgs-container .column {
    width: 50%;
  }
}

.description .imgs-container img {
  max-width: 60%;
  /*flex: 1 0 10%;*/
  display: block;
  margin: 0 auto 10px;
}

/** intro details - columns **/
.text-contacts {
  margin: 60px 0;
}

.text-contacts,
.imgs-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.imgs-container {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.text-contacts .column {
  width: 50%;
  padding: 0 20px;
}
.text-contacts .column img {
  width: 100%;
}

@media screen and (max-width: 800px) {
  .text-contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .text-contacts .column {
    width: 100%;
    padding: 0;
  }
}

@media screen and (min-width: 800px) {
  .text-contacts .column p {
    padding: 0;
  }
}


.text-contacts img {
  max-width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 24%;
  flex: 1 0 24%;
  display: block;
}

/** utilization **/
.utilization .imgs-container img {
  max-width: 100%;
  /*flex: 1 0 24%;*/
  display: block;
  border: 1px #bbbbbb solid;
  border-radius: 20px;
  margin-bottom: 10px;
}

.utilization .imgs-container .column {
  width: 25%;
}

@media screen and (max-width: 1024px) {
  .utilization .imgs-container .column {
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .utilization .imgs-container {
    display: block;
  }
  .utilization .imgs-container .column {
    width: 100%;
  }
}



/****************************/
/** IMGS CONTAINER COLUMNS **/
/****************************/
.imgs-container .column {
  padding: 10px;
  text-align: center;
  /*display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;*/
}

.imgs-container .column:first-child {
  margin-left: 0;
}

.imgs-container .column:last-child {
  margin-right: 0;
}


/******************/
/** CONTACT FORM **/
/******************/
.column.form-container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.form-columns-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.form-columns-container .form-column {
  width: 100%;
  margin: 16px 10px 0 10px;
}
.form-columns-container .form-column:first-child {
  margin-left: 0;
}
.form-columns-container .form-column:last-child {
  margin-right: 0;
}

.form-column__prov {
  width: 8rem !important;
}
.form-column__cap {
  width: 12rem !important;
}

@media screen and (max-width: 800px) {
  .form-columns-container {
    display: block;
  }
  .form-columns-container .form-column {
    margin: 0;
  }
  .form-column__prov {
    width: auto !important;
  }
  .form-column__cap {
    width: auto !important;
  }
}

/** customize input form **/
input[type=text],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 6px;
  margin-bottom: 0;
  resize: vertical;
}
input[type=text]:focus,
textarea:focus {
  border-color: #cd000d;
  outline: none;
}

.form-checkbox {
  width: 100%;
  margin-bottom: 20px;
}

input[type=submit] {
    background-color: #cd000d;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
input[type=submit]:hover {
    background-color: #403b39;
}

.btn {
  background-color: #cd000d;
  color: white;
  font-size: 1.2rem;
  padding: 8px 32px;
  border-radius: 50px;
  text-transform: uppercase;
}
.btn, .btn a {
  color: white;
}

.privacy-btn {
  margin-bottom: 60px;
}

.formError {
  border: 2px red solid !important;
}
.formError-text {
  color: red;
  font-size: 12px;
  visibility: hidden;
}
.formError-visible {
  visibility: visible;
}


/************/
/** FOOTER **/
/************/
.pre-footer {
  width: 100%;
  background-color: #cd000d;
  text-align: center;
  padding: 10px;
}
.pre-footer, .pre-footer a {
  color: white;
}

footer {
  width: 100%;
  background-color: #a0000a;
  text-align: center;
  padding: 10px;
}

footer, footer strong, footer a {
  color: white;
}

.footer-privacy-link {
  text-decoration: underline;
}

.footer-company-name {
  font-size: 1.2rem;
}


/********************/
/** PRIVACY POLICY **/
/********************/
.privacy-text {
  margin: 40px 0;
  max-width: 1200px;
}

.privacy-text h2 {
  margin-top: 60px;
}
.privacy-text h2:first-child {
  margin-top: 0;
}
