@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

* {
  --dark: #3e3d3d;
  --red: #d12229;
  --blue: #20295a;
  --white: #ffffff;
  --black: #000000;
  --light-dark: #bfc2c7;
}

body {
  margin: 0;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  position: relative;
  background-color: var(--light-dark);
}

.inno-vc {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

.inno-vc .front {
  width: 100%;
  max-width: 400px;
  height: 100vh;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  background-color: var(--blue);
}

.inno-vc .front::before {
  content: "";
  position: absolute;
  top: 250px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
  overflow: hidden;
}

.inno-vc .button {
  position: absolute;
  bottom: 15%;
  right: 15px;
  padding: 5px 5px;
  background-color: var(--light-dark);
  color: #fff;
  text-decoration: none;
  border-radius: 24px;
  cursor: pointer;
  z-index: 2;
  fill: white;
  transition: background-color 0.3s ease;
}
.inno-vc .button svg {
  fill: var(--blue); /* Initial color of the SVG icon */
  animation: iconAnimation 3s infinite alternate;
}

/* Animation for the SVG icon */
@keyframes iconAnimation {
  0% {
    fill: var(--blue);
  }
  100% {
    fill: var(--white);
  }
}

/* @keyframes buttonAnimation {
  0% {
    background: var(--blue);
  }
  50% {
    background: var(--light-dark);
  }
  100% {
    background: var(--blue);
  }
}

.inno-vc .button.animated {
  animation: buttonAnimation 5s ease infinite;
}
 */
.inno-vc .head {
  display: flex;
  justify-content: center;
  padding: 25px 0;
}

.inno-vc .head img {
  width: 250px;
}

.inno-vc .head > div {
  text-align: center;
  margin: 0 10px;
  text-transform: uppercase;
}

.inno-vc .head > div p {
  font-size: 0.8rem;
  font-weight: 600;
}

.inno-vc .avatar {
  position: absolute;
  width: 50%;
  left: 50%;
  top: 120px;
  transform: translate(-50%);
  text-align: center;
}

.inno-vc .img {
  background-color: #bfc2c7;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 5px solid var(--white);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inno-vc .avatar .img img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}

.inno-vc .infos > div {
  display: flex;
  position: relative;
  left: 23%;
  margin: 15px;
}

.inno-vc .infos h1 {
  margin: 150px 0 0 0;
  padding: 60px 0 0 0;
  color: #000000;
  font-size: 22px;
  text-align: center;
  position: relative;
}

.inno-vc .infos h2 {
  margin: 0;
  color: #000000;
  font-size: 15px;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

.inno-vc .infos > div svg {
  width: 20px;
  height: 20px;
  fill: var(--blue);
}

.inno-vc .infos > div p {
  font-size: 15px;
  margin: 2px 0;
  font-weight: 500;
  padding-left: 20px;
}

.red-text {
  color: red !important;
}

/* Media Queries */
@media only screen and (max-width: 767px) {
  .inno-vc .front {
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }

  .inno-vc .infos h1 {
    margin: 150px 0 0 0;
  }
}
@media only screen and (min-width: 900px) {
  .inno-vc .front {
    max-height: 800px;
  }
  .inno-vc .button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 5px 5px;
    background-color: var(--light-dark);
    color: #fff;
    text-decoration: none;
    border-radius: 24px;
    cursor: pointer;
    z-index: 2;
    fill: white;
    transition: background-color 0.3s ease;
  }
}
a {
  color: #000000;
}

