@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --font-plainText: "Open Sans", sans-serif;
  --font-Poppins: "Poppins", sans-serif;
  --font-Raleway: "Raleway", sans-serif;

  --font-size-xl: 50px;
  --font-size-lg: 33px;
  --font-size-md: 25px;
  --font-size-sm: 18px;
  --font-size-xs: 15px;
  --font-size-btn: 13px;

  --color-primary: #009de0;
  --color-secondary: #0078c4;
  /* --color-tertiary: #3f3b38;
  --color-quaternary: #fae7f0; */

  --color-sec-bg: #f9f9f9;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  color: inherit;
  box-sizing: border-box;
}

body {
  font-family: var(--font-plainText);
  font-size: var(--font-size-xs);
  line-height: 1.5em;
  color: black;
}

img,
object,
embed {
  max-width: 100%;
}

video,
img {
  vertical-align: middle;
}

img {
  height: auto;
  border: none;
}

input,
textarea,
select {
  outline-style: none;
  resize: none;
}

a {
  text-decoration: none;
}

a:hover,
label:hover,
button:hover {
  cursor: pointer;
}

.category_title {
  font-size: var(--font-size-lg);
  font-family: var(--font-Raleway);
  font-weight: 800;
  line-height: 1.1em;
  margin: 0 auto 1em auto;
  text-align: center;
  max-width: 700px;
}

.category_desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4em auto;
}

.sec05 .article {
  display: block;
  padding: 60px 50px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 0 30px 1px rgb(0 0 0 / 10%);
}

.article h1 {
  font-family: var(--font-Raleway);
  font-size: var(--font-size-md);
  font-weight: 800;
  line-height: 1.1em;
  margin-bottom: 1em;
}

.article p {
  margin-bottom: 1em;
}

.article :is(h2, h3, h4, h5, h6) {
  margin: 2em 0 0.5em 0;
}
.article :-webkit-any(h2, h3, h4, h5, h6) {
  margin: 2em 0 0.5em 0;
}
.article :-moz-any(h2, h3, h4, h5, h6) {
  margin: 2em 0 0.5em 0;
}

.article :is(ul, ol) {
  padding-left: 20px;
  margin-bottom: 1em;
}
.article :-webkit-any(ul, ol) {
  padding-left: 20px;
  margin-bottom: 1em;
}
.article :-moz-any(ul, ol) {
  padding-left: 20px;
  margin-bottom: 1em;
}

/* helper classes */
/* helper classes */
/* helper classes */
.container {
  margin: auto;
  max-width: 1410px;
}

.btn {
  overflow: hidden;
  position: relative;
  padding: 17px 54px;
  line-height: 1em;
  letter-spacing: 1px;
  display: inline-block;
  text-transform: uppercase;
  transition: background 0.4s;
  background-color: transparent;
  font-weight: 600;
  color: inherit;
  border: 2px solid currentColor;
  font-size: var(--font-size-btn);
  font-family: var(--font-Poppins);
  border-radius: 100px;
}

span.ripple {
  position: absolute;
  border-radius: 40%;
  transform: scale(0);
  animation: ripple 0.45s linear;
  background-color: rgba(255, 255, 255, 0.9);
}

/* dla czarnych buttonów zmiana tła na widoczne */
.btn.btn-dark span.ripple {
  background-color: rgba(0, 0, 0, 0.1);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.background {
  height: 90px;
  background-repeat: no-repeat;
  background-position: top center;
}

.background-fixed {
  height: 333px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
}

header + .background-fixed {
  background-attachment: scroll !important;
}

/* preloader */
/* preloader */
/* preloader */
#loader-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: white;
}

.load {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
}

.load hr {
  animation: spin 2s ease infinite;
  border: 0 none;
  border-radius: 50%;
  height: 20px;
  left: 25%;
  position: absolute;
  top: 25%;
  width: 20px;
  background-color: var(--color-primary);
}

.load hr:first-child {
  animation-delay: -1.5s;
}

.load hr:nth-child(2) {
  animation-delay: -1s;
}

.load hr:nth-child(3) {
  animation-delay: -0.5s;
}

.load hr:nth-child(even) {
  background-color: var(--color-secondary);
}

@keyframes spin {
  0%,
  100% {
    transform: translate(0);
  }
  25% {
    transform: translate(160%);
  }
  50% {
    transform: translate(160%, 160%);
  }
  75% {
    transform: translate(0, 160%);
  }
}

/* header */
/* header */
/* header */
header .container {
  display: flex;
  align-items: center;
  padding: 19px 0 20px 0;
}

header .logo {
  margin-right: auto;
  z-index: 9999;
}

header input {
  display: none;
}

header input ~ label {
  display: none;
}

nav ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
}

nav a {
  color: black;
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  letter-spacing: 0.4px;
  font-family: var(--font-Poppins);
}

nav li:not(:first-child) {
  margin-left: 19px;
}

header label {
  width: 40px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 999;
}

header span {
  width: 100%;
  height: 5px;
  border-radius: 50px;
  background-color: black;
  transition: all 0.2s ease-in-out;
}

header span:nth-child(1) {
  width: 34px;
}
header span:nth-child(3) {
  width: 24px;
}

header label:hover span {
  width: 100%;
}

header input {
  display: none;
}

header input:checked ~ label span:nth-child(1) {
  width: 100%;
  transform: translateY(12.5px) rotate(45deg);
}

header input:checked ~ label span:nth-child(2) {
  width: 0;
}

header input:checked ~ label span:nth-child(3) {
  width: 100%;
  transform: translateY(-12.5px) rotate(-45deg);
}

/* slider */
/* slider */
/* slider */
.slider {
  height: 621px;
}

.slider .container {
  height: 100%;
  max-width: 2000px;
  position: relative;
}

.slider .left,
.slider .right {
  position: absolute;
  top: 50%;
  font-size: 60px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 10px;
  font-weight: 700;
  transition: background 0.2s ease-in-out;
  transform: translateY(-50%);
}

.slider .pagination {
  position: absolute;
  top: 15px;
  left: 50%;
  display: flex;
  transform: translateX(-50%);
}

.slider .pagination span {
  width: 30px;
  height: 5px;
  background: rgba(255, 255, 255, 0.7);
  display: block;
  border-radius: 10px;
  margin: 0 5px;
}

.slider .pagination span:hover {
  cursor: pointer;
  background: rgba(255, 255, 255, 1);
}

.slider .pagination span.active {
  background-color: var(--color-primary);
}

.slider .left:hover,
.slider .right:hover {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.6);
}

.left {
  left: 30px;
}

.right {
  right: 30px;
}

.slide {
  color: white;
  height: 100%;
  display: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.slide:first-of-type {
  display: block;
}

.slide > div {
  padding-top: 95px;
  max-width: 1410px;
  margin: auto;
}

.slide .title {
  line-height: 1.05em;
  font-weight: 700;
  font-size: var(--font-size-xl);
  font-family: var(--font-Raleway);
  max-width: 500px;
  margin-bottom: 0.5em;
}

.slide .title + p {
  line-height: 1.5em;
}

.slide .text {
  max-width: 600px;
  margin-bottom: 40px;
  padding: 30px;
  line-height: 1.75em;
}

.slide .btn {
  color: white;
  background-color: transparent;
  margin-top: 30px;
}

/* sec00   */
/* sec00   */
/* sec00   */
.sec00 {
  padding: 90px 0;
  background-color: var(--color-sec-bg);
}

.sec00 .container {
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.sec00 .container:first-child > .title {
  font-size: var(--font-size-lg);
  font-weight: 800;
  margin-bottom: 25px;
  font-family: var(--font-Raleway);
  line-height: 1.1em;
}

.sec00 .container:first-child > .text {
  max-width: 700px;
  margin: auto;
  text-align: justify;
  margin-bottom: 55px;
  font-family: var(--font-plainText);
}

.sec00 .title,
.sec00 .text {
  text-align: center;
}

.box0000 {
  display: inline-block;
  padding: 20px 40px;
  border-radius: 10px;
  background-color: white;
  font-family: var(--font-Raleway);
  box-shadow: 0 0 30px 1px rgb(0 0 0 / 15%);
}

.box0000 .title {
  font-size: var(--font-size-md);
  font-weight: 800;
  line-height: 1.5em;
  margin-bottom: 1em;
}

.box0000 .text {
  font-family: var(--font-plainText);
  text-align: left;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.box0000 .text p {
  margin-top: 1em;
  text-align: center;
}

.box0000 .text p strong,
.box0201 .text p strong,
.box0500 .text p strong {
  font-weight: 400;
}

.box0000 a,
.box0201 a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 500;
  padding: 0;
  display: inline;
  border: none;
  letter-spacing: initial;
}

.box0000 a {
  padding: 15px 30px;
  display: block;
  width: max-content;
  margin: auto;
}

/* sec01 */
/* sec01 */
/* sec01 */
.sec01 {
  padding: 90px 0;
}

.box0100 {
  gap: 105px;
  display: grid;
  padding: 0 120px;
  grid-template-columns: 600px 1fr;
}

.box0100 img {
  border-radius: 10px;
  box-shadow: 0 0 30px 1px rgb(0 0 0 / 15%);
}

.box0100 div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.box0100 .title {
  font-size: var(--font-size-lg);
  font-family: var(--font-Raleway);
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.1em;
}

.box0100 .text {
  margin-bottom: 20px;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.box0100 a {
  width: max-content;
}

/* sec02 */
/* sec02 */
/* sec02 */

.sec02 {
  background: #f9f9f9;
}
.sec02 .container {
  padding: 90px 0;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}

.box0200 {
  max-width: 210px;
}

.box0200 .title {
  font-family: var(--font-Raleway);
  font-size: var(--font-size-lg);
  font-weight: 800;
  line-height: 1.1em;
  margin-bottom: 25px;
}

.box0200 .text {
  text-align: justify;
}

.box0201 {
  display: block;
  padding: 20px 40px;
  border-radius: 10px;
  background-color: white;
  font-family: var(--font-Raleway);
  box-shadow: 0 0 30px 1px rgb(0 0 0 / 15%);
}

.box0201 .title {
  font-family: var(--font-Raleway);
  font-size: var(--font-size-md);
  font-weight: 800;
  line-height: 1.1em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.2em;
  margin-bottom: 15px;
}

.box0201 img {
  border-radius: 5px;
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.box0201 .date {
  font-size: 12px;
}

.box0201 > div {
  margin-top: 27px;
}

.box0201 .text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

footer {
  color: white;
  background: linear-gradient(
    to right,
    var(--color-primary),
    var(--color-secondary)
  );
  padding: 50px 0 15px 0;
}

footer .title {
  font-weight: 800;
  font-size: var(--font-size-md);
  font-family: var(--font-Raleway);
  line-height: 1.1em;
  margin-bottom: 20px;
}

footer .container:first-child {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}

footer .container + .container {
  margin-top: 75px;
}

footer .copyright {
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  border-top: 1px solid white;
  padding-top: 3px;
  grid-column: 1 / -1;
  letter-spacing: 1px;
  font-family: var(--font-plainText);
}

footer .copyright a:hover {
  text-decoration: underline;
}

/* breadcrumbs */
/* breadcrumbs */
/* breadcrumbs */
.breadcrumbs {
  font-size: 12px;
  margin-bottom: 30px;
}

.breadcrumbs a {
  color: var(--color-primary);
}

.breadcrumbs a:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* sec03 */
/* sec03 */
/* sec03 */
.sec03 {
  padding: 90px 0;
}

.sec03 .container:last-child {
  display: grid;
  gap: 60px 30px;
  grid-template-columns: repeat(4, 1fr);
}

.sec03 .title {
  font-size: var(--font-size-lg);
  font-weight: 800;
  font-family: var(--font-Raleway);
  margin-bottom: 15px;
  text-align: center;
}

.sec03 .text {
  text-align: center;
  margin-bottom: 75px;
}

.box0300 {
  min-height: 385px;
  height: max-content;
  overflow: hidden;
  border-radius: 5px;
  display: block;
  box-shadow: 0 0 30px 1px rgb(0 0 0 / 15%);
  background-color: #f9f9f9;
}

.box0300 img {
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.box0300 .title {
  font-size: var(--font-size-sm);
  font-weight: 800;
  font-family: var(--font-Raleway);
  text-align: left;
}

.box0300 .text {
  text-align: justify;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.box0300 div {
  background-color: #f9f9f9;
  padding: 15px 15px 25px 15px;
  border-radius: 5px;
  transform: translateY(-5px);
  transition: transform 0.4s ease-in-out;
}

.box0300.visible img,
.box0300:hover img {
  transform: scale(1.02);
}

.box0300.visible div,
.box0300:hover div {
  transform: translateY(0px);
}

.contact {
  margin: 45px auto;
}

.contact .container {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact form {
  max-width: 600px;
  margin-top: calc(var(--font-size-lg) + 20px);
  padding: 40px;
  background: #f9f9f9;
}

.contact-row {
  display: flex;
  flex-direction: column;
  position: relative;
}

.contact-row:not(:last-child) {
  margin-bottom: 20px;
}

.contact label {
  font-size: var(--font-Raleway);
  font-size: var(--font-size-xs);
  margin-bottom: 5px;
}

.contact input,
.contact textarea {
  width: 100%;
  font-family: var(--font-plainText);
  font-size: var(--font-size-xs);
}

.contact textarea,
.contact [type="text"],
.contact [type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: raleway;
  font-weight: 700;
}

.contact textarea.invalid,
.contact [type="text"].invalid,
.contact [type="email"].invalid {
  border: 1px solid red;
}

.contact textarea {
  min-height: 285px;
}

.contact [type="checkbox"] {
  display: none;
}

.contact [type="submit"] {
  margin-left: auto;
}

.contact .policy {
  gap: 10px;
  display: grid;
  grid-template-columns: 17px 1fr;
}

.contact .policy .error {
  margin-left: 27px;
}

.contact .policy input:checked + label {
  background-color: var(--color-primary);
}

.contact .policy label:first-of-type {
  display: block;
  width: 17px;
  margin-top: 3px;
  height: 17px;
  border: 2px solid var(--color-primary);
}

.contact .policy label:last-of-type {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.contact .policy a {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-row .error {
  position: absolute;
  color: red;
  top: 0;
  right: 0;
  display: none;
}
.policy .error {
  top: -20px;
}
.contact iframe {
  width: 100%;
  height: 100%;
  max-height: 100vh;
}

.breadcrumbs {
  margin: 30px 0;
  font-size: var(--font-size-xs);
}

.sec04 {
  padding: 45px 0 90px 0;
  background: #f9f9f9;
}

.sec04 .container {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

.box0400 {
  text-align: center;
  margin-bottom: 70px;
  grid-column: 1 / -1;
}

.box0400 .title {
  font-family: var(--font-Raleway);
  font-size: var(--font-size-lg);
  font-weight: 800;
  line-height: 1.1em;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.map {
  margin: 70px 0;
}

.map .container {
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 3fr;
}

.map .title {
  line-height: 1em;
  margin-bottom: 1em;
  font-weight: 800;
  font-size: var(--font-size-lg);
}

.map .subtitle {
  font-weight: 700;
  margin-bottom: 0.5em;
  color: var(--color-primary);
}

.map iframe {
  width: 100%;
  height: 450px;
}

.map a:hover {
  cursor: pointer;
  color: var(--color-primary);
}

.map hr {
  margin: 15px 0 10px 0;
  max-width: 75px;
  border: none;
  border-top: 1px solid black;
}

.social-media {
  display: flex;
  gap: 5px;
}

.social-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.social-media a:hover {
  color: var(--color-primary);
}

.sec05 {
  margin: 0 0 100px;
}

.sec05 .container {
  display: grid;
  gap: 100px;
  grid-template-columns: 1fr 2fr;
}

.sec05 .list {
  margin-top: 53px;
}

.sec05 .list > p {
  font-weight: 500;
}

.sec05 .list .box0500 {
  margin-top: 20px;
  padding: 10px 0;
	border-bottom: 1px solid rgba(0,0,0,.1);
}

.sec05 .list .box0500:last-child {
	border: none;
}

.box0500 {
  gap: 20px;
  display: grid;
  grid-template-columns: 150px 1fr;
}

.box0500:hover {
  text-decoration: underline;
}

.box0500 .title {
  color: black;
  display: -webkit-box;
  font-size: var(--font-size-sm);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 800;
  overflow: hidden;
  margin-bottom: 0.5em;
}

.box0500 .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.box0500 picture {
  max-height: 115px;
}

.box0500 img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  background-color: rgb(0, 0, 0, 0.05);
}

.sec05 .formBottom.formBottom {
  place-content: center;
  grid-template-columns: min(100%, 700px);
}

@media (min-width: 1024px) {
  .formRight,
  .formLeft {
    display: grid;
  }

  .sec05 .formRight.formRight {
    grid-template-columns: 2.5fr 2fr;
  }

  .sec05 .formLeft.formLeft {
    grid-template-columns: 2fr 2.5fr;
  }

  .sec05 .formLeft .articleForm {
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
  }
}

.articleForm form {
  background: rgba(0, 0, 0, 0.02);
  padding: 40px 50px;
  position: sticky;
  top: 0;
}

.articleForm .formRow:not(:first-child) {
  margin-top: 20px;
}

.articleForm .formRow > label {
  display: block;
}

.articleForm .checkbox input{
  align-self: start;
  margin-top: 6px;
}

@media not all and (min-resolution: .001dpcm) {
  .articleForm input[type="checkbox"],
  .articleForm input[type="radio"] {
    margin: initial;
    width: initial !important;
    margin-top: 7px;
  }
}

.articleForm textarea {
  min-height: 100px;
}

.articleForm button[type="submit"] {
  margin-top: 35px;
}

.articleForm .checkbox,
.articleForm .optionList div {
  gap: 7px;
  display: grid;
  grid-template-columns: max-content 1fr;
}

.articleForm .actions {
  text-align: right;
}

.sec11 {
  padding-block: 50px;
}

.sec11 .container {
  position: relative;
}

.sec11 .category-description {
  max-width: 700px;
  margin: 0 auto 70px auto;
}

.sec11 .carousel {
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 3.33%;
  overflow-x: scroll;
  scroll-behavior: smooth;
}

.sec11 .container:hover .prev,
.sec11 .container:hover .next {
  opacity: 1;
}

.sec11 .prev,
.sec11 .next {
  opacity: 0;
  transition: opacity .1s ease-in-out;
  position: absolute;
  z-index: 10;
  padding: 10px 15px;
  border: none;
  font-size: 24px;
  height: max-content;
  border-radius: 50%;
  line-height: 1em;
  top: 50%;
  transform: translateY(-50%);
}

.sec11 .prev {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
}

.sec11 .next {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
}

.box1100 {
  flex: 0 0 30%;
}

.box1100 {
  scroll-snap-align: center;
  text-align: center;
  padding-block: 20px;
  cursor: grab;
  user-select: none;
}

.box1100 .image {
  min-height: 150px;
  width: 100%;
  max-width: 150px;
  margin: auto;
  margin-bottom: 15px;
}

.box1100 img {
  aspect-ratio: 1 /1;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.box1100 .text {
  position: relative;
  font-size: var(--font-size-sm);
}

.box1100 .title {
  margin-top: 10px;
  font-weight: 700;
  font-size: var(--font-size-xs);
}

.box1101 .title {
  font-family: var(--font-Raleway);
  font-size: var(--font-size-lg);
  font-weight: 800;
  line-height: 1.1em;
  margin-bottom: 25px;
  text-align: center;
}

.sec12 {
  margin-bottom: 110px;
}

.sec12 h1 {
  font-size: var(--font-size-lg);
}

.sec12 .container {
  max-width: 700px;
}

.box1200 {
  margin-top: 70px;
}

.box1200 .title {
  font-weight: 600;
  margin-bottom: 0.5em;
  font-size: var(--font-size-sm);
}

.box1200 .text {
  margin-bottom: 20px;
}

.box1200 table {
  width: 100%;
  margin: auto;
  border-collapse: collapse;
  border: 1px solid black;
}

.box1200 table th,
.box1200 table td {
  padding: 5px 15px;
  border: 1px solid black;
}

#manage_cookies {
  background-color: transparent;
  border: none;
  font: inherit;
}

#manage_cookies:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .articleForm button[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .articleForm form {
    padding: 30px 15px;
    margin-inline: -15px;
  }
}

@media only screen and (max-width: 1700px) {
  .slide > div {
    padding-top: 150px;
    padding-left: 100px;
  }
}

@media only screen and (max-width: 1410px) {
  .container {
    width: 95%;
  }

  .slider .container {
    width: 100%;
  }

  .box0100 {
    gap: 35px;
  }

  .sec02 .container {
    grid-template-columns: repeat(3, 1fr);
  }

  .box0200 {
    max-width: 100%;
    text-align: center;
    margin-bottom: 60px;
    grid-column: 1 / -1;
  }

  .box0200 .text {
    max-width: 700px;
    margin: auto;
  }
}

@media only screen and (max-width: 1200px) {
  .box0100 {
    padding: 0;
    gap: 45px;
    grid-template-columns: repeat(2, 1fr);
  }

  .sec04 .container {
    grid-template-columns: repeat(3, 1fr);
  }

  .box0201 > div {
    margin-top: 15px;
  }

  .box0201 img {
    grid-row: 1 / span 1;
    border-radius: 0;
  }

  .box0000 {
    padding: 40px 30px;
  }

  .sec03 .container:last-child {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 1024px) {
  .sec11 .prev,
  .sec11 .next {
    display: none;
    visibility: hidden;
  }
}

@media only screen and (max-width: 992px) {
  header input ~ label {
    display: flex;
  }

  header input:checked + nav {
    display: block;
    z-index: 9;
    background-color: var(--color-primary);
  }

  header nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
  }

  header ul {
    width: 100%;
    height: 100%;
    padding: 120px 0 0 0;
    flex-direction: column;
    align-items: center;
  }

  header li {
    margin: 10px 0 !important;
  }

  header a {
    color: white;
    padding: 10px;
    display: inline-block;
    font-size: var(--font-size-md);
  }

  .slider {
    height: 430px;
  }

  .slide > div {
    padding: 60px 100px 0 100px;
  }

  .slider .left {
    left: 15px;
  }

  .slider .right {
    right: 15px;
  }

  .sec00 .container {
    display: block;
  }

  .box0000 {
    grid-template-columns: 30% 67%;
    padding: 20px;
    gap: 3%;
  }

  .box0000:not(:last-child) {
    margin-bottom: 45px;
  }

  .box0000 .title {
    margin-bottom: 0.5em;
  }

  .box0000 .title,
  .box0000 .text {
    text-align: left;
  }

  .box0000 a {
    margin: 0;
    padding: 15px 0;
  }

  .box0100 {
    display: block;
  }

  .box0100 img {
    margin-bottom: 30px;
    width: 100%;
  }

  .sec-bg {
    height: 150px;
  }

  footer .container:first-child {
    gap: 60px 30px;
    grid-template-columns: repeat(2, 1fr);
  }

  footer .container + .container {
    margin-top: 35px;
  }

  .sec03 .container:last-child {
    grid-template-columns: repeat(2, 1fr);
  }

  .sec02 .container {
    padding: 45px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .sec04 .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .map .container {
    grid-template-columns: 35% auto;
  }

  .map hr {
    margin: 15px auto 10px auto;
  }

  .map .social-media {
    justify-content: center;
  }

  .sec05 {
    margin: 50px 0 100px 0;
  }

  .sec05 .container {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .sec05 .list {
    gap: 20px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row: 2 / span 1;
  }

  .sec05 .list > p {
    grid-column: 1 / -1;
  }

  .sec05 .list .box0500 {
    margin: 0;
  }

  .sec05 .article {
    padding: 30px 10px;
  }

  .map {
    margin: 50px 0;
  }

  .map .container {
    text-align: center;
    grid-template-columns: 1fr;
  }

  .map br:first-of-type {
    display: none;
  }

  .contact .container {
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .contact form {
    margin: 0 auto;
  }

  .contact label {
    font-size: var(--font-size-xs);
  }

  .box0201 {
    padding: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .slider {
    height: 400px;
  }

  .slider .left,
  .slider .right {
    display: none;
  }

  .slide > div {
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-height: 100%;
    overflow: hidden;
  }

  .slide .title {
    font-size: var(--font-size-lg);
    margin-bottom: 30px;
    text-align: center;
  }

  .slide .text {
    margin-bottom: 0;
    padding: 15px;
  }

  .slide .btn {
    display: block;
    margin-inline: auto;
    width: max-content;
  }

  .box0201 .title {
    height: auto;
  }

  .sec02 .container {
    display: block;
  }

  .sec04 .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .box0201:not(:last-child) {
    margin-bottom: 30px;
  }

  .background-fixed {
    height: 150px;
  }

  .sec05 .list {
    grid-template-columns: 1fr;
  }

  footer .copyright {
    flex-wrap: wrap;
  }

  footer .social-media {
    justify-content: center;
    flex-basis: 100%;
    margin-top: 15px;
  }

  .map iframe {
    height: 70vh;
  }

  .sec11 .container {
    gap: 2%;
  }

  .box1100 {
    flex: 0 0 46%;
    scroll-snap-align: start;
  }
}

@media only screen and (max-width: 576px) {
  footer .container:first-child {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  footer .title {
    margin-bottom: 5px;
  }

  footer {
    padding: 45px 0 10px 0;
  }

  .box0000 {
    display: block;
    text-align: center;
  }

  .sec03 .container:last-child {
    grid-template-columns: 1fr;
  }

  .contact {
    margin: 50px 0;
  }

  .box0000 a,
  .box0100 a {
    margin-left: auto;
  }

  .sec11 .container {
    gap: 2%;
  }

  .box1100 {
    flex: 0 0 98%;
    scroll-snap-align: center;
  }

  .box1100 .image {
    min-height: 50vw;
    max-width: 50vw;
  }
}

@media only screen and (max-width: 440px) {
  .sec05 .list {
    gap: 40px;
  }

  .box0500 {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 420px) {
  .slide > div {
    width: 95%;
  }

  .slide .title {
    margin-bottom: 15px;
  }

  .slide .btn {
    margin-top: 15px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 991px) {
  .box0000,
  .box0201 {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
  }

  .box0201 {
    gap: 3%;
  }

  .box0000 .title,
  .box0201 .title {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .box0201 .title {
    display: block;
    height: auto;
    overflow: initial;
  }

  .box0000 img,
  .box0201 img {
    width: 100%;
  }

  .box0000 .text p {
    text-align: left;
  }

  .box0201 img {
    grid-row: 2 / span 1;
  }
}
