﻿* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2d3748;
  background-color: #f7fafc;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #d4af37;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #b8941f;
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.display-2 {
  font-size: calc(1.725rem + 5.7vw);
  font-weight: 700;
  line-height: 1.2;
}

.display-3 {
  font-size: calc(1.675rem + 4.2vw);
  font-weight: 700;
  line-height: 1.2;
}

.display-4 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 700;
  line-height: 1.2;
}

.display-5 {
  font-size: calc(1.525rem + 2.4vw);
  font-weight: 700;
  line-height: 1.2;
}

.display-6 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 700;
  line-height: 1.2;
}

.fs-1 {
  font-size: 1.625rem;
}

.fs-2 {
  font-size: 1.4375rem;
}

.fs-3 {
  font-size: 1.3125rem;
}

.fs-4 {
  font-size: 1.1875rem;
}

.fw-bold {
  font-weight: 700;
}

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

.text-start {
  text-align: left;
}

.text-end {
  text-align: right;
}

.text-white {
  color: #ffffff;
}

.text-muted {
  color: #718096;
}

.text-decoration-none {
  text-decoration: none;
}

.bg-dark {
  background-color: #1a202c;
}

.bg-danger {
  background-color: #e53e3e;
}

.bg-white {
  background-color: #ffffff;
}

.bg-warning {
  background-color: #ecc94b;
}

.bg-bg-2 {
  background-color: #edf2f7;
}

.bg-bg-3 {
  background-color: #f7fafc;
}

.text-action-1 {
  color: #d4af37;
}

.bg-action-1 {
  background-color: #d4af37;
}

.btn {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  color: #2d3748;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;
}

.btn-action-1 {
  color: #ffffff;
  background-color: #d4af37;
  border-color: #d4af37;
}

.btn-action-1:hover {
  color: #ffffff;
  background-color: #b8941f;
  border-color: #b8941f;
}

.btn-outline-light {
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-light:hover {
  color: #1a202c;
  background-color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-dark {
  color: #1a202c;
  border-color: #1a202c;
}

.btn-outline-dark:hover {
  color: #ffffff;
  background-color: #1a202c;
  border-color: #1a202c;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
}

.btn-light {
  color: #1a202c;
  background-color: #f7fafc;
  border-color: #f7fafc;
}

.btn-warning {
  color: #1a202c;
  background-color: #ecc94b;
  border-color: #ecc94b;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2d3748;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #cbd5e0;
  border-radius: 0.5rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #2d3748;
  background-color: #ffffff;
  border-color: #d4af37;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.75rem 2.25rem 0.75rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2d3748;
  background-color: #ffffff;
  border: 1px solid #cbd5e0;
  border-radius: 0.5rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

.form-select:focus {
  border-color: #d4af37;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2d3748;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  margin-left: -1.5em;
  vertical-align: top;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  border-radius: 0.25em;
}

.form-check-input:checked {
  background-color: #d4af37;
  border-color: #d4af37;
}

.form-check-label {
  color: #2d3748;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6b46c1;
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.75rem;
  text-decoration: none;
  font-weight: 800;
  color: #ffffff;
}

.navbar-brand:hover {
  color: #d4af37;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: #d4af37;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.collapse:not(.show) {
  display: none;
}

.hero-section {
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.9), rgba(147, 51, 234, 0.8)), url('../imgx/vyrom4.webp');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(107, 70, 193, 0.1) 25%, transparent 25%), 
              linear-gradient(-45deg, rgba(107, 70, 193, 0.1) 25%, transparent 25%);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a202c;
  color: #ffffff;
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner a {
  color: #d4af37;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-inline-block {
  display: inline-block;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

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

.align-items-start {
  align-items: flex-start;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}

.start-0 {
  left: 0;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-90 {
  opacity: 0.9;
}

.rounded {
  border-radius: 0.5rem;
}

.rounded-2 {
  border-radius: 0.75rem;
}

.rounded-circle {
  border-radius: 50%;
}

.rounded-pill {
  border-radius: 50rem;
}

.border-start {
  border-left: 1px solid #e2e8f0;
}

.border-5 {
  border-width: 5px;
}

.border-action-1 {
  border-color: #d4af37;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-6 { margin-bottom: 3.5rem; }
.mb-7 { margin-bottom: 4rem; }
.mb-8 { margin-bottom: 4.5rem; }
.mb-9 { margin-bottom: 5rem; }
.mb-12 { margin-bottom: 7rem; }
.mb-13 { margin-bottom: 8rem; }
.mb-16 { margin-bottom: 10rem; }

.mt-3 { margin-top: 1rem; }
.mt-6 { margin-top: 3.5rem; }
.mt-7 { margin-top: 4rem; }
.mt-9 { margin-top: 5rem; }
.mt-13 { margin-top: 8rem; }
.mt-16 { margin-top: 10rem; }

.me-3 { margin-right: 1rem; }
.me-4 { margin-right: 1.5rem; }
.ms-auto { margin-left: auto; }

.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 4.5rem; padding-bottom: 4.5rem; }
.py-11 { padding-top: 6rem; padding-bottom: 6rem; }

.p-3 { padding: 1rem; }
.p-6 { padding: 3.5rem; }
.p-7 { padding: 4rem; }
.p-9 { padding: 5rem; }
.p-16 { padding: 10rem; }

.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 4rem; padding-right: 4rem; }

.ps-7 { padding-left: 4rem; }

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .d-md-block {
    display: block;
  }
  .flex-md-row {
    flex-direction: row;
  }
  .text-md-start {
    text-align: left;
  }
  .text-md-end {
    text-align: right;
  }
  .mb-md-0 {
    margin-bottom: 0;
  }
  .mt-md-0 {
    margin-top: 0;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .flex-lg-row {
    flex-direction: row;
  }
  .text-lg-start {
    text-align: left;
  }
  .mb-lg-0 {
    margin-bottom: 0;
  }
  .py-lg-21 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5rem;
  }
  .display-2 {
    font-size: 3.5rem;
  }
  .display-3 {
    font-size: 4.75rem;
  }
  .display-4 {
    font-size: 3.5rem;
  }
  .display-5 {
    font-size: 3rem;
  }
  .display-6 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}