﻿body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: linear-gradient(to right, #f3f3f3 50%, white 50%);
}

@font-face {
  font-family: "Poppins BlackItalic";
  src: url("../fonts/Poppins-BlackItalic.ttf");
}
h3 {
  font-family: "Poppins BlackItalic";
  font-size: 24px;
  color: #000;
}

.rounded-container {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: box-shadow 0.3s ease-in-out;
  padding: 14px 20px;
}

.rounded-container.card {
  width: 300px;
  text-align: center;
  height: 250px;
  text-align: center !important;
  height: 400px;
  padding-top: 55px;
  cursor: pointer;
}
.rounded-container.card img {
  height: 150px;
  width: auto;
  transition: all 0.3s ease;
}
.rounded-container.card .circle {
  width: 150px;
  height: 150px;
  position: relative;
  transition: all 0.3s ease;
}
.rounded-container.card .title {
  margin-top: 70px;
  font-size: 15pt;
  font-weight: 600;
  transition: all 0.3s ease;
}

.rounded-container.card.deactivated {
  filter: grayscale(100%);
  opacity: 0.4;
}

.rounded-container.card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.rounded-container.card:hover img {
  height: 160px;
  width: auto;
  margin-top: -10px;
}
.rounded-container.card:hover .circle {
  width: 160px;
  height: 160px;
  margin-top: -10px;
}
.rounded-container.card:hover .title {
  font-size: 15.5pt;
}

.circ-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 150px;
}

.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #0957A0;
  position: absolute;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
}
.circle img {
  width: 100px;
}

.left {
  left: 50px;
  background: #fff;
}
.left img {
  width: 55%;
}

/*.middle {
    left: 220px;
}
*/
.right {
  right: 50px;
}

.line {
  height: 2px;
  background-color: #0957A0;
  position: absolute;
  top: 50%;
}

.left-line {
  left: 100px; /* Position it just right of the left circle */
  width: 120px; /* Adjust the width of the line */
}

.right-line {
  right: 95px; /* Position it just left of the right circle */
  width: 120px; /* Adjust the width of the line */
}

input {
  height: 53px;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-top: 5px !important;
  margin-bottom: 14px !important;
  padding-left: 10px !important;
}

.row {
  --bs-gutter-x: 0;
}
