.trp_model_container {
  display: none !important;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
a {
  text-decoration: none;
}
input[type=date]::-webkit-clear-button,
input[type=date]::-webkit-calendar-picker-indicator,
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button {
  display: none;
  -webkit-appearance: none;
}
html,
body {
  text-rendering: optimizeLegibility;
  text-rendering: geometricPrecision;
  -moz-osx-font-smoothing: grayscale;
  /*    font-family:'Cormorant', sans serif;*/
  font-family: 'ltc-bodoni-175', serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  background: #fafbf6;
  color: #040404;
  font-size: 24px;
}
html.overflow,
body.overflow {
  overflow: hidden;
}
html p,
body p {
  font-size: 24px;
  line-height: 32px;
  color: #040404;
  margin-bottom: 38px;
}
html p:last-child,
body p:last-child {
  margin-bottom: 0;
}
html section:first-child,
body section:first-child {
  margin-top: 0 !important;
}
html section:first-child:not(.pageHeaderBlock):not(.imageTitleButtonsBlock),
body section:first-child:not(.pageHeaderBlock):not(.imageTitleButtonsBlock) {
  padding-top: 100px;
}
.contentWrapper {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}
.contentWrapper.medium {
  width: 870px;
}
.bigTitle {
  font-family: 'Sackers Gothic';
  font-weight: 500;
  font-size: 46px;
  line-height: 62px;
  letter-spacing: 0.25px;
  color: #9a171c;
  text-transform: uppercase;
}
.title {
  font-family: 'Sackers Gothic';
  font-weight: 500;
  font-size: 26px;
  line-height: 42px;
  letter-spacing: 0.25px;
  color: #9a171c;
  text-transform: uppercase;
}
.subTitle {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}
.button {
  border: 2px solid #9a171c;
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
  font-family: 'Sackers Gothic';
  color: #9a171c;
  padding: 15px 30px;
  font-weight: 500;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.button:hover {
  background: #9a171c;
  color: #fafbf6;
}
.textLink {
  color: #9a171c;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  font-size: 18px;
  line-height: 24px;
  font-family: 'Sackers Gothic';
  text-transform: uppercase;
}
.textLink:hover:after {
  width: 0;
  left: auto;
  right: 0;
}
.textLink:after {
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: auto;
  width: 100%;
  bottom: 0;
  background: #9a171c;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.infoOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 20;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.infoOverlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.infoOverlay .background {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.infoOverlay .innerOverlay {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 100%;
  max-width: 550px;
  box-sizing: border-box;
  background: #fafbf6;
  color: #040404;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.infoOverlay .innerOverlay .close {
  width: 25px;
  height: 18px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(0deg);
  -moz-transform: translateX(-50%) rotate(0deg);
  -o-transform: translateX(-50%) rotate(0deg);
  -ms-transform: translateX(-50%) rotate(0deg);
  transform: translateX(-50%) rotate(0deg);
  top: -38px;
  position: absolute;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.infoOverlay .innerOverlay .close:hover {
  -webkit-transform: translateX(-50%) rotate(-180deg);
  -moz-transform: translateX(-50%) rotate(-180deg);
  -o-transform: translateX(-50%) rotate(-180deg);
  -ms-transform: translateX(-50%) rotate(-180deg);
  transform: translateX(-50%) rotate(-180deg);
}
.infoOverlay .innerOverlay .close .bar {
  height: 2px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 100%;
  background: #fff;
  display: block;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.infoOverlay .innerOverlay .close .bar:last-child {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.infoOverlay .innerOverlay .innerContent {
  padding: 50px 30px;
  max-height: calc(100vh - 250px);
  overflow: auto;
}
.infoOverlay .innerOverlay .innerContent .title {
  margin-bottom: 20px;
}
form {
  display: block;
  text-align: left;
}
form .field.half {
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 3px);
}
form .field.half.left {
  padding-right: 5px;
}
form .field.half.right {
  padding-left: 5px;
}
form .field input[type="text"],
form .field input[type="tel"],
form .field input[type="email"],
form .field textarea {
  color: #040404;
  padding: 10px 0;
  display: block;
  width: 100%;
  border: none;
  margin-bottom: 20px;
  background: transparent;
  font-size: 24px;
  line-height: 38px;
  font-family: 'Cormorant', sans serif;
  border-bottom: 2px solid #ebebeb;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
form .field input[type="text"].wpcf7-not-valid,
form .field input[type="tel"].wpcf7-not-valid,
form .field input[type="email"].wpcf7-not-valid,
form .field textarea.wpcf7-not-valid {
  border-bottom: 2px solid #c74e4e;
}
form .field input[type="text"]::-webkit-input-placeholder,
form .field input[type="tel"]::-webkit-input-placeholder,
form .field input[type="email"]::-webkit-input-placeholder,
form .field textarea::-webkit-input-placeholder {
  color: rgba(29, 29, 29, 0.4);
}
form .field input[type="text"]::-moz-placeholder,
form .field input[type="tel"]::-moz-placeholder,
form .field input[type="email"]::-moz-placeholder,
form .field textarea::-moz-placeholder {
  color: rgba(29, 29, 29, 0.4);
}
form .field input[type="text"]:-ms-input-placeholder,
form .field input[type="tel"]:-ms-input-placeholder,
form .field input[type="email"]:-ms-input-placeholder,
form .field textarea:-ms-input-placeholder {
  color: rgba(29, 29, 29, 0.4);
}
form .field input[type="text"]:-moz-placeholder,
form .field input[type="tel"]:-moz-placeholder,
form .field input[type="email"]:-moz-placeholder,
form .field textarea:-moz-placeholder {
  color: rgba(29, 29, 29, 0.4);
}
form .field textarea {
  height: 150px;
  resize: none;
}
form .field .wpcf7-not-valid-tip {
  display: none !important;
}
form.sent .wpcf7-response-output {
  background: #dffbdb;
}
form .terms {
  margin-bottom: 20px;
}
form .terms p {
  font-size: 16px;
  line-height: 24px;
  max-width: 600px;
  width: 100%;
}
form .terms a {
  color: #9a171c;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
form .terms a:hover {
  opacity: 0.6;
}
form .terms a:after {
  display: none;
}
form .wpcf7-response-output {
  margin: 20px 0 !important;
  padding: 20px !important;
  background: #f1f1f1;
  font-weight: 600;
  color: #040404 !important;
  border: none !important;
  font-size: 16px;
}
form .submitField .ajax-loader {
  margin-top: 20px !important;
  display: block;
  margin: 0 auto;
}
form .submitField input {
  display: block;
  border: none;
  height: 50px;
  cursor: pointer;
  line-height: 50px;
  text-align: center;
  width: 100%;
  background: #9a171c;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Sackers Gothic';
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
form .submitField input:hover {
  background: #780a0f;
}
.grecaptcha-badge {
  visibility: hidden;
}
@media all and (max-width: 1100px) {
  html p,
  body p {
    font-size: 18px;
    line-height: 26px;
  }
  .bigTitle {
    font-size: 34px;
    line-height: 44px;
  }
  .textLink {
    font-size: 14px;
    line-height: 20px;
  }
}
@media all and (max-width: 1024px) {
  html section:first-child:not(.pageHeaderBlock):not(.imageTitleButtonsBlock),
  body section:first-child:not(.pageHeaderBlock):not(.imageTitleButtonsBlock) {
    padding-top: 50px;
  }
}
@media all and (max-width: 768px) {
  .title {
    font-size: 20px;
    line-height: 30px;
  }
}
/*# sourceMappingURL=default.css.map */