/*===================== TABLE OF CONTENT =======================

1. Reset
2. Body Style
3. Placeholders & Highlights
4. Container & Grid
5. Headings
6. Buttons
7. Form
8. Paddings & Margins
9. Main Content

=============================================================*/
/* ================================================================================== 
1. Reset
===================================================================================== */
:root {
  color-scheme: only light;
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #fff  !important;
      color: #3d3b3a !important;
  }
}
*, *::after, *::before { margin: 0; padding: 0; -webkit-box-sizing: inherit; box-sizing: inherit; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a, a:active, a:hover, a:focus { outline: none; } abbr[title] { border-bottom: 1px dotted; } dfn { font-style: italic; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { border: 0; max-width: 100%; } svg:not(:root) { overflow: hidden; } hr { -webkit-box-sizing: content-box; box-sizing: content-box; height: 0; margin-top: 30px; margin-bottom: 35px; border-width: 0; border-top: 1px solid #e1e1e1; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } input:focus, select:focus, textarea:focus, button:focus { outline: none; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-appearance: textfield; -webkit-box-sizing: content-box; box-sizing: content-box; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } legend { border: 0; padding: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } input, textarea, button, select, a { -webkit-tap-highlight-color: transparent; } a { color: inherit; text-decoration: none; -webkit-transition: all 1.8s ease; -o-transition: all 1.8s ease; transition: all 1.8s ease; } strong { font-weight: 700; }
.fancybox__button--zoo, .fancybox__button--slideshow, .fancybox__button--fullscreen, .fancybox__button--thumbs, .fancybox__button--zoom{
  display: none;
}
.none{
  display: none;
}
ul, ol { padding-left: 4rem; }
section, footer, header{
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.text-center {
	max-width: 130rem;
	width: 100%;
	margin: 0 auto;
	text-align: center;
  text-transform: uppercase;
}
/* ================================================================================== 
2. Body Style
===================================================================================== */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 25%;
  word-wrap: break-word;
}
html {
  filter: invert(0) !important;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
 html {
    font-size: 30%;
  }
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
 
  }
@media only screen and (min-width: 64.0625em) {
    /*1025px*/
  html {
    font-size: 40%;
  }
}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/
  html {
    font-size: 50%;
  }
}
body {
  font-family: "Darker Grotesque", sans-serif;
	font-weight: 500;
	line-height: 1.6;
	color: #2b2a26 !important;
  font-weight: 400;
  font-size: 4.5rem;
  letter-spacing: 4px;
  overflow-x: hidden;
  background-color: #fff  !important;
}
main{
  position: relative;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  body {
    letter-spacing: 5px;
     font-size: 4rem;
  }


}
@media only screen and (min-width: 56.3125em) {
    /*901px*/
  
}
/* ================================================================================== 
3. Placeholders & Highlights
===================================================================================== */
::-webkit-input-placeholder { color: inherit; opacity: 1 !important; }
:-moz-placeholder { color: inherit; opacity: 1; }
::-moz-placeholder { color: inherit; opacity: 1; }
:-ms-input-placeholder { color: inherit; }
::-moz-selection { background-color: #000;  color: #fff; }  
::selection { background-color: #000; color: #fff }
/* ================================================================================== 
4. Container & Grid
===================================================================================== */
.container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 2rem;


}
/* ================================================================================== 
5. Headings
===================================================================================== */
.design h1,.design   h2, .design  h3, .design  h4, .design  h5, .design  h6 {
	margin-bottom: 2rem;
	font-weight: 500;
	line-height: 1.4;
}
/* ================================================================================== 
6. Buttons
===================================================================================== */
.btn-design {
	display: inline-block;
	padding: 2rem 5rem;
	margin-top: 3rem;
	background-color: #efeeeb;
	font-weight: 400;
	letter-spacing: 5px;
	font-size: 3.5rem;
}
.btn-design:hover{
   background-color: #2b2a26;
   color: #fff;
}
.form .btn-design{
  background-color: #D9CAB6;
  border-radius: 1rem;
  text-transform: uppercase;
}
/* ================================================================================== 
7. Form
===================================================================================== */
input, textarea, select {
	display: block;
  border-radius: 0;
	width: 100%;
    border: 1px solid  transparent;
  border-bottom: 2px solid #2b2a26;
	padding: 1.6rem 2rem;
	outline: none;
	background-color: transparent;
}
textarea{
  resize: vertical;
  height: 19rem;
}
input:focus,
textarea:focus, select:focus {
    opacity: 0.9;

}
label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 400;
  color: #2b2a26;
  letter-spacing: 2.3px;
}
button {
  transition: all 1.8s ease-in-out;
  border:0;
  width: 100%;
}
fieldset{
  border: 0;
  margin-bottom: 2rem;
  width: 100% !important;
}
label.check-wrapper {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: none;
}
.check-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 1.5rem;
  width: 1.5rem;
  border: 1px solid #43515a;
  -webkit-transition: all 1.8s ease-in-out;
  -o-transition: all 1.8s ease-in-out;
  transition: all 1.8s ease-in-out;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.check-wrapper input:checked ~ .checkmark:after {
  display: block;
}
.check-wrapper .checkmark::after {
  left: 0.4rem;
  top: 0.2rem;
  width: 0.5rem;
  height: 1rem;
  border: solid #43515a;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 1.8s ease-in-out;
  -o-transition: all 1.8s ease-in-out;
  transition: all 1.8s ease-in-out;
}

/* ================================================================================== 
8. Paddings & Margins
===================================================================================== */
.space {
  padding: 5rem 0;
}
.mt-5{
  margin-top: 5rem;
}
.no-pt{
  padding-top: 0 !important;
}
.no-pb{
  padding-bottom: 0 !important;
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .space {
    padding: 10rem 0;
  }
}
/* ================================================================================== 
9. Main Content
===================================================================================== */


/*---------------*/
.form{
    padding: 0 2rem;
    position: relative;
}
/* .form::after {
	content: '';
	position: absolute;
	top: -8rem;
	right: -3rem;
	width: 32rem;
	height: 33rem;
	background-image: url(images/the-day/tape.png);
	background-repeat: no-repeat;
	background-size: 33rem;
} */
form p{
    margin: 0;
}
form br{
    display: none;
}
.form {
  max-width: 140rem;
  width: 100%;
  margin: 0 auto;
    margin-bottom: 0px;

  margin-bottom: 20rem;
  margin-top: 15rem;

}
.form form{
  max-width: 100rem;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .form::after {
	  right: -8rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .form form{
    max-width: 120rem;
  }
}
/*---------------*/
.design{
  padding: 5rem 0 0 0;

}
.top-text{
  max-width: 100rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
 
}

.top-text h1, .text-counter p {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 7rem;
	letter-spacing: 7px;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .design{
    padding: 10rem 0 0 0;
  }
  .top-text h1, .text-counter p{
    font-size: 4rem;
    letter-spacing: 9px;
  }

}
/*---------------*/
.top-image {
	max-width: 96rem;
	width: 100%;
	margin: 20rem auto;
}
.top-image img{
  display: block;
  width: 100%;
  height: auto;
}
/*---------------*/
.primary-title{
  max-width: 130rem;
  width: 100%;
  margin: 10rem auto 0 auto;
  text-align: center;
}
.primary-title h2{
    font-family: "Pinyon Script", cursive;
    font-size: 12rem;
    margin-bottom: 2rem;
    line-height: 1;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .primary-title h2{
    line-height: 1.4;
      margin-bottom: 0;
  }
}
/*---------------*/
  .date{
    max-width: 130rem;
    width: 100%;
    margin: 0  auto 10rem auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: 3+400;
  }
/*---------------*/

/*-----*/
.counter {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 4rem;
	font-weight: bold;
	margin-top: 2rem;
	gap: 3%;
	max-width: 130rem;
	margin: 0 auto;
	margin-bottom: 10rem;
  padding: 0 2rem;
}
.counter-box {
	display: flex;
	flex-direction: column;
	align-items: center;
  border-radius: 2rem;
  background-color: #D9CAB6;
	padding: 4rem;
	width: 22.7%;
}
.counter-box span {
   font-size: 2.6rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.counter-box span:first-child {
      font-size: 7rem;
  font-weight: bold;
  margin-bottom: 3rem;
  line-height: 1.1;
  letter-spacing: 2px;
}
.middle-dots {
  font-size: 5rem;
  font-weight: bold;
}
.text-counter{
  margin-bottom: 10rem;
  margin-top: 20rem;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .counter-box span:first-child {
    font-size: 8rem;
  }
}
/*----------*/
.title{
  max-width: 130rem;
  width: 100%;
  margin: 0 auto 15rem auto;
}
.title h2{
  font-family: "Pinyon Script", cursive;
  font-size: 14rem;
  text-align: center;

}
br{
  letter-spacing: 1.2;
}
.raspored-wrapper{
  max-width: 140rem;
  width: 100%;
  margin: 0  auto;
  padding: 5rem;
  background-color: #D9CAB6;
  border-radius: 2rem;
  margin-bottom: 20rem;
  position: relative;
}
.bg-new{
 background-color: #D9CAB6;
 margin-top: 25rem;
 padding-top: 10rem;
}
.bg-bottom{
  padding: 15rem 0;
}
/* .raspored-wrapper::after {
	content: '';
	position: absolute;
	top: -8rem;
	right: 13rem;
	width: 10rem;
	height: 23rem;
	background-image: url(images/the-day/clip.png);
	background-repeat: no-repeat;
	background-size: 10rem;
} */
.raspored-row strong{
  color: #2b2a26;
}
.raspored-row:not(:last-child){
  margin-bottom: 10rem;
}
.raspored-row{
  padding-left: 6rem;
  border-left: 3px solid #2b2a26;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .raspored-wrapper{
    padding: 10rem;
  }
  .raspored-row{
    padding-left: 10rem;
  }
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .raspored-wrapper::after {
    width: 16rem;
    height: 36rem;
    background-size: 16rem;
  }
}  
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .title h2{
    font-size: 12rem;
  }

}
/*---------------*/
.bottom-text{
  max-width: 130rem;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 10rem;
  text-align: center;
  text-transform: uppercase;
}
.bottom-text p{
  text-transform: uppercase;
  font-weight: 500;
  font-size: 4rem;
  letter-spacing: 8px;
}
.bottom-title{
  max-width: 130rem;
  width: 100%;
  margin: 20rem auto;

  text-align: center;
}
.bottom-title h2{
    font-family: "Pinyon Script", cursive;
    font-size: 8rem;
    margin-bottom: 10rem;
    line-height: 0.9;
}
/*---------------*/
.bottom-image img{
  display: block;
  width: 100%;
  height: auto;
}
.bottom-image{
  max-width: 130rem;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 15rem;
}
/*---------------*/
.last-text{
  max-width: 130rem;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 10rem;
  text-align: center;
  text-transform: uppercase;
}
/*---------------*/
  .scale-in-center {
    -webkit-animation: scale-in-center 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: scale-in-center 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
  
   @-webkit-keyframes scale-in-center {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes scale-in-center {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
    }
  }
  .hidden{
    opacity: 0;
  }
  .visible {
  
            opacity: 1;
  }
  .line{
    -webkit-animation: line 1.8s ease-out reverse both;
    animation: line 1.8s ease-out reverse both;
  }
   @-webkit-keyframes line {
    0% {
      height: 0;
    }
    100% {
      height: 67rem;
    }
  }
  @keyframes line {
    0% {
        height: 0;
      }
      100% {
        height: 67rem;
      }
  }
  .fadeOut{
    -webkit-animation: fade-out 1.8s ease-out reverse both;
    animation: fade-out 1.8s ease-out reverse both;
  }
   @-webkit-keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  .fade-out-bottom {
    -webkit-animation: fade-out-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) reverse both;
            animation: fade-out-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) reverse both;
  }
   @-webkit-keyframes fade-out-bottom {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
      opacity: 0;
    }
  }
  @keyframes fade-out-bottom {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
      opacity: 0;
    }
  }
  .fade-out-top {
    -webkit-animation: fade-out-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) reverse both;
            animation: fade-out-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) reverse both;
  }
   @-webkit-keyframes fade-out-top {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateY(-50px);
              transform: translateY(-50px);
      opacity: 0;
    }
  }
  @keyframes fade-out-top {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateY(-50px);
              transform: translateY(-50px);
      opacity: 0;
    }
  }
 
  
.tracking-in-expand {
	-webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

 @-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
.slide-in-bottom {
	-webkit-animation: slide-in-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

 @-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-right {
	-webkit-animation: fade-in-right 1.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in-right 1.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

 @-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.slit-in-vertical {
	-webkit-animation: slit-in-vertical 0.45s ease-out both;
	        animation: slit-in-vertical 0.45s ease-out both;
}

 @-webkit-keyframes slit-in-vertical {
  0% {
    -webkit-transform: translateZ(-800px) rotateY(90deg);
            transform: translateZ(-800px) rotateY(90deg);
    opacity: 0;
  }
  54% {
    -webkit-transform: translateZ(-160px) rotateY(87deg);
            transform: translateZ(-160px) rotateY(87deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(0) rotateY(0);
            transform: translateZ(0) rotateY(0);
  }
}
@keyframes slit-in-vertical {
  0% {
    -webkit-transform: translateZ(-800px) rotateY(90deg);
            transform: translateZ(-800px) rotateY(90deg);
    opacity: 0;
  }
  54% {
    -webkit-transform: translateZ(-160px) rotateY(87deg);
            transform: translateZ(-160px) rotateY(87deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(0) rotateY(0);
            transform: translateZ(0) rotateY(0);
  }
}
.fade-in-tl {
	-webkit-animation: fade-in-tl 1.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in-tl 1.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

 @-webkit-keyframes fade-in-tl {
  0% {
    -webkit-transform: translateX(-50px) translateY(-50px);
            transform: translateX(-50px) translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-tl {
  0% {
    -webkit-transform: translateX(-50px) translateY(-50px);
            transform: translateX(-50px) translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
    opacity: 1;
  }
}
.fade-in {
	-webkit-animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
 @-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
.heartbeat {
	-webkit-animation: heartbeat 1.5s ease-in-out infinite both;
	        animation: heartbeat 1.5s ease-in-out infinite both;
}

 @-webkit-keyframes heartbeat {
    from {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: center center;
              transform-origin: center center;
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    10% {
      -webkit-transform: scale(0.91);
              transform: scale(0.91);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    17% {
      -webkit-transform: scale(0.98);
              transform: scale(0.98);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    33% {
      -webkit-transform: scale(0.87);
              transform: scale(0.87);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    45% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
  @keyframes heartbeat {
    from {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: center center;
              transform-origin: center center;
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    10% {
      -webkit-transform: scale(0.91);
              transform: scale(0.91);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    17% {
      -webkit-transform: scale(0.98);
              transform: scale(0.98);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    33% {
      -webkit-transform: scale(0.87);
              transform: scale(0.87);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    45% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
  /* @media only screen and (max-width: 50em) {

  
    body{
      overflow: hidden;
    }
    

  } */
    .grecaptcha-badge{
      display: none !important;
    }
    .wpcf7 form.sent .wpcf7-response-output {
      position: relative !important;
      padding: .75rem 1.25rem !important;
      margin-bottom: 1rem !important;
      border: 1px solid transparent !important;
      border-radius: .25rem !important;
      color: #155724 !important;
      background-color: #d4edda !important;
      border-color: #c3e6cb !important;
      text-align: center !important;
      margin: 0;
      font-size: 16px;
      letter-spacing: 0 !important;
    
    }
    .wpcf7 form.invalid .wpcf7-response-output{
    
      position: relative !important;
      padding: .75rem 1.25rem !important;
      margin-bottom: 1rem !important;
      border: 1px solid transparent !important; 
      border-radius: .25rem !important;
      color: #721c24 !important;
      background-color: #f8d7da !important;
      border-color: #f5c6cb !important;
      text-align: center !important;
      margin: 0;
      font-size: 16px;
      letter-spacing: 0 !important;
    }
    .wpcf7 form.invalid .wpcf7-not-valid-tip {
      text-align: center;
      margin-bottom: 0 !important;
      font-size: 16px !important;
      letter-spacing: 0;
    
    
    }
    .wpcf7-form-control-wrap{
      display: block;
    }
    select, input{
      margin-bottom: 1rem;
    }