*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  width:100%;
  margin: 0;
  font-family: 'Titillium Web', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  background-color: #333333;
  color: #f5f5f5;
}

.container {
  width: 100%;
  padding: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

.cards {
    display:flex;
    flex-wrap:wrap;
    gap:2.5rem;
	pointer-events: none;
	margin-top:0.5rem;
	margin-bottom:1rem;
}
.cards > * {
    width:100%;
	text-align:center;
}
.cards p {
    padding: 0rem 1rem 2rem 1rem;
	text-shadow: 1px 1px #333333;
}

header {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}


h1, h2, h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

h1 {
  font-size: calc(1.4rem + 1.5vw);
}

h2 {
  font-size: calc(1.325rem + 1vw);
}

h3 {
  font-size: calc(1.325rem + 1vw);
  background: linear-gradient(to right,  #00a2ff, #ff00d2);	
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;		
}

#company h1 {
	text-align:center;
	font-size: calc(1.4rem + 1.7vw);
    background: linear-gradient(to right, #ff00d2, #fed90f);
    -webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
    }

#slogan h1 {
	text-align:center;
    background: linear-gradient(to right,  #00a2ff, #ff00d2);	
    -webkit-text-fill-color: transparent;
	-webkit-background-clip: text;		
    }
	
.title h2 {
    background: linear-gradient(to right,  #00a2ff, #ff00d2);	
    -webkit-text-fill-color: transparent;
	-webkit-background-clip: text;		
    }	

article h2 {
    color:#fff;
	margin:0;
    padding: 2rem 1rem 0rem 1rem;
	text-shadow: 1px 1px #333333;
    }

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

p a {
	padding: 0 2px;
	color: #ffd200;
	text-decoration: none;
	background: linear-gradient(currentColor, transparent, currentColor, transparent, currentColor, transparent, currentColor) repeat-x 0 100% / 100% 3px;
	box-decoration-break: clone;
}
p a:hover, 
a:focus {
	color: #00e676;
}

strong {
  font-weight: bolder;
}
small {
  font-size: 1rem;
}
ul {
  padding-left: 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
ul li {
	margin: 0 10px;
}
svg {
  vertical-align: middle;
  height: 2em;
  fill:#fff;
}

address { 
  font-style: normal;
} 

.style1 {
	background-image: linear-gradient(135deg, #ff3399 10%, #b91d73 100%);
	}
.style2 {
	background-image: linear-gradient(135deg, #3399ff 10%, #123597 100%);
	}	
.style3 {
	background-image: linear-gradient(135deg, #00cc66 10%, #339933 100%);
	}	
.style4 {
	background-image: linear-gradient(135deg, #ffcc00 10%, #ff9933 100%);
	}	
.style5 {
	background-image: linear-gradient(135deg, #ff9900 10%, #ff6600 100%);
	}	
.style6 {
	background-image: linear-gradient(135deg, #2a5298 10%, #1e3c72 100%);
	}	
.style7 {
	background-image: linear-gradient(135deg, #b91372 10%, #6b0f1a 100%);
	}	
.style8 {
	background-image: linear-gradient(135deg, #339933 10%, #006600 100%);
	}	
.style9 {
	background-image: linear-gradient(135deg, #9966ff 10%, #6600cc 100%);
	}	
.style10 {
	background-image: linear-gradient(135deg, #09c6f9 10%, #045de9 100%);
	}	
.icons {
	list-style: none;
	padding: 1rem;
	display: flex;
}
.icons span {
	display: none;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: background-color 0.3s;
    text-decoration: none;
    color: #fff;
}
.icon:hover {
    color: #fff;
}
.facebook {
    background-color: #3b5998;
}
.facebook:hover {
    background-color: #2d4373;
}
.twitter {
    background-color: #1da1f2;
}
.twitter:hover {
    background-color: #0c85d0;
}
.linkedin {
    background-color: #0077b5;
}
.linkedin:hover {
    background-color: #005582;
}

footer .copyright {		
	margin-top:3em;
	}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
 .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
 .container {
    max-width: 960px;
  }
  .cards > * {
        width:calc((100% - 4rem) / 2);
    }
.cards:after {
	content: "";
	display: table;
	clear: both;
}
}
@media (max-width: 992px) {
h1, h2, h3, .title h2 {
  text-align:center;
}
}
@media (min-width: 1200px) {
 .container {
    max-width: 1140px;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
   h3 {
    font-size: 2.5rem;
  }
}
