* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: normal;
}

a img {
  border: none;
  text-decoration: none;
  outline: none;
}

a {
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

/*
a:hover{color:var(--secondary-color)}
*/
a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
  text-decoration: none;
}

p {
  font-size: 15px;
  font-weight: normal;
  font-family: 'Satoshi';
  color: #8B8B8B;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Satoshi';
  font-weight: bold;
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
}

ol,
ul,
li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

input:focus {
  outline: none;
}

textarea {
  outline: none;
  resize: none;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.p0 {
  padding: 0px;
}

:root {
  --primary-color: #35317D;
  --secondary-color: #f7f8fa;
  --text-color: #09120E;
}

::-webkit-input-placeholder {
  /* Edge */
  color: #756B61;
  font-size: 18px;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #756B61;
  font-size: 18px;
}

::placeholder {
  color: #756B61;
  font-size: 18px;
}

.container {
  max-width: 1620px;
  width: 96%;
}

.hero {
  background-color: #ffffff;
  padding: 60px 0 220px;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero .container {
  max-width: 600px;
}

.tax_relief {
  background-color: var(--primary-color);
  color: white;
  padding: 100px 0 150px;
}

.section-title {
  margin-bottom: 40px;
  font-size: 1.5rem;
}

.card {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
}

.hero h1 {
  margin-bottom: 1rem;
  font-size: 65px;
  line-height: 70px;
}

.hero p {
  font-size: 20px;
  color: #5C5B79;
}

.btn {
  width: 230px;
  height: 55px;
  line-height: 55px;
  padding: 0px;
  border: none;
  outline: none;
  font-weight: normal;
  font-weight: 700;
}

.btn-primary {
  background-color: #35317D;
  transition: all 0.5s ease;
}

.btn-primary:hover {
  background: rgb(239, 27, 30);
  background: linear-gradient(301deg, rgba(239, 27, 30, 1) 0%, rgba(247, 109, 34, 1) 100%);
  animation: gradientAnimation1 0.5s forwards;
  transition: all 0.5s ease;
}

.btn-secondary {
  background: rgb(239, 27, 30);
  background: linear-gradient(301deg, rgba(239, 27, 30, 1) 0%, rgba(247, 109, 34, 1) 100%);
  transition: all 0.5s ease;
}

.btn-secondary:hover {
  background-color: #35317D;
  animation: gradientAnimation2 0.5s forwards;
  transition: all 0.5s ease;
}

.logo_badge {
  margin-bottom: 140px;
}

.primary_badge {
  font-size: 18px;
  background-color: #EDEDED;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 1rem;
  display: inline-block;
}

.primary_badge i {
  display: inline-block;
  margin-right: 15px;
}

.secondary_badge {
  font-size: 16px;
  background-color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  display: inline-block;
  color: #5C5B79;
}

.secondary_badge i {
  display: inline-block;
  margin-right: 10px;
}

.section-title h2 {
  font-size: 40px;
  line-height: 40px;
}

.tax_relief .card-body {
  border-radius: 5px;
  padding: 30px 20px 30px 140px;
  position: relative;
  
}

.icon_holder {
  display: inline-block;
  position: absolute;
  left: 30px;
  background-color: #fff;
  border-radius: 50px;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
}

.tax_relief .card-body h5 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 1rem;
}

.tax_relief .card-body p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: normal;
}

.learn_more {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  text-decoration: none;
}

.learn_more i {
  margin-left: 10px;
}

.icon_holder img {
  width: 50px;
}

.logo_badge {
  width: 350px;
  margin-left: auto;
  margin-right: auto;
}

/* Define keyframes for the gradient animation */
@keyframes gradientAnimation1 {
  0% {
    opacity: 0.1;
    background: linear-gradient(301deg, rgba(53, 49, 125, 1) 0%, rgba(82, 77, 176, 1) 100%);
    transition: all 0.5s ease;
  }
  50% {
      opacity: 0.5;
      background: linear-gradient(301deg, rgba(59, 49, 125, 1) 0%, rgba(82, 77, 176, 1) 100%);
      transition: all 0.5s ease;
  }
  100%{
      opacity: 1;
      background: linear-gradient(301deg, rgba(59, 49, 125, 1) 0%, rgba(82, 77, 176, 1) 100%);
      transition: all 0.5s ease;
  }
}

/* Define keyframes for the gradient animation */
@keyframes gradientAnimation2 {
  0% {
    opacity: 0.1;
    background: linear-gradient(301deg, rgba(247, 109, 34, 1) 0%, rgba(239, 27, 30, 1) 100%);
    transition: all 0.5s ease;
  }
  50% {
      opacity: 0.5;
      background: linear-gradient(301deg, rgba(247, 109, 34, 1) 0%, rgba(237, 27, 30, 1) 100%);
      transition: all 0.5s ease;
  }
  100%{
      opacity: 1;
      background: linear-gradient(301deg, rgba(247, 109, 34, 1) 0%, rgba(237, 27, 30, 1) 100%);
      transition: all 0.5s ease;
  }
}

@media (max-width: 1199.98px) {

  .primary_badge {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 45px;
    line-height: 50px;
  }

  .hero p {
    font-size: 18px;
  }

  .btn {
    height: 45px;
    line-height: 45px;
    width: 180px;
  }

  .section-title h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .tax_relief {
    padding: 75px 0px 125px;
  }

  .tax_relief .card-body h5 {
    font-size: 20px;
  }

  .tax_relief .card-body p {
    font-size: 16px;
  }

  .learn_more {
    font-size: 14px;
  }

  .icon_holder {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }

  .icon_holder img {
    width: 40px;
  }

}

@media (max-width: 991.98px) {

  .logo_badge {
    margin-bottom: 50px;
    width: 250px;
  }

  .primary_badge {
    font-size: 14px;
  }

  .hero {
    padding: 30px 0px 110px
  }

  .hero p {
    font-size: 16px;
  }

}

@media (max-width: 767.98px) {

  .hero h1 {
    font-size: 30px;
    line-height: 35px;
  }

  .icon_holder {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .icon_holder img {
    width: 30px;
  }

  .tax_relief .card-body {
    padding: 30px 30px 30px 100px
  }

  .tax_relief .card-body p {
    font-size: 14px;
  }

  .tax_relief {
    padding: 50px 0px 100px
  }

}

@media (max-width: 575.98px) {

  .section-title h2 {
    font-size: 25px;
    line-height: 30px;
  }

  .secondary_badge {
    font-size: 14px;
  }

  .tax_relief .card-body h5 {
    font-size: 18px;
  }

  .icon_holder {
    left: 20px;
  }

  .tax_relief .card-body {
    padding: 20px 20px 20px 90px
  }

  .learn_more {
    font-size: 13px;
    padding-bottom: 7px;
  }

  .btn {
    width: 145px;
    font-size: 14px;
  }
  .tax_relief{padding:50px 0px 75px}
}