@charset "utf-8";
/* CSS Document */

:root {
  --darkGray: #525561;
  
  --midGray: #91939b;
  --lightGray:#b2b4be;
  --darkBlue: #01111d;
  
  --color1: #001c31;
  --color2: #0051a0;
  
  --blue: #024c93; 
  --white: #ffffff; 
}

*, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

body {
	font-family: 'Poppins', sans-serif;
  /*background: var(--color1);*/
  color: var(--darkGray);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  color:var(--blue);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.85);
  margin-bottom:20px;
}

p {
  line-height: 1.3em;
  margin-bottom:10px;
}

a, a:visited {
  color: var(--blue);
}

a:hover, a:active {
  color: var(--blue);
}

p.buttons {
  margin-top:30px;
}

a.button, a.button:visited {
  cursor: pointer;
  color: var(--blue);
  background: transparent;
  border:1px solid var(--blue);
  border-radius:5px;
  padding:6px;
  font-size:1.3em;
  text-decoration: none;
}

a.button:hover, a.button:active {
  background: var(--blue);
  color:var(--white);
  border:1px solid var(--blue);
  text-decoration: none;
}

::-webkit-input-placeholder { /* Edge */
  color: var(--midGray);
  opacity: 0.5;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--midGray);
  opacity: 0.5;
}

::placeholder {
  color: var(--midGray);
  opacity: 0.5;
}

:-ms-input-placeholder,
:-ms-textarea-placeholder { /* Internet Explorer 10-11 */
  color: var(--midGray);
  opacity: 0.5;
}

::-ms-input-placeholder,
::-ms-textarea-placeholder { /* Microsoft Edge */
  color: var(--midGray);
  opacity: 0.5;
}

textarea::-webkit-input-placeholder {
  color: var(--midGray);
  opacity: 0.5;
}

textarea:-moz-placeholder { /* Firefox 18- */
  color: var(--midGray);
  opacity: 0.5;
}

textarea::-moz-placeholder {  /* Firefox 19+ */
  color: var(--midGray);
  opacity: 0.5;
}

textarea:-ms-input-placeholder {
  color: var(--midGray);
  opacity: 0.5;
}

input[type=text] {
  background: transparent;
  color:var(--blue);
  padding:6px;
  border:0;
  border-bottom:1px solid var(--blue);
  width: 100%;
}

input[type=text]:focus {
  border-bottom:1px solid var(--blue);
}

textarea {
  background: transparent;
  color:var(--blue);
  padding:6px;
  border:0;
  border-bottom:1px solid var(--blue);
  width: 100%;
  min-height:150px;
}

textarea:focus {
  border-bottom:1px solid var(--blue);
}

.responseForm span.error {
  color:#f00;
}

/*CONTENT*/
article {
  padding:0 20px;
}

@media (min-width: 768px) {
  article {
    padding:0;
  }
}

section,
header,
footer {
  padding:10px;
}

section:first-of-type {
  padding-top:0;
}

@media (min-width: 768px) {
  section:first-of-type {
    padding-top:10px;
    min-height: calc(100vh - 430px);
  }
}

section .row,
header .row,
footer .row {
  display: flex;
  flex-direction: column;
  min-height: inherit;
}

@media screen and (min-width: 1024px) {
  section .row,
  header .row,
  footer .row {
    flex-direction: row;
    width: 980px;    
    margin: auto;
  }
}

@media screen and (min-width: 1280px) {
  section .row,
  header .row,
  footer .row {
    width: 80px;
  }
}

@media screen and (min-width: 1366px) {
  section .row,
  header .row,
  footer .row {
    width: 1140px;
  }
}

@media screen and (min-width: 1440px) {
  section .row,
  header .row,
  footer .row {
    width: 1300px;
  }
}

@media screen and (min-width: 1600px) {
  section .row,
  header .row,
  footer .row {
    width: 1440px;
  }
}

section .columns,
header .columns,
footer .columns {
  position: relative;
}

section .columns {
  
}

@media (min-width: 768px) {
  section .columns,
  header .columns,
  footer .columns {
    min-height: inherit;
  }
}

section .columns.all-width,
section .columns.one-half,
section .columns.one-third,
section .columns.two-third,
section .columns.one-forth,
section .columns.three-forth,
header .columns.all-width,
header .columns.one-half,
header .columns.one-third,
header .columns.two-third,
header .columns.one-forth,
header .columns.three-forth,
footer .columns.all-width,
footer .columns.one-half,
footer .columns.one-third,
footer .columns.two-third,
footer .columns.one-forth,
footer .columns.three-forth {
  width:100%;
}

@media (min-width: 768px) {
  section .columns.one-half,
  header .columns.one-half,
  footer .columns.one-half {
    width:50%;
    margin:auto;
  }
  section .columns.one-third,
  header .columns.one-third,
  footer .columns.one-third {
    width:33.33%;
  }
  section .columns.two-third,
  header .columns.two-third,
  footer .columns.two-third {
    width:66.66%;
  }
  section .columns.one-forth,
  header .columns.one-forth,
  footer .columns.one-forth {
    width:25%;
  }
  section .columns.three-forth,
  header .columns.three-forth,
  footer .columns.three-forth {
    width:75%;
  }
}

section .columns.boxed {
  background: var(--darkBlue);
  border-radius: 10px;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.25);
  padding: 30px;
}

span.blue {
  color:var(--blue);
}

#intro {
  padding:10px 0 20px 0;
  margin-top:20px;
}

@media (min-width: 768px) {
  #intro {
    padding:10px;
    marign-top:0;
  }
}

#intro .columns {
  margin-top: -200px;
  background-image: none;
  /*
  background-image:
    linear-gradient(30deg, rgba(39,42,55,1) 0%, rgba(57,60,73,1) 50%, rgba(82,85,97,0.75) 100%),
    url('../uploads/bg/bg1.jpg');
  */
  /*background-image: linear-gradient(30deg, rgba(1,17,27,0.2) 0%, rgba(1,17,29,0.5) 50%, rgba(0,45,78,1) 100%), url('../uploads/bg/bg2.png');*/
  background-size: 100%, 70%;
  background-position: 50vh center, bottom left -80px;
  background-repeat: no-repeat;
  padding:10px 10px 30px 10px;
}

@media (min-width: 768px) {
  #intro .columns {
    margin-top:0;
    background-image: linear-gradient(30deg, rgba(1,17,27,0.2) 0%, rgba(1,17,29,0.5) 50%, rgba(0,45,78,1) 100%), url('../uploads/bg/bg2.png');
    background-size: 100%, contain;
    background-position: top left;
    background-repeat: no-repeat;
    padding:10px;
  }
}

#card {
  padding-top: 200px;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}

@media (min-width: 768px) {
  #card {
    padding-top: 0;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
  }
}

#intro #main-logo {
  width: 50px;
  margin-right: 10px;
}

#intro span.title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size:2.4em;
  color: var(--blue);
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
  #intro span.title {
    font-size:2.5em;
  }
}

#services ul#services-list {
  list-style: none;
  margin-bottom:20px;
}

#services ul#services-list li {
  line-height: 2em;
  font-size: 1.3em;
}

#services ul#services-list li a,
#services ul#services-list li a:visited {
  cursor: pointer;
  color: var(--white);
}

#services ul#services-list li a:hover,
#services ul#services-list li a:active {
  color: var(--blue);
}

#services ul#services-list li a.inactive {
  cursor: default;
  color: var(--midGray);
}

#services img {
  width:100%;
  border-radius: 10px;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.25);
}

#services ul#values {
  padding-left: 1em;
}

#services ul#values li {
  line-height: 1.3em;
  margin-bottom: 10px;
}

#info p {
  text-align: center;
}

#info .social {
  font-family: "Font Awesome 6 Brands";
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  color:var(--darkGray);
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  position: relative;
  margin: 20px;
}

#info .social:hover {
  color:var(--blue);
}

#info .social.facebook:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f09a";
}

#info .social.instagram:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f16d";
}

#info .social.linkedin:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f08c";
}

#info .social.twitter:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f099";
}

#info .social.linkedin:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f0e1";
}

#info .social.whatsapp:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f232";
}

/*HEADER & FOOTER*/
header,
footer {
  font-size:0.9em
}

@media (min-width: 768px) {
  header {
    padding-bottom:0;
  }
}

header .columns {
  text-align: center;
}

@media (min-width: 768px) {
  header .columns:first-of-type {
    text-align: left;
  }
  header .columns:last-of-type {
    text-align: right;
  }
}

footer {
  background: var(--blue);
  color:var(--white);
}

footer .columns {
  text-align: center;
}
