@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,700;1,200&display=swap");
:root {
  --primary-font: "Poppins";
  --default-color: #000000;
  --border-color: var(--default-color);
  --body-bg: #ffffff;
  --link-color: #14b5fc;
  --header-bg: #ffffff ;
  --header-color: var(--default-color);
  --white-color: #ffffff;
  --ash-color: #d2d2d2;
  --button-color: #7ac142;
  --button-hover-color: #0079c2;
  --default-fontsize: 1rem;
  --line-height: 1.2;
  --radius: .3rem;
  --btn-size: 45px;
  --btn-space: 1rem;
  --control-size: var(--btn-size);
  --control-space: var(--btn-space);
  --header-size: 60px;
  --container: 1320px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font);
  font-size: var(--default-fontsize);
  color: var(--default-color);
  line-height: var(--line-height);
  font-weight: normal;
  min-width: 300px;
  overflow: hidden;
  overflow-y: auto;
  background-color: var(--body-bg);
  padding-top: 20px;
}

html, body, main {
  height: 100%;
}

main {
  display: flex;
  flex-direction: column;
}
main .page {
  flex: 1 0 auto;
}

a {
  color: var(--link-color);
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

.logo {
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .logo {
    display: block;
    text-align: center;
    margin-bottom: 0;
  }
}

img {
  max-width: 100%;
}

:root {
  --primary-font: "Poppins";
  --default-color: #000000;
  --border-color: var(--default-color);
  --body-bg: #ffffff;
  --link-color: #14b5fc;
  --header-bg: #ffffff ;
  --header-color: var(--default-color);
  --white-color: #ffffff;
  --ash-color: #d2d2d2;
  --button-color: #7ac142;
  --button-hover-color: #0079c2;
  --default-fontsize: 1rem;
  --line-height: 1.2;
  --radius: .3rem;
  --btn-size: 45px;
  --btn-space: 1rem;
  --control-size: var(--btn-size);
  --control-space: var(--btn-space);
  --header-size: 60px;
  --container: 1320px;
}

body {
  background: url(../images/bg.jpg) center no-repeat;
  background-size: cover;
  font-family: var(--primary-font);
  background-attachment: fixed;
}
@media screen and (max-width: 900px) {
  body {
    background-attachment: fixed;
  }
}

.container {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 900px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}

.landing_page {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .landing_page {
    flex-direction: column-reverse;
  }
}
.landing_page .image_box {
  padding-top: 100px;
}
@media screen and (max-width: 900px) {
  .landing_page .image_box {
    padding-top: 0;
  }
}
.landing_page h1 {
  font-size: 48px;
  line-height: var(--line-height);
  margin: 20px 0;
}
@media screen and (max-width: 900px) {
  .landing_page h1 {
    font-size: 28px;
  }
}
.landing_page .contact_box {
  max-width: 580px;
}
@media screen and (max-width: 900px) {
  .landing_page .contact_box {
    margin-top: 0;
  }
}
.landing_page .contact_box h4 {
  font-size: 18px;
  line-height: var(--line-height);
  color: #716c6c;
  font-weight: 500;
  margin-bottom: 30px;
}

.contact_form ul {
  padding: 0;
  list-style: none;
}
.contact_form ul li {
  width: 100%;
  max-width: 500px;
  background: var(--white-color);
  border: 1px solid var(--ash-color);
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin: 20px 0;
  border-radius: 5px;
  padding: 0 40px;
}
@media screen and (max-width: 1100px) {
  .contact_form ul li {
    max-width: 100%;
  }
}
.contact_form ul li input {
  width: 100%;
  height: 70px;
  border: none;
  outline: none;
  font-size: 18px;
}
.contact_form ul li span {
  width: 100%;
}
.contact_form ul li:first-child:before {
  content: "";
  width: 24px;
  height: 22px;
  background: url(../images/user.png);
  display: inline-block;
  background-size: cover;
}
.contact_form ul li:nth-child(2):before {
  content: "";
  width: 24px;
  height: 16px;
  background: url(../images/email.png);
  display: inline-block;
  background-size: cover;
}
.contact_form ul li:last-child {
  padding: 0;
  background: var(--button-color);
  border-color: var(--button-color);
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.3s;
}
.contact_form ul li:last-child input {
  background: transparent;
  color: var(--white-color);
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
  width: auto;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .contact_form ul li:last-child input {
    font-size: 18px;
  }
}
.contact_form ul li:last-child span {
  position: absolute;
}
.contact_form ul li:last-child:after {
  content: "";
  background: url(../images/arrow.png) no-repeat;
  width: 20px;
  height: 20px;
}
.contact_form ul li:last-child:hover {
  background: var(--button-hover-color);
  border-color: var(--button-hover-color);
}
.contact_form .wpcf7-response-output {
  max-width: 490px;
}
@media screen and (max-width: 900px) {
  .contact_form .wpcf7-response-output {
    max-width: 100%;
  }
}

:root {
  --primary-font: "Poppins";
  --default-color: #000000;
  --border-color: var(--default-color);
  --body-bg: #ffffff;
  --link-color: #14b5fc;
  --header-bg: #ffffff ;
  --header-color: var(--default-color);
  --white-color: #ffffff;
  --ash-color: #d2d2d2;
  --button-color: #7ac142;
  --button-hover-color: #0079c2;
  --default-fontsize: 1rem;
  --line-height: 1.2;
  --radius: .3rem;
  --btn-size: 45px;
  --btn-space: 1rem;
  --control-size: var(--btn-size);
  --control-space: var(--btn-space);
  --header-size: 60px;
  --container: 1320px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-size);
  padding-left: var(--btn-space);
  padding-right: var(--btn-space);
  font-family: var(--primary-font);
  font-weight: normal;
  font-size: var(--default-fontsize);
  color: var(--default-color);
  line-height: var(--line-height);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

:root {
  --primary-font: "Poppins";
  --default-color: #000000;
  --border-color: var(--default-color);
  --body-bg: #ffffff;
  --link-color: #14b5fc;
  --header-bg: #ffffff ;
  --header-color: var(--default-color);
  --white-color: #ffffff;
  --ash-color: #d2d2d2;
  --button-color: #7ac142;
  --button-hover-color: #0079c2;
  --default-fontsize: 1rem;
  --line-height: 1.2;
  --radius: .3rem;
  --btn-size: 45px;
  --btn-space: 1rem;
  --control-size: var(--btn-size);
  --control-space: var(--btn-space);
  --header-size: 60px;
  --container: 1320px;
}

table {
  font-family: "Fraunces", serif;
  font-size: 125%;
  white-space: nowrap;
  margin: 0;
  border: none;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  border: 1px solid black;
}

table td,
table th {
  border: 1px solid black;
  padding: 0.5rem 1rem;
}

table thead th {
  padding: 3px;
  position: sticky;
  top: 0;
  z-index: 1;
  width: 25vw;
  background: white;
}

table td {
  background: #fff;
  padding: 4px 5px;
  text-align: center;
}

table tbody th {
  font-weight: 100;
  font-style: italic;
  text-align: left;
  position: relative;
}

table thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
}

table tbody th {
  position: sticky;
  left: 0;
  background: white;
  z-index: 1;
}

caption {
  text-align: left;
  padding: 0.25rem;
  position: sticky;
  left: 0;
}

[role=region][aria-labelledby][tabindex] {
  width: 100%;
  max-height: 98vh;
  overflow: auto;
}

[role=region][aria-labelledby][tabindex]:focus {
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
  outline: 0;
}

:root {
  --primary-font: "Poppins";
  --default-color: #000000;
  --border-color: var(--default-color);
  --body-bg: #ffffff;
  --link-color: #14b5fc;
  --header-bg: #ffffff ;
  --header-color: var(--default-color);
  --white-color: #ffffff;
  --ash-color: #d2d2d2;
  --button-color: #7ac142;
  --button-hover-color: #0079c2;
  --default-fontsize: 1rem;
  --line-height: 1.2;
  --radius: .3rem;
  --btn-size: 45px;
  --btn-space: 1rem;
  --control-size: var(--btn-size);
  --control-space: var(--btn-space);
  --header-size: 60px;
  --container: 1320px;
}

.top-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}
.top-menu li {
  margin-left: 10px;
  margin-right: 10px;
}
:root {
  --primary-font: "Poppins";
  --default-color: #000000;
  --border-color: var(--default-color);
  --body-bg: #ffffff;
  --link-color: #14b5fc;
  --header-bg: #ffffff ;
  --header-color: var(--default-color);
  --white-color: #ffffff;
  --ash-color: #d2d2d2;
  --button-color: #7ac142;
  --button-hover-color: #0079c2;
  --default-fontsize: 1rem;
  --line-height: 1.2;
  --radius: .3rem;
  --btn-size: 45px;
  --btn-space: 1rem;
  --control-size: var(--btn-size);
  --control-space: var(--btn-space);
  --header-size: 60px;
  --container: 1320px;
}

.header {
  height: var(--header-size);
  display: flex;
  justify-content: center;
  height: auto;
  padding-left: 100px;
}

:root {
  --primary-font: "Poppins";
  --default-color: #000000;
  --border-color: var(--default-color);
  --body-bg: #ffffff;
  --link-color: #14b5fc;
  --header-bg: #ffffff ;
  --header-color: var(--default-color);
  --white-color: #ffffff;
  --ash-color: #d2d2d2;
  --button-color: #7ac142;
  --button-hover-color: #0079c2;
  --default-fontsize: 1rem;
  --line-height: 1.2;
  --radius: .3rem;
  --btn-size: 45px;
  --btn-space: 1rem;
  --control-size: var(--btn-size);
  --control-space: var(--btn-space);
  --header-size: 60px;
  --container: 1320px;
}

:root {
  --primary-font: "Poppins";
  --default-color: #000000;
  --border-color: var(--default-color);
  --body-bg: #ffffff;
  --link-color: #14b5fc;
  --header-bg: #ffffff ;
  --header-color: var(--default-color);
  --white-color: #ffffff;
  --ash-color: #d2d2d2;
  --button-color: #7ac142;
  --button-hover-color: #0079c2;
  --default-fontsize: 1rem;
  --line-height: 1.2;
  --radius: .3rem;
  --btn-size: 45px;
  --btn-space: 1rem;
  --control-size: var(--btn-size);
  --control-space: var(--btn-space);
  --header-size: 60px;
  --container: 1320px;
}

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