/*
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')
*/
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;
  font-style: normal;
  color: #000000;
  line-height: 1.7;
  font-size: 16px;
  font-size: 1.6rem;
}

h1, .h1 {
  font-style: normal;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.2;
}
@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;
}
@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 {
  text-transform: uppercase;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}

div.section-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 15px;
}
@media (min-width: 650px) {
  div.section-inner {
    padding: 30px;
  }
}
@media (min-width: 768px) {
  div.section-inner {
    padding: 60px 30px;
  }
}
@media (min-width: 1024px) {
  div.section-inner {
    padding: 60px 30px;
  }
}

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%;
}
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  font-weight: normal;
  line-height: 1.7;
  font-size: 16px;
  font-size: 1.6rem;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

header {
  height: 132px;
}

.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: 30px 60px;
  }
}
.header-inner .left img {
  display: block;
  width: 100%;
  height: auto;
}
.header-inner .right {
  display: flex;
  justify-content: flex-end;
  padding-top: 10px;
}
@media (min-width: 900px) {
  .header-inner .right {
    padding-top: 0;
  }
}
@media (min-width: 900px) {
  .header-inner .right nav#nav-mobile {
    display: none;
  }
}
.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 ul {
  list-style: none;
}
.header-inner .right nav#nav-desktop ul li {
  display: inline-block;
  margin: 0 0 0 30px;
}
@media (min-width: 1024px) {
  .header-inner .right nav#nav-desktop ul li {
    margin: 0 0 0 60px;
  }
}
.header-inner .right nav#nav-desktop ul li a {
  color: #A9A9A9;
  text-decoration: none;
  font-size: 1.8rem;
}
.header-inner .right nav#nav-desktop ul li a.special {
  color: #000000;
  border-radius: 24px;
  min-width: 200px;
  width: fit-content;
  max-width: max-content;
  padding: 10px 30px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  background-color: yellow;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
#site-navigation {
  position: fixed;
  background: #A9A9A9;
  transform: translateX(-100%);
  transition: all 0.3s ease;
  margin: 0;
  top: 130px;
  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: 60px;
}
#site-navigation .slide-navigation-inner .slide-menu li:last-child {
  margin-bottom: 0;
}
#site-navigation .slide-navigation-inner .slide-menu li a {
  color: #000000;
  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 {
  width: 40px;
  height: fit-content;
  -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: 62px;
  right: 15px;
}
#nav-mobile span {
  display: block;
  position: absolute;
  height: 4px;
  border-radius: 10px;
  width: 100%;
  background: #000000;
  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.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;
}

.text-image-block .text-image-content {
  display: flex;
  align-items: center;
  gap: 40px;
}
.text-image-block .text-image-content .left {
  flex: 1;
}
.text-image-block .text-image-content .right {
  flex: 1;
}
.text-image-block .text-image-content .right img {
  width: 100%;
  height: auto;
  display: block;
}

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