/*
RULES:
- font-family: 'name-name' with spaces the font face won't work
- src: url('') format('') -> firefox won't pick up this font without
- assets: filename without spaces -
- variable font, format('truetype supports variations')
*/
@font-face {
  font-family: "open-sans";
  src: url("../assets/fonts/OpenSans-VariableFont_wdth_wght.ttf") format("truetype-variations"), url("../assets/fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "poppins-med";
  src: url("../assets/fonts/Poppins-Medium.ttf") format("truetype");
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
}

.noscroll, .overflow-hidden {
  overflow: hidden;
}

body {
  background-color: #FFFFFF;
}

h1, .h1 {
  font-style: normal;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.2;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 38px;
    font-size: 3.8rem;
  }
}
@media (min-width: 1024px) {
  h1, .h1 {
    font-size: 48px;
    font-size: 4.8rem;
  }
}

h2, .h2 {
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media (min-width: 1024px) {
  h2, .h2 {
    font-size: 42px;
    font-size: 4.2rem;
  }
}

h3, .h3 {
  font-style: normal;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.2;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media (min-width: 1024px) {
  h3, .h3 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

h4, .h4 {
  font-style: normal;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.2;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  h4, .h4 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

sup {
  font-size: 13px;
}

.f-text-container p + p {
  margin-top: 15px;
}

.f-text-container ol, .f-text-container ul {
  list-style: revert;
  padding-left: 19px;
}

.text-center {
  text-align: center;
}

div.section-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 15px;
}
div.section-inner.section-small {
  max-width: 1000px;
}
div.section-inner a:not(.btn-link) {
  color: #2e5eaf;
  text-decoration: underline;
}

a.btn-link {
  transition: all 0.2s ease, visibility 0s;
  background: #193669;
  color: #FFFFFF;
  box-sizing: border-box;
  text-decoration: none;
  min-height: 40px;
  padding: 10px 35px;
}
a.btn-link:hover {
  background: #AFC7EC;
  color: #193669;
}

a.link-a {
  text-decoration: none;
  width: fit-content;
  max-width: max-content;
  min-width: 125px;
  display: inline-block;
  text-align: center;
  padding: 10px 15px;
  border: 1px solid yellow;
  background-color: yellow;
  border-radius: 25px;
  color: #000000;
}
a.link-b {
  text-decoration: none;
  color: orangered;
  font-size: 18px;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}

:root {
  --font-fallback: BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-sans;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  font-family: "open-sans", var(--font-fallback);
  font-weight: normal;
  line-height: 1.7;
  font-size: 16px;
  font-size: 1.6rem;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

strong, b {
  font-variation-settings: "wght" 700;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "poppins-med", var(--font-fallback);
}

footer.footer {
  background: #f8f8f8;
  padding: 25px 0 5px;
}
footer.footer .footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}
footer.footer .footer-inner .footer-columns {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 768px) {
  footer.footer .footer-inner .footer-columns {
    flex-direction: column;
  }
}
footer.footer .footer-inner .footer-columns .footer-column {
  width: 33%;
  text-align: center;
}
@media (max-width: 768px) {
  footer.footer .footer-inner .footer-columns .footer-column {
    width: 100%;
  }
}
footer.footer .footer-inner .footer-columns .footer-column a {
  color: #000000;
  text-decoration: none;
}
footer.footer .footer-inner .footer-columns .footer-column a.social-icon {
  padding: 5px;
}
footer.footer .footer-inner .footer-bottom {
  text-align: center;
  padding: 5px;
  font-size: 14px;
}
footer.footer .footer-inner .footer-bottom a {
  text-decoration: none;
  color: inherit;
}

.header-max {
  max-width: 1300px;
  margin: 0 auto;
}

.header-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 15px;
  padding: 15px;
  min-height: 90px;
}
@media (min-width: 650px) {
  .header-inner {
    padding: 30px;
  }
}
@media (min-width: 768px) {
  .header-inner {
    padding: 15px 60px;
  }
}
.header-inner .left img {
  display: block;
  width: auto;
  height: auto;
  max-height: 90px;
}
.header-inner .right {
  display: flex;
  justify-content: flex-end;
  padding-top: 10px;
  position: relative;
}
@media (min-width: 900px) {
  .header-inner .right #nav-mobile {
    display: none;
  }
}
@media (min-width: 900px) {
  .header-inner .right {
    padding-top: 0;
    align-items: center;
  }
}
.header-inner .right nav#nav-desktop {
  display: none;
}
@media (min-width: 900px) {
  .header-inner .right nav#nav-desktop {
    display: block;
  }
}
.header-inner .right nav#nav-desktop .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  background-color: #326BCD;
  z-index: 999;
}
.header-inner .right nav#nav-desktop .menu > .menu-item {
  position: relative;
  /* Show submenu on hover */
}
.header-inner .right nav#nav-desktop .menu > .menu-item.current-menu-item > a {
  background-color: #193668;
}
.header-inner .right nav#nav-desktop .menu > .menu-item > a {
  display: block;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.header-inner .right nav#nav-desktop .menu > .menu-item > a:hover {
  background-color: #193668;
}
@media (max-width: 1105px) {
  .header-inner .right nav#nav-desktop .menu > .menu-item > a {
    padding: 12px;
  }
}
@media (max-width: 991px) {
  .header-inner .right nav#nav-desktop .menu > .menu-item > a {
    padding: 12px 8px;
    font-size: 14px;
  }
}
.header-inner .right nav#nav-desktop .menu > .menu-item.left-menu .sub-menu {
  left: auto;
  right: 0;
}
.header-inner .right nav#nav-desktop .menu > .menu-item .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #326BCD;
  min-width: 200px;
  display: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 999;
}
.header-inner .right nav#nav-desktop .menu > .menu-item .sub-menu .menu-item {
  position: relative;
}
.header-inner .right nav#nav-desktop .menu > .menu-item .sub-menu .menu-item.current-menu-item > a {
  background-color: #193668;
}
.header-inner .right nav#nav-desktop .menu > .menu-item .sub-menu .menu-item a {
  display: block;
  padding: 7px 15px;
  color: white;
  text-decoration: none;
  white-space: nowrap;
}
.header-inner .right nav#nav-desktop .menu > .menu-item .sub-menu .menu-item a:hover {
  background-color: #193668;
}
.header-inner .right nav#nav-desktop .menu > .menu-item:hover > .sub-menu {
  display: block;
}

.custom-table {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: auto;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  /* Responsive Design */
}
.custom-table .custom-table-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding: 10px;
}
.custom-table .custom-table-row:last-child {
  border-bottom: none;
}
.custom-table .custom-table-row.header {
  background: #193669;
  color: white;
  font-weight: bold;
}
.custom-table .custom-table-row .cell {
  flex: 1;
  min-width: 150px;
  padding: 8px;
  text-align: center;
  align-content: center;
}
.custom-table .custom-table-row .cell .sub-cell.blue {
  color: #2e5eaf;
}
.custom-table .custom-table-row .inactive {
  background: #AFC7EC;
}
@media (max-width: 768px) {
  .custom-table .custom-table-row {
    flex-direction: column;
    text-align: left;
  }
  .custom-table .custom-table-row .cell {
    min-width: unset;
    text-align: left;
  }
  .custom-table .custom-table-row.header {
    display: none;
  }
}

#site-navigation {
  position: fixed;
  background: #193669;
  transform: translateX(-100%);
  transition: all 0.3s ease;
  margin: 0;
  top: 119px;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  overflow-y: scroll;
}
#site-navigation.active {
  transform: translateX(0);
}
#site-navigation .slide-navigation-inner {
  height: fit-content;
  padding: 30px 15px 95px 15px;
}
#site-navigation .slide-navigation-inner .slide-menu {
  list-style: none;
  text-align: center;
}
#site-navigation .slide-navigation-inner .slide-menu li {
  display: block;
  margin-bottom: 30px;
}
#site-navigation .slide-navigation-inner .slide-menu li:last-child {
  margin-bottom: 0;
}
#site-navigation .slide-navigation-inner .slide-menu li a {
  color: #FFFFFF;
  text-decoration: none;
  line-height: 1;
  font-size: 2rem;
}
#site-navigation .slide-navigation-inner .slide-menu li a.special {
  background-color: yellow;
  color: #000000;
  border-radius: 24px;
  min-width: 200px;
  width: fit-content;
  max-width: max-content;
  margin: 15px auto 0 auto;
  padding: 10px 30px;
  display: block;
}

#nav-mobile {
  background: none;
  outline: none;
  border: none;
  width: 40px;
  height: 25px;
  position: absolute;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  top: 50%;
  transform: translateY(-30%);
  right: 0;
}
#nav-mobile span {
  display: block;
  position: absolute;
  height: 4px;
  border-radius: 10px;
  width: 100%;
  background: #193669;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#nav-mobile span:nth-child(1) {
  top: 0px;
}
#nav-mobile span:nth-child(2), #nav-mobile span:nth-child(3) {
  top: 10px;
}
#nav-mobile span:nth-child(4) {
  top: 20px;
}
#nav-mobile.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}
#nav-mobile.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#nav-mobile.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#nav-mobile.open span:nth-child(4) {
  top: 20px;
  width: 0%;
  left: 50%;
}

div.f-hero-inner {
  position: relative;
  min-height: fit-content;
  min-height: 350px;
  background-color: rgba(25, 54, 105, 0.5);
  max-width: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  div.f-hero-inner {
    min-height: 250px;
  }
}
div.f-hero-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
div.f-hero-inner .f-title-container {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  text-align: center;
}
div.f-hero-inner .f-title-container h1, div.f-hero-inner .f-title-container h2 {
  margin-bottom: 15px;
}
div.f-hero-inner .f-title-container .f-link-container {
  margin-top: 30px;
}
div.f-hero-inner .f-title-container .custom-text {
  font-size: 18px;
}

div.f-hero-carousel-inner .hero-slide {
  position: relative;
  min-height: fit-content;
  height: 500px;
  background-color: rgba(25, 54, 105, 0.4);
  max-width: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  div.f-hero-carousel-inner .hero-slide {
    height: 350px;
  }
}
div.f-hero-carousel-inner .hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
div.f-hero-carousel-inner .hero-slide .f-title-container {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  text-align: center;
}
div.f-hero-carousel-inner .hero-slide .f-title-container h1, div.f-hero-carousel-inner .hero-slide .f-title-container h2 {
  margin-bottom: 15px;
}
div.f-hero-carousel-inner .hero-slide .f-title-container .f-link-container {
  margin-top: 30px;
  text-align: center;
}

.f-selection-sponsors .f-selection-sponsors-inner {
  padding: 50px 0;
}
.f-selection-sponsors .f-title-container h1, .f-selection-sponsors .f-title-container h2 {
  text-align: center;
  color: #2e5eaf;
}
.f-selection-sponsors .f-text-container {
  color: #2e5eaf;
}
.f-selection-sponsors .f-post-container {
  margin-top: 20px;
  padding: 0 35px;
}
.f-selection-sponsors .f-post-container .f-post-sponsors.slider {
  max-width: 1000px;
  margin: 0 auto;
}
.f-selection-sponsors .f-post-container .f-post-sponsors.slider .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}
.f-selection-sponsors .f-post-container .f-post-sponsors.slider .slick-slide img {
  width: 100%;
  height: auto;
  padding: 25px;
}
.f-selection-sponsors .f-post-container .f-post-sponsors.slider .slick-prev:before,
.f-selection-sponsors .f-post-container .f-post-sponsors.slider .slick-next:before {
  color: #2e5eaf;
}
.f-selection-sponsors .f-post-container .f-post-sponsors.grid {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: fit-content(100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  align-items: center;
  justify-items: center;
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (min-width: 650px) {
  .f-selection-sponsors .f-post-container .f-post-sponsors.grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .f-selection-sponsors .f-post-container .f-post-sponsors.grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.f-selection-sponsors .f-post-container .f-post-sponsors.grid img {
  width: auto;
  height: auto;
  max-height: 220px;
  max-width: 100%;
}

.f-iframe.section .f-iframe-inner .f-title-container {
  text-align: center;
}
.f-iframe.section iframe.standings-iframe {
  width: 100%;
  max-width: 1000px;
  height: 95vh;
  padding: 2.5vh 0;
  box-sizing: content-box;
  display: table;
  margin: 0 auto;
}

.f-image_text.section-small .f-image_text-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.f-image_text.section-small .f-image_text-inner .f-post-container .text-column {
  width: 65%;
}
.f-image_text.section-small .f-image_text-inner .f-post-container .image-column {
  width: 35%;
}
@media (max-width: 768px) {
  .f-image_text.section-small .f-image_text-inner .f-post-container .text-column,
  .f-image_text.section-small .f-image_text-inner .f-post-container .image-column {
    width: 100%;
  }
}
.f-image_text .f-image_text-inner {
  padding: 50px 0;
}
.f-image_text .f-image_text-inner .f-post-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.f-image_text .f-image_text-inner .f-post-container[data-layout=image_left] {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .f-image_text .f-image_text-inner .f-post-container[data-layout=image_left] {
    flex-direction: column;
  }
}
.f-image_text .f-image_text-inner .f-post-container[data-layout=image_left] .text-column {
  text-align: left;
}
@media (max-width: 768px) {
  .f-image_text .f-image_text-inner .f-post-container {
    flex-direction: column;
  }
}
.f-image_text .f-image_text-inner .f-post-container .text-column {
  text-align: right;
}
.f-image_text .f-image_text-inner .f-post-container .text-column,
.f-image_text .f-image_text-inner .f-post-container .image-column {
  width: 50%;
  padding: 15px;
}
@media (max-width: 768px) {
  .f-image_text .f-image_text-inner .f-post-container .text-column,
  .f-image_text .f-image_text-inner .f-post-container .image-column {
    width: 100%;
    padding: 10px;
    text-align: left;
  }
}
.f-image_text .f-image_text-inner .f-post-container .image-column {
  text-align: center;
}
.f-image_text .f-image_text-inner .f-post-container .image-column img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 350px;
  align-items: center;
  transition: transform 0.25s;
}
.f-image_text .f-image_text-inner .f-post-container .image-column.lightbox-img a {
  display: inline-block;
  overflow: hidden;
}
.f-image_text .f-image_text-inner .f-post-container .image-column.lightbox-img a:hover img {
  transform: scale(1.1);
}

.f-column_row .f-post-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 768px) {
  .f-column_row .f-post-container {
    flex-direction: column;
  }
}
.f-column_row .f-post-container[data-layout=round] img {
  border-radius: 50%;
}
.f-column_row .f-post-container .column {
  width: 33%;
  padding: 15px;
  text-align: center;
}
@media (max-width: 768px) {
  .f-column_row .f-post-container .column {
    width: 100%;
  }
}
.f-column_row .f-post-container .column .text {
  font-size: 20px;
  color: #193669;
}
.f-column_row .f-button-container {
  padding: 15px;
  text-align: center;
}

.f-form .f-form-inner {
  width: 100%;
  max-width: 1000px;
  padding: 60px 15px;
}
@media (max-width: 768px) {
  .f-form .f-form-inner {
    padding: 60px 15px 0 15px;
  }
}
.f-form .f-form-inner h1, .f-form .f-form-inner h2 {
  margin-bottom: 15px;
}
.f-form .f-form-inner .f-form-container .gform_required_legend {
  display: none;
}
.f-form .f-form-inner .f-form-container .gfield_label {
  font-weight: 400;
}
.f-form .f-form-inner .f-form-container input:not([type=submit]) {
  outline: none;
  border: none;
  border-bottom: 2px solid #000000;
}
.f-form .f-form-inner .f-form-container input[type=submit] {
  transition: all 0.2s ease, visibility 0s;
  background: #193669;
  color: #FFFFFF;
  box-sizing: border-box;
  text-decoration: none;
  min-height: 40px;
  padding: 10px 35px;
  outline: none;
  border: none;
  cursor: pointer;
}
.f-form .f-form-inner .f-form-container input[type=submit]:hover {
  background: #AFC7EC;
  color: #193669;
}

.f-map .f-map-inner {
  max-width: unset;
  padding: 0;
}
.f-map .f-map-inner .f-map-container iframe {
  width: 100%;
  height: 450px;
}

.f-image_text-column .f-image_text-column-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 15px;
  padding-right: 15px;
}
.f-image_text-column .f-image_text-column-inner .f-column {
  flex: 0 0 calc(50% - 10px);
  display: flex;
  flex-direction: row;
  min-height: 300px;
}
@media (max-width: 1024px) {
  .f-image_text-column .f-image_text-column-inner .f-column {
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .f-image_text-column .f-image_text-column-inner .f-column {
    flex-direction: column;
  }
}
.f-image_text-column .f-image_text-column-inner .f-column .f-image-container {
  flex: 1;
  overflow: hidden;
}
.f-image_text-column .f-image_text-column-inner .f-column .f-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.f-image_text-column .f-image_text-column-inner .f-column .f-text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #0A2342;
  color: white;
  padding: 20px;
  flex: 1;
}
.f-image_text-column .f-image_text-column-inner .f-column .f-text-container .text {
  flex-grow: 1;
}
.f-image_text-column .f-image_text-column-inner .f-column .f-text-container .f-link-container {
  margin-top: auto;
}
.f-image_text-column .f-image_text-column-inner .f-column .f-text-container .f-link-container a {
  color: #FFFFFF;
  text-decoration: none;
}

.f-video .f-video-inner .sf-video {
  margin-top: 15px;
}
.f-video .f-video-inner .sf-video video, .f-video .f-video-inner .sf-video iframe {
  width: 100%;
  max-width: 750px;
  height: auto;
  display: table;
  margin: 0 auto;
}

div.tp-contact-form-inner .tp-title-container {
  margin-bottom: 30px;
}
div.tp-contact-form-inner .tp-title-container h1, div.tp-contact-form-inner .tp-title-container h2 {
  margin-bottom: 15px;
}

/*# sourceMappingURL=custom.css.map */
