@import url('https://fonts.googleapis.com/css2?family=Akshar:wght@406;500&display=swap');

* {
  font-family: 'Akshar', sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section-heading h1 {
  font-weight: 100%;
  color: #1c06c0;
}

section {
  height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.row h1 {
  color: #c01c06;
  font-weight: 700;
}

.column {
  width: 100%;
  padding: 0 1em 1em 1em;
  text-align: center;
}

.card {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  background: linear-gradient(#ffffff 50%, #023c99 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f194c;
  margin: 1em 0;
}

p {
  color: #575a7b;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.icon-wrapper {
  background-color: #012d75;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: red;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
}

.card:hover {
  background-position: 0 100%;
}

.card:hover .icon-wrapper {
  background-color: #ffffff;
  color: #2c7bfe;
}

.card:hover h3 {
  color: #ffffff;
}

.card:hover p {
  color: #f0f0f0;
}

@media screen and (min-width: 768px) {
  section {
    padding: 0 2em;
  }

  .column {
    flex: 0 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 992px) {
  section {
    padding: 1em 3em;
  }

  .column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

/* consulting styling */
@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}

:root {
  --card-height: 20vh;
  --card-width: calc(var(--card-height) * 2.0);
}

.yes {
  text-align: center;
}
.yes p{
  text-decoration-color: black;
}

.card-1 {
  background: #012868;
  width: var(--card-width);
  height: var(--card-height);
  padding: 3px;
  position: relative;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  padding-left: 4px;
  font-size: 1.5em;
  color: rgb(88 199 250 / 0%);
  cursor: pointer;
  font-family: cursive;
  text-align: center;
  border-style: solid;
  border-color: red;
  background-image: linear-gradient(var(--rotate), #b17c0a, #0c53bd 43%, #0a08ac);
  animation: spin 2.5s linear infinite;
}

.container {
  padding-right: 500px;
  text-align: center;

  }
.consultancy{
  /* margin-top: 3200px; */
}

.card-1:hover {
  color: rgb(194, 3, 3);
  transition: color 1s;
}

.card-1:hover:before,
.card:hover:after {
  animation: none;
  opacity: 0;
}


.card-1:before {
  content: "";
  width: 104%;
  height: 102%;
  border-radius: 8px;
  background-image: linear-gradient(var(--rotate), #b1770a, #108605 43%, #1e0249);
  position: absolute;
  z-index: -1;
  top: -1%;
  left: -2%;
  animation: spin 2.5s linear infinite;
}

.card-1 h4 {
  text-align: center;
  text-shadow: #051655;
  text-decoration: double;
  font-family: 'Akshar', sans-serif;
}

.card-1::after {
  position: absolute;
  content: "";
  top: calc(var(--card-height) / 6);
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  transform: scale(0.8);
  filter: blur(calc(var(--card-height) / 6));
  background-image: linear-gradient(var(--rotate), #b1770a, #108605 43%, #1e0249);
  opacity: 1;
  transition: opacity .5s;
  animation: spin 2.5s linear infinite;
}

@keyframes spin {
  0% {
    --rotate: 0deg;
  }

  100% {
    --rotate: 360deg;
  }
}

a {
  color: #051655;
  text-decoration: none;
  font-family: sans-serif;
  font-weight: bold;
  margin-top: 2rem;
}
footer{
  /* position:absolute; */
   bottom:0;
   width:100%;
  margin-top: 4000px !important;
   
}
@media screen and (min-width: 768px) {
  footer {
    margin-bottom: 0 !important;
  }
}

@media screen and (min-width: 992px) {
  footer {
    margin-bottom: 0 !important;
  }
}