@import url("https://fonts.googleapis.com/css2?family=Poppins: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");

@supports (animation: grow 0.5s cubic-bezier(0.25, 0.25, 0.25, 1) forwards) {
  .tick {
    stroke-opacity: 0;
    stroke-dasharray: 29px;
    stroke-dashoffset: 29px;
    animation: draw 0.5s cubic-bezier(0.25, 0.25, 0.25, 1) forwards;
    animation-delay: 0.6s;
  }

  .circle {
    fill-opacity: 0;
    stroke: #219a00;
    stroke-width: 16px;
    transform-origin: center;
    transform: scale(0);
    animation: grow 1s cubic-bezier(0.25, 0.25, 0.25, 1.25) forwards;
  }
}

@keyframes grow {
  60% {
    transform: scale(0.8);
    stroke-width: 4px;
    fill-opacity: 0;
  }

  100% {
    transform: scale(0.9);
    stroke-width: 8px;
    fill-opacity: 1;
    fill: #219a00;
  }
}

@keyframes draw {
  0%,
  100% {
    stroke-opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.thankYou_container {
  width: 100%;
  margin: 70px 0;
  padding: 60px 50px;
  text-align: center;
  box-shadow: 2px 2px 15px -8px #0000002b;
  border-radius: 10px;
}

.thankYou_container .svg-container {
  margin-bottom: 20px;
}
.main_thankyou {
  width: 100%;
  display: block;
}
h2 {
  color: #ad2d14;
}
.inner_thanks {
  max-width: 800px;
  margin: auto;
  padding: 60px 0;
}
.top_container {
  width: 370px;
  margin: 20px auto;
  text-align: center;
  box-shadow: 0px 0px 18px -7px #dddc;
  padding: 30px 15px;
  border-radius: 10px;
}

.top_container h2 {
  text-transform: capitalize;
  line-height: 1.5;
}

.content_show p {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.4;
  color: #565656;
}

.content_show {
  margin: 50px 0;
}
.logo_inner {
  max-width: 1120px;
  margin: auto;
  width: 1120px;
}
.heading {
  text-align: center;
  margin-bottom: 40px;
}

.common_block {
  display: flex;
  justify-content: space-between;
  align-content: center;
}
.logo_block {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  padding: 10px 0;
  box-shadow: 0px 0px 18px -7px #dddc;
}

.logo_block img {
  width: 145px;
  padding: 5px 0;
}
.card_block {
  width: 48%;
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 1px 12px -4px #dddddda8;
}
.time_block span {
  color: #6e2328;
  font-weight: 600;
}
p a {
  color: #ad2d14;
}
.time_block p {
  margin: 10px 0;
  font-size: 14px;
}
.card_block h3 {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 20px;
}

.map iframe {
  width: 100%;
  height: 250px;
}

a.map_btn {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  background-color: #6e2328;
  border: 0;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 15px 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 30px;
  font-weight: 600;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  margin-top: 10px;
}

/*==============  Media Query For Website Responsive ============== */
@media only screen and (max-width: 1199px) {
  .logo_inner {
    max-width: 100%;
    width: 100%;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 991px) {
  .inner_thanks {
    max-width: 100%;
    padding: 60px 30px;
  }
}

@media only screen and (max-width: 767px) {
  .common_block {
    flex-direction: column;
  }
  .card_block {
    width: 350px;
    margin: 0 auto 20px;
  }
}

@media only screen and (max-width: 480px) {
  .inner_thanks {
    max-width: 100%;
    padding: 30px 20px;
  }
  .top_container {
    width: 100%;
    padding: 20px 10px;
  }
  .top_container h2 {
    font-size: 20px;
  }
  .content_show p {
    text-align: justify;
    font-size: 13px;
  }
  .heading {
    margin-bottom: 30px;
  }
  .card_block h3 {
    font-size: 15px;
  }
  .map iframe {
    width: 100%;
    height: 180px;
  }
  a.map_btn {
    font-size: 13px;
    padding: 10px 20px;
  }
  .card_block {
    width: 100%;
  }
}

@media only screen and (max-width: 400px) {
}

/*==============  Media Query For Website Responsive ============== */
