/* common css ******************************************************************************/

/* font-family ************************************************************************** */

@font-face {
  font-family: "Montserrat-Bold";
  src: url("../fonts/Montserrat/Montserrat-Bold.ttf");
}
@font-face {
  font-family: "Montserrat-ExtraBold";
  src: url("../fonts/Montserrat/Montserrat-ExtraBold.ttf");
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url("../fonts/Montserrat/Montserrat-Medium.ttf");
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf");
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf");
}
@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/gilroy/Gilroy-Bold.ttf");
}
@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/gilroy/Gilroy-Medium.ttf");
}
@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/gilroy/Gilroy-Regular.ttf");
}
@font-face {
  font-family: "Gilroy-SemiBold";
  src: url("../fonts/gilroy/Gilroy-SemiBold.ttf");
}
@font-face {
  font-family: "BOSQUE";
  src: url("../fonts/bosque/BOSQUE.otf");
}
@font-face {
  font-family: "GOTHAM-BOLD";
  src: url("../fonts/gotham/GOTHAM-BOLD.TTF");
}
@font-face {
  font-family: "Gotham-Book";
  src: url("../fonts/gotham/Gotham-Book.otf");
}
@font-face {
  font-family: "Gotham-Light";
  src: url("../fonts/gotham/Gotham-Light.otf");
}
@font-face {
  font-family: "Gotham-Medium";
  src: url("../fonts/gotham/Gotham-Medium.otf");
}

:root {
  --white: #fff;
  --black: #000;
  --red: #e54a45;
  --red-CD4D4B: #cd4d4b;
  --carrot: #e64c4a;
  --pink: #d13253;
  --pink-E03984: #e03984;
  --dark-gray: #514f4f;
  --light-gray: #edece7;
  --gray-2D2B2B: #2d2b2b;
  --gray-707070: #707070;
  --gray-42484E: #42484e;
  --gray-5E6165: #5e6165;
  --gray-A1ACB9: #a1acb9;
  --orange: #ed872c;
  --orange-FFA323: #ffa323;
  --orange-ED732C: #ed732c;
  --orange-FF7700: #ff7700;
  --purple: #6a70b4;
  --light-green: #afbb3d;
  --green-9BA160: #9ba160;
  --dark-yellow: #9d803c;
  --blue-3F82E1: #3f82e1;
  --green-38E0AA: #38e0aa;
  --dark-blue: #143a68;
  --blue-3D455B: #3d455b;
  --yellow: #ffd247;
  --light-yellow: #fff314;
  --light-orange: #fcc7a3;
  --dark-blue: #282d46;
  --light-blue: #59bddd;
}
.white {
  color: var(--white) !important;
}
.black {
  color: var(--black) !important;
}
.red {
  color: var(--red) !important;
}
.pink {
  color: var(--pink) !important;
}
.orange {
  color: var(--orange) !important;
}
.purple {
  color: var(--purple) !important;
}
.dark-yellow {
  color: var(--dark-yellow) !important;
}
.dark-blue {
  color: var(--dark-blue) !important;
}
.light-yellow {
  color: var(--light-yellow) !important;
}
.gray {
  color: var(--gray-707070);
}
.bg-red {
  background-color: var(--red-CD4D4B);
}
.bg-pink {
  background-color: var(--pink-E03984);
}
.bg-green {
  background-color: var(--green-38E0AA);
}
.bg-blue {
  background-color: var(--blue-3F82E1);
}
.bg-orange {
  background-color: var(--orange-FFA323);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
.common::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--black);
}
body {
  background: var(--white);
  font-family: "Montserrat-Regular";
}
body.show {
  position: fixed;
  top: 0;
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--dark-gray);
  font-family: "Montserrat-SemiBold";
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
h1 {
  font-size: 52px;
}
h2 {
  font-size: 44px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 28px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}
p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: var(--dark-gray);
  font-family: "Montserrat-Regular";
}
p:last-child {
  margin-bottom: 0;
}
.small {
  font-size: 16px;
}
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
}
span {
  display: inline-block;
}
.section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.section-heading h2 {
  text-transform: uppercase;
  font-family: "Montserrat-ExtraBold";
  margin: 0;
  font-size: 45px;
}

.section-heading h4 {
  text-transform: uppercase;
  font-family: "Montserrat-SemiBold";
  font-size: 28px;
}
strong {
  font-family: "Montserrat-SemiBold";
}

/* .btn-common {
	font-size: 20px;
	padding: 12px 40px;
	background: #000a20;
	color: #cbccd0 !important;
	border-radius: 10px;
	border: 1px solid transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
} */

.btn-common {
  font-size: 20px;
  padding: 12px 20px;
  background: #f58220;
  background: linear-gradient(
    180deg,
    rgba(245, 130, 32, 1) 0%,
    rgba(220, 26, 26, 1) 100%
  );
  color: #f5f7fc !important;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  font-family: "BOSQUE";
  width: 170px;
}

.btn-common img {
  max-width: 30px;
  margin-right: 10px;
}
section {
  padding-bottom: 40px;
  overflow: hidden;
}
.bg {
  padding: 40px 0;
}
.mobile {
  display: none !important;
}
.desktop {
  display: block !important;
}
img,
video {
  max-width: 100%;
}
.button-box {
  padding-top: 20px;
}
.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.owl-theme .owl-dots .owl-dot span {
  background: var(--white);
  border-radius: 3px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--red) !important;
  outline: none;
}
.owl-carousel .owl-dots.disabled {
  display: block;
  margin-top: 40px !important;
}
.owl-nav {
  margin-top: 0;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav button.owl-prev {
  left: -70px;
}
.owl-nav button.owl-next {
  right: -60px;
}
.owl-nav button img {
    max-width: 40px;
    width: 100%;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
}
.form-control-common {
  background: var(--white);
  border: 1px solid var(--black);
  font-size: 20px;
  padding: 15px 50px 15px 20px;
  width: 100%;
  appearance: textfield;
  color: var(--black);
  border-radius: 0;
  box-shadow: none;
  resize: none;
  outline: none;
}
.input-group {
  padding-bottom: 30px;
}

input[type="email"] {
  text-transform: lowercase !important;
}

input[type="email"]::placeholder {
  text-transform: capitalize !important;
}


.form-control-common ::placeholder {
 color: #707070;
}
.form-control-common::-webkit-input-placeholder{
   color: #707070;
}
.form-control-common::-moz-placeholder{
  color: #707070;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
#header.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 1000;
  box-shadow: 0 0 10px 2px var(--black);
}
#header {
  /* background: #fff; */
  background: linear-gradient(
    90deg,
    rgba(251, 251, 252, 1) 0%,
    rgba(217, 221, 228, 1) 100%
  );
  padding: 14px 0;
  transition: 0.5s all;
  position: relative;
}
#header .header-box {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
#header .logo-box img {
  max-width: 80px;
  width: 100%;
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 50px;
  height: 30px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
  width: 30px;
  height: 3px;
  background: var(--black);
  transition: 0.5s all ease-in-out;
  position: relative;
  border-radius: 5px;
}

#header .main-nav .click-menu span:nth-child(2) {
  background: #ffb100;
  width: 45px;
}

#header .main-nav .cancel-menu span {
  position: absolute;
  height: 4px;
}
#header .main-nav .cancel-menu span:first-child {
  transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
  transform: rotate(-45deg);
}
#header .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
  padding-bottom: 10px;
}
#header .button-box {
  margin-left: 20px;
  padding-top: 0;
}
#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 20px;
}
#header .main-nav nav ul li a {
  color: var(--gray-5E6165);
  padding: 5px;
  font-size: 16px;
  transition: 0.5s;
  position: relative;
  font-family: "Gotham-Book";
}
#header .main-nav nav ul li a.active {
  color: var(--red);
}

#header .main-nav nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border: 1px solid var(--red);
  transition: 0.5s;
  opacity: 0;
}
#header .main-nav nav ul li a:hover::after {
  width: 100%;
  opacity: 1;
}

/* homeBanner css ******************************************************************************/
#homeBanner video {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  display: block;
}

/* video::-webkit-media-controls-play-button {
  background: #f1f1f1;
  background: linear-gradient(
    166deg,
    rgba(241, 241, 241, 1) 0%,
    rgba(226, 185, 49, 1) 100%
  );
  border-radius: 50%;
  color: white;
  outline: none;
} */

/* chaalo css ******************************************************************************/

#chaalo .chaalo-part {
  background: url("../images/chaalo-bg.png");
  background-size: 100% 100%;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
}
.flower-img {
  position: absolute;
  left: 0;
  transform: translate(-50%, -50%);
  top: 50%;
  opacity: 0.2;
  max-width: 20%;
}
#chaalo .text-box {
  text-align: center;
  width: 70%;
  margin: 0 auto 30px;
  padding: 0 15px;
}
#chaalo .img-box img {
  max-width: 40%;
  margin: 0 auto;
  display: flex;
}
.chaalo-box .section-heading{
  padding: 0 15px;
}
#gujarat-2015 .box.box-2 {
    margin-bottom: 50px;
}
#chaalo .events {
  margin-top: 20px;
}

#chaalo .events .title {
  margin-bottom: 20px;
    padding: 0 15px;
}

#chaalo .events .title h3 {
  font-family: "Montserrat-SemiBold";
  font-size: 36px;
  text-align: center;
  text-transform: uppercase;
}

#chaalo .events .events-box {
  /* display: flex; */
  /* justify-content: center;
  align-items: center;
  column-gap: 100px;
  row-gap: 50px;
  flex-wrap: wrap; */
  margin-top: 60px;
}
#chaalo .events-box .nav-tabs {
    justify-content: center;
    column-gap: 100px;
    row-gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 100px;
    border: 0;
    padding: 0 15px;
}
#gujarat-2012 {
    background: var(--white);
}
#chaalo .events-box .nav-tabs .nav-link {
    border: 0;
}
#chaalo .events-box .nav-tabs .nav-link.active,
#chaalo .events-box .nav-tabs .nav-item.show .nav-link {
    background: transparent;
    border: 0;
}
#chaalo .events .events-box .boxes {
  border-radius: 50%;
  padding: 20px 20px;
  width: 150px;
  height: 150px;
  position: relative;
  /* outline: 2px solid var(--white); */
  outline-offset: 6px;
  z-index: 1;
  text-align: center;
  place-content: center;
}
#chaalo .events .events-box .boxes h5 {
  color: var(--white);
  font-family: "Montserrat-Medium";
  font-size: 22px;
  margin-bottom: 10px;
}
#chaalo .events .events-box .boxes.box-3 h5 {
  color: var(--dark-blue);
}
#chaalo .events .events-box .boxes p {
  font-family: "Montserrat-SemiBold";
  color: var(--white);
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
}
#chaalo .events .events-box .boxes.box-3 p {
  color: var(--blue-3D455B);
}

#chaalo .events .events-box .boxes .bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 200px;
}
#chaalo .events .events-box .boxes .bg-img img {
  height: 220px;
  width: 220px;
}
/* history css ******************************************************************************/

#gujarat-2006 .history-part {
  background-color: var(--yellow);
}

.history h4,
.history h6,
.history p {
  color: var(--gray-2D2B2B);
}
.history .row {
  align-items: center;
}
.history .history-part {
  position: relative;
}

#gujarat-2006 .box,
#gujarat-2015 .box {
  width: 80%;
  margin-left: auto;
}
#gujarat-2006 .box.box-2,
#gujarat-2015 .box.box-2 {
  margin-left: 20px;
  padding: 0 40px 0 0;
}

#gujarat-2006 .star-img {
  position: absolute;
  bottom: 0;
  right: -30%;
  max-width: 80%;
  max-height: 80%;
}

.history .highlight .title {
    margin: 60px 0 30px;
}
.history .highlight .title h4 {
  text-transform: uppercase;
  text-align: center;
  font-family: "Montserrat-Medium";
}

.highlight-slider{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
   position: relative;
    z-index: 1;
}
.history .item {
  cursor: pointer;
  place-content: center;
  width: 25%;
  padding: 0 15px;
  margin-bottom: 20px;
}
.history .item .item-inner{
  padding: 45px;
  background-color: var(--white);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.history .item img.design {
  max-width: 50px;
  display: flex;
  margin: 0 auto 25px;
}
.history .item h5 {
  text-align: center;
  font-size: 20px;
}
.history .item p {
  font-family: "Montserrat-SemiBold";
  text-align: center;
  font-size: 16px;
  color: var(--dark-gray);
}
.history .item img.women-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.history .item:hover img.women-img {
  opacity: 1;
}
.history .owl-stage {
  display: flex;
  height: 100%;
}

.history .text-box {
  text-align: center;
  margin: 20px auto;
  width: 70%;
}
.history .box.box-2 {
  width: 60%;
  padding: 0 40px;
}

#gujarat-2008 .history-part {
  background-size: contain;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(254, 251, 244, 0.65) 34%,
      rgba(252, 242, 219, 1) 71%,
      rgba(251, 238, 208, 1) 100%
    ),
    url("../images/chaalo-bg.png");
  position: relative;
}

#gujarat-2008 .flower-img {
  opacity: 1;
}
#gujarat-2008 .item .item-inner{
  background-color: var(--orange);
}

#gujarat-2008 .owl-theme .owl-dots .owl-dot span {
  background: #b9b7a3;
}
#gujarat-2008 .section-heading,
#gujarat-2012 .section-heading {
  text-align: left;
}
#gujarat-2008 .section-heading h2,
#gujarat-2012 .section-heading h2 {
  line-height: 0.9;
  margin-bottom: 8px;
}
#gujarat-2012 .flower-img {
  right: 40px;
  left: unset;
  transform: translate(50%, -50%);
  top: 50%;
  opacity: 1;
  max-width: 10%;
}

#gujarat-2012 .item .item-inner{
  background-color: var(--light-orange);
}
#gujarat-2012 .owl-theme .owl-dots .owl-dot span,
#gujarat-2015 .owl-theme .owl-dots .owl-dot span {
  background: #e2dbc3;
}

#gujarat-2015 .history-part {
  background: #afbb3d;
  background: linear-gradient(
    180deg,
    rgba(175, 187, 61, 1) 48%,
    rgba(246, 242, 231, 1) 48%
  );
}

#gujarat-2015 .flower-img {
  opacity: 1;
  top: 48%;
}

#gujarat-2015 .item .item-inner{
  background-color: var(--green-9BA160);
}

#gujarat-2025 .history-part {
  background-color: var(--carrot);
}

#gujarat-2025 .box.box-1 {
  margin-top: -30%;
}

#gujarat-2025 .box.box-1 img {
  max-height: 900px;
  width: 100%;
}
/* #gujarat-2025 .history-part::before {
  content: "";
  background-image: url("../images/flag.png");
  height: 100%;
  width: 100%;
  top: 0;
  position: absolute;
  background-repeat: no-repeat;
  background-size: 50% 100%;
} */

#gujarat-2025 .box.box-2 .title h5 {
  color: var(--white);
  font-family: "Montserrat-Regular";
  font-size: 28px;
}
#gujarat-2025 .box.box-2 .text p {
  color: var(--white);
}
#gujarat-2025 .box.box-2 .title h4 {
  color: var(--light-yellow);
  font-family: "Montserrat-Medium";
}

#gujarat-2025 .glasses {
  display: flex;
  justify-content: end;
  margin: 30px 0 10px;
}

#gujarat-2025 .glasses img {
  max-width: 40%;
}

#gujarat-2025 .flower-img {
  left: unset;
  transform: translate(50%, -50%);
  opacity: 1;
  max-width: 10%;
  right: 0px;
}

.flower-wrapper .flower-img {
   transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); 
}

#chaalo .flower-wrapper .flower-img {
    left: -160px;
    top: 15%;
}
 @keyframes rotate-flower {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* landmark css ******************************************************************************/

#landmark .landmark-part {
  background: url("../images/landmark-bg.png") no-repeat;
  background-size: 100% 100%;
}
#landmark .landmark-part .item {
  display: grid;
  background-color: var(--orange-ED732C);
  grid-template-columns: 60% 1fr;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  height: 100%;
}
#landmark .owl-stage-outer {
  display: flex;
  height: 100%;
}

#landmark .landmark-part .img-box {
  max-width: 100%;
  max-height: 450px;
  overflow: hidden;
  border-radius: 30px;
}
#landmark .landmark-part .img-box img {
  height: 100%;
  width: 100%;
}

#landmark .landmark-part .flower-box {
  max-width: 20%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 60%;
}

#landmark .landmark-part .text-box {
  place-content: center;
  padding: 20px 50px;
  width: 80%;
  margin: 0 auto;
}
#landmark .landmark-part .text-box h6 {
  color: var(--white);
  font-family: "Montserrat-Medium";
  text-transform: uppercase;
  line-height: 1;
  font-size: 22px;
}

#landmark .landmark-part .text-box p {
  color: var(--white);
  font-family: "Montserrat-Medium";
  font-size: 16px;
}

#landmark .owl-theme .owl-dots .owl-dot span {
  background: #e2dbc3;
}

#events .events-part {
  position: relative;
}

#events .img-box {
  display: flex;
  justify-content: center;
}

#events .flower-img {
  top: 25%;
  opacity: 1;
  max-width: 15%;
}

/* attendees css ******************************************************************************/

#attendees .attendees-part {
  position: relative;
}

#attendees .owl-theme .owl-dots .owl-dot span {
  background: #e2dbc3;
}

#attendees .item {
  height: 100%;
}
.owl-stage {
  height: 100%;
  display: flex;
}
#attendees .owl-item img {
  height: 100%;
  object-fit: cover;
}

#attendees .nav-pills .nav-link.active {
  color: var(--red);
  background-color: transparent;
}

#attendees .nav-pills .nav-link {
  color: var(--gray-5E6165);
  font-family: "Gotham-Book";
  font-size: 18px;
  padding: 5px;
}
#attendees .nav-pills {
  justify-content: center;
  column-gap: 10px;
  margin-bottom: 20px !important;
}

#attendees .flower-img {
  right: -30px;
  transform: unset;
  left: unset;
  top: 0;
  opacity: 1;
  max-width: 5%;
}

/* join css ******************************************************************************/

#join .join-box {
  background-color: var(--light-gray);
  position: relative;
  padding-bottom: 60px;
  padding-inline: 15px;
}

#join .section-heading {
  margin-bottom: 20px;
}

#join .section-heading h2 {
  color: var(--orange-FF7700);
  font-family: "Montserrat-Medium";
  text-transform: capitalize;
  font-size: 38px;
}

#join .text-box {
  text-align: center;
}

#join .text-box p {
  margin-bottom: 0;
}

#join .button-box {
  position: absolute;
  bottom: -10%;
  transform: translateX(-50%);
  left: 50%;
}

.association img {
  width: 100%;
  max-width: 300px;
  display: flex;
  margin: 10px auto;
}

/* footer css ******************************************************************************/

#footer {
  background-color: var(--gray-42484E);
}
#footer .footer-part {
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
}

#footer .footer-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-A1ACB9);
  font-size: 20px;
  column-gap: 20px;
  row-gap: 20px;
}

#footer .copywrite p {
  color: var(--gray-A1ACB9);
  font-size: 20px;
}
.social-box ul {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 100px;
}

#join-now-modal .title-bx h6 {
    text-align: center;
    text-transform: uppercase;
    color: var(--black);
}
#join-now-modal .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 999;
}
#join-now-modal .btn-close:focus,
#join-now-modal .form-control.form-control-common:focus{
  box-shadow:none;
}
#join-now-modal .title-bx {
    margin-bottom: 20px;
}
#join-now-modal .btn-common.submit-btn {
    border: 0;
    margin-top: 20px;
}
#join .button-box .btn-common {
    cursor: pointer;
}
#join-now-modal .form-control.form-control-common {
    border: 0;
    border-bottom: 1px solid #FF7700;
    font-size: 15px;
}
#join-now-modal span.wpcf7-form-control-wrap{
  display: block;
}
#join-now-modal .wpcf7-not-valid-tip{
    font-size: 15px;
}
#join-now-modal .wpcf7 form .wpcf7-response-output{
  text-align: center;
}
#join-now-modal .wpcf7-form.failed .wpcf7-response-output{
  border-color: #00cc00;
}