/**
 * @ Author: SoftWinx IT Solutions
 * @ Copyright: Copyright (c) 2024 SoftWinx S.R.L
 * @ Create Time: 19-01-2024 00:52:49
 * @ Modified by: Adelin Huluban
 * @ Modified time: 19-01-2024 16:35:12
 */

@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --fontFamily: 'Jost', sans-serif;
  --mainColor: #F1C81F;
  --oppositeColor: #0C4384;
  --whiteColor: #FFFFFF;
  --headingColor: #000000;
  --paragraphColor: #555555;
  --transition: all ease 0.8s;
  --fontSize: 16px;
}

.cards-body {
  font-size: var(--fontSize);
  font-weight: 400;
  font-family: var(--fontFamily);
  color: var(--paragraphColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards-cont {
  display: flex;
  align-items: center;
}

.cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.card {
  background: var(--oppositeColor);
  color: var(--whiteColor);
  border-radius: 60px;
  padding: 20px 40px;
  margin: 20px;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
  transition: var(--transition);
  transform-origin: center bottom;
}

.card:hover {
  background-color: var(--mainColor);
  color: var(--oppositeColor);
  cursor: pointer;
  transform: scale(1.05); 
}

.btn-middle-card {
  background-color: var(--mainColor);
  color: var(--oppositeColor);
  width: 100%;
  padding: 15px 30px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 0 0 2px var(--oppositeColor);
}
.btn-middle-card:hover {
background-color: var(--oppositeColor);
color: var(--mainColor);
cursor: pointer;
transform: scale(1.05);
box-shadow: 0 0 0 2px var(--mainColor);
}

.left-cards .card {
  flex-direction: row-reverse;
  justify-content: flex-start;
  text-align: left;
  margin-left: -10px;
  box-shadow: 0 0 0 4px var(--whiteColor);
}

.right-cards .card {
  flex-direction: row;
  justify-content: flex-start;
  text-align: right;
  left: -10px;
  box-shadow: 0 0 0 4px var(--whiteColor);
}

.icon-circle-left {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-left: -20px;
  margin-right: 20px;
  transform: scale(2);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0 2px var(--whiteColor);
}

.icon-circle-right  {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-left: 10px;
  margin-right: -20px;
  transform: scale(2);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0 2px var(--whiteColor);
}

.main-circle {
  background: whitesmoke;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 0 4px var(--whiteColor);
}
.card h3 a{
  font-size: 18px;
}
.right-cards .card .icon-circle-left {
  float: right;
  margin-right: 30px;
}
.left-cards .card .icon-circle-right {
  float: left;
  margin-left: 30px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .main-circle {
    margin: 20px 0;
  }

  .cards-cont {
    flex-direction: column;
    align-items: center;
  }
  
  .left-cards .card,
  .right-cards .card {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .card {
    font-size: 14px;
  }

  .left-cards .card,
  .right-cards .card {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
