@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap");
/**{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100%;
  background: #66666;
}*/

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 5px 0;
}

.container .card {
  position: relative;
  min-width: 280px;
  height: 280px;
  box-shadow: inset 4px 4px 4px rgba(219, 165, 20, 0.4),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin: 10px;
  transition: 0.5s;
}

.container .card:nth-child(1) .box .content a {
  background: #CC9966;
}

.container .card:nth-child(2) .box .content a {
  background: #CC9966;
}

.container .card:nth-child(3) .box .content a {
  background: #CC9966;
}

.container .card:nth-child(4) .box .content a {
  background: #CC9966;
}

.container .card:nth-child(5) .box .content a {
  background: #CC9966;
}

.container .card:nth-child(6) .box .content a {
  background: #CC9966;
}

.container .card .box {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  background: #20315C;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
}
/*
.container .card .box:hover {
  transform: translateY(-50px);
}*/

.container .card .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

 .container .card .box .content {

  padding: 10px;
  text-align: center;
}

 .container .card .box .content .card-img {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 15px;
  right: 35%;
}

.container .card .box .content .icon-c{
  align-items: center;
  font-size: 60px;
  color: #DBA514;
}
 
 .container .card .box .content h3 {
  font-size: 2rem;
  color: #fff;
  z-index: 1;
  transition: 0.5s;
  margin-top:20px;
}

 .container .card .box .content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  transition: 0.5s;
}
 .container .card .box .content a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  background: black;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  margin-top: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
  width: 100px;
  height:40px;
  text-align: center;
  font-size: 25px;
}
.container .card .box .content a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  background: #fff;
  color: #000;
}
 .container .card .box .content a .icon{
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: center;
}

.container .card .box .content a:hover .icon {
  color: #000;
}

.title-menu{
	display: flex;
	justify-content: center;
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
}
.title-menu h2 {
	font-style: normal;
	font-weight: 700;
	font-size: 10rem;
	color:  #20315C;
	letter-spacing: 15px;
	mask-image: linear-gradient(to bottom, black 60%, rgba(0, 0, 0, 0) 100%);
}
