:root {
  line-height: 1.5;
}

a {
  color: blue;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, figure, p, ol, ul {
  margin: 0;
}

ol[role=list], ul[role=list] {
  list-style: none;
  padding-inline: 0;
}

h1, h2, h3, h4, h5 {
  font-size: inherit;
  font-weight: inherit;
}

img {
  display: block;
  max-inline-size: 100%;
}

/******** START */
body {
  margin: 0;
  color: #333333;
}
body .inner {
  background-color: #f9f9f9;
  margin: 0 auto;
  max-width: 1200px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body.stuck {
  overflow-y: hidden;
}

header {
  padding: 62px 42px 61px;
}
header img {
  width: 640px;
  max-width: 100%;
  height: auto;
}
header ul {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0 0;
  align-items: center;
  border-right: 12px solid #f9f9f9;
  line-height: 28px;
}
header ul li {
  list-style: none;
  flex: 0 0 auto;
}
header ul li span, header ul li a {
  color: #225378;
  font-family: "Rubik", serif;
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
}
header ul li.current span.mine, header ul li.current a, header ul li:hover span.mine, header ul li:hover a {
  color: #FCC331;
  text-decoration: none;
}

main {
  padding: 0 42px 42px;
  border-right: 12px solid #225378;
}

footer {
  padding: 42px;
  border-right: 12px solid #225378;
  margin-top: 25px;
  background-color: #225378;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer p, footer a {
  color: #fff;
  margin: 0;
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 15px;
}
footer img {
  max-width: 150px;
  height: auto;
}
footer .mobile {
  display: none;
}

h2 {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 35px;
  line-height: 39px;
  margin-bottom: 50px;
  color: #225378;
}

h3 {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  line-height: 32px;
  margin-bottom: 15px;
  margin-top: 40px;
  color: #225378;
}

p, ul {
  margin-bottom: 24px;
  line-height: 32px;
  font-size: 20px;
  font-family: "Sarabun", sans-serif;
  font-weight: 200;
  font-style: normal;
}
p b, ul b {
  font-weight: 500;
}
p.enlight, ul.enlight {
  font-weight: 500;
  font-size: 22px;
  color: #225378;
}

ul li::marker {
  color: #225378;
}

.textonly {
  padding-right: 21%;
}
.textonly a {
  color: #FCC331;
}
.textonly.fullwidth {
  padding-right: 8%;
}

.team {
  padding-right: 0;
  margin-top: 100px;
}
.team .team_container {
  display: flex;
  gap: 6%;
  flex-wrap: wrap;
}
.team .team_container .team_item {
  width: 29%;
  margin-bottom: 20px;
}
.team .team_container .team_item .image_block {
  margin-bottom: 15px;
}
.team .team_container .team_item .image_block img {
  width: 100%;
  height: auto;
}
.imageonly {
  margin-bottom: 25px;
}
.imageonly img {
  width: 100%;
  height: auto;
}

.divider {
  padding-right: 0;
  display: flex;
  justify-content: space-between;
}
.divider .textblock {
  width: 57%;
}
.divider .textblock a {
  color: #FCC331;
}
.divider .imageblock {
  width: 41%;
}
.divider .imageblock img {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.burger {
  cursor: pointer;
  display: none;
  position: fixed;
  right: 18px;
  top: 18px;
}
.burger div {
  width: 36px;
  height: 5px;
  margin: 8px 0;
  background-color: #225378;
  border-radius: 5px;
  transition: all 0.3s linear;
}
.burger div:first-child {
  margin-top: 0;
}
.burger div:last-child {
  margin-bottom: 0;
}
.burger.open div:nth-child(1) {
  transform: translateY(13px) rotate(-45deg);
}
.burger.open div:nth-child(2) {
  opacity: 0;
}
.burger.open div:nth-child(3) {
  transform: translateY(-13px) rotate(45deg);
}

/*******************************************************************************************************************************************/
/*** 
/*******************************************************************************************************************************************/
@media screen and (max-width: 780px) {
  footer {
    display: block;
    padding: 32px;
  }
  footer img {
    margin-bottom: 10px;
  }
  footer p {
    line-height: 19px;
    hyphens: none;
  }
  footer .desktop {
    display: none;
  }
  footer .mobile {
    display: inline;
  }
}
@media screen and (max-width: 680px) {
  header {
    padding: 20px 18px 45px;
    z-index: 4;
  }
  header img {
    width: 75%;
  }
  header ul {
    z-index: 4;
    display: none;
    position: fixed;
    background-color: #fff;
    top: 70px;
    width: 100%;
    left: 0;
    padding: 36px 18px;
    opacity: 0.98;
    line-height: 35px;
  }
  header ul.open {
    display: block;
  }
  header ul li span, header ul li a {
    font-size: 23px;
  }
  header ul li span.gap {
    display: none;
  }
  header .burger {
    display: block;
    z-index: 4;
  }

  main {
    padding: 0 18px 42px;
  }

  .backdrop {
    display: none;
    position: fixed;
    z-index: 3;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(4px);
  }
  .backdrop.on {
    display: block;
  }

  .team .team_container .team_item {
    width: 45%;
    margin-bottom: 20px;
  }
  .team .team_container .team_item .image_block {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 570px) {
  .divider {
    display: flex;
    justify-content: flex-start;
    flex-direction: column-reverse;
  }
  .divider .textblock {
    width: 100%;
  }
  .divider .imageblock {
    width: 100%;
  }
  .divider .imageblock.portrait img {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .burger div {
    width: 30px;
    height: 4px;
    margin: 6px 0;
  }
  .burger.open div:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .burger.open div:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
  }

  h2 {
    font-size: 26px;
    line-height: 35px;
    margin-bottom: 50px;
  }

  h3 {
    font-size: 23px;
    line-height: 31px;
  }

  p, ul {
    line-height: 28px;
    font-size: 18px;
  }
  p.enlight, ul.enlight {
    font-size: 20px;
  }

  ul {
    padding-left: 20px;
  }

  p {
    hyphens: auto;
  }

  .textonly {
    padding-right: 0;
  }
  .textonly.fullwidth {
    padding-right: 0;
  }
}

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