.breadcrumb {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumb li {
  font-size: 1.2rem;
}
.breadcrumb li.active {
  color: var(--color-primary);
}
.breadcrumb li a {
  color: var(--color-base);
}
.breadcrumb li::after {
  content: "/";
  width: 2.5em;
  padding: 0 0.7em;
}
.breadcrumb li:last-child::after {
  display: none;
  width: 0;
  padding: 0;
}

h2 {
  font-size: 1.6em;
}

h3 {
  font-size: 1.4em;
}

h4 {
  font-size: 1.2em;
}

.backtotop {
  width: 4.7rem;
  height: 4.7rem;
  display: none;
  background: var(--color-primary);
  color: var(--color-light);
  border: 0;
  padding: 0;
  position: fixed;
  bottom: 28rem;
  right: 1.5rem;
  cursor: pointer;
  z-index: 9;
}
.backtotop:hover {
  opacity: 0.7;
}
.backtotop.nologin {
  bottom: 90px;
}
@media (min-width: 969px) {
  .backtotop.nologin {
    bottom: 8rem;
  }
}

.list-style-none {
  list-style: none;
}

.icon-search {
  width: 2.4rem;
  height: 2.4rem;
}

.svg-arrow {
  width: 2.2rem;
  height: 1.6rem;
}

label.error {
  color: var(--color-danger);
}

@media (max-width: 968px) {
  .form-search {
    display: flex;
    justify-content: flex-end;
  }
}

.input-search {
  width: 0;
  outline: none;
  border: none;
  background-color: transparent;
  transition: 0.4s ease-in;
}
@media (min-width: 969px) {
  .input-search {
    border: solid 0.1rem #2C2C2C;
    width: 100%;
  }
}
.input-search.active {
  width: 100%;
  border: none;
  background-color: var(--color-light);
}

.btn-search {
  display: flex;
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: inherit;
  right: 1.2rem;
}
@media (min-width: 969px) {
  .btn-search {
    left: 1.2rem;
    right: inherit;
  }
}
.btn-search:focus, .btn-search:active {
  background-color: transparent;
}

.form-group {
  position: relative;
}
.form-group.invalid .label, .form-group:hover .label {
  top: -1.5rem;
}
.form-group .label {
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  font-size: 1.6rem;
  padding: 0.5rem;
  transition: 0.3s ease-in-out;
}

.form-control {
  width: 100%;
  font-size: 1.6rem;
  border: solid thin rgba(var(--color-secondary), 0.25);
  border-radius: 0.8rem;
  padding: 1.6rem 2rem;
}
.form-control:focus {
  outline: unset;
}

input:-internal-autofill-selected {
  background-color: transparent !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

form {
  position: relative;
}

.wpcf7-response-output {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 1rem 0 0 !important;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
  z-index: 9999;
}
.modal-active {
  display: flex;
}
.modal-fade .modal-content {
  opacity: 1;
  transform: translateY(0);
}
.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.modal-content {
  width: 100%;
  max-width: calc(100% - 4rem);
  opacity: 0;
  margin: 5rem auto;
  border-radius: 1rem;
  overflow: hidden;
  transform: translateY(-200%);
  transition: 1s ease-in-out;
}
@media (min-width: 969px) {
  .modal-content {
    max-width: 100rem;
    margin: 10rem auto;
    border-radius: 3rem;
  }
}
@media (min-width: 969px) {
  .modal-content.mw-1080 {
    max-width: 108rem;
  }
}
.modal-header {
  position: relative;
  min-height: 31rem;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.modal-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.modal-header-close {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  padding: 0;
  border: solid 0.3rem var(--color-light);
  background-color: transparent;
  color: var(--color-light);
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 0.5rem;
}
@media (min-width: 969px) {
  .modal-header-close {
    width: 3.2rem;
    height: 3.2rem;
    top: 3rem;
    right: 3rem;
    font-size: 2.4rem;
    border-radius: 1rem;
  }
}
.modal-header-close:hover i {
  transform: rotate(90deg);
}
.modal-header-close i {
  transition: 0.3s ease-in-out;
}
.modal-body {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.modal-body h2 {
  font-size: 3rem;
  margin-bottom: 2.4rem;
}
.modal-body h3 {
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
}
.modal-body h4 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.modal-body p {
  font-size: 1.6rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 969px) {
  .modal-body p {
    margin-bottom: 3rem;
  }
}
.modal-footer {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
}
.modal-footer .btn {
  min-width: auto;
  border-radius: 0;
}
.modal-contact .modal-content {
  width: calc(100% - 4rem);
}
@media (min-width: 768px) {
  .modal-contact .modal-content {
    width: 56rem;
  }
}

@media (min-width: 969px) {
  .fade {
    opacity: 0;
  }
  .fade-opacity {
    animation: fadeOpacity 0.5s 0.5s ease-out forwards;
  }
  .fade-up {
    transform: translateY(10rem);
    animation: fadeUp 0.5s 0.5s ease-out forwards;
  }
  .fade-updelay-1 {
    transform: translateY(10rem);
    animation: fadeUp 0.5s 1s ease-out forwards;
  }
  .fade-right {
    transform: translateX(10rem);
    animation: fadeRight 0.5s 0.5s ease-out forwards;
  }
  .fade-rightdelay-1 {
    transform: translateX(-10rem);
    animation: fadeRight 0.5s 1s ease-out forwards;
  }
  .fade-rightdelay-2 {
    transform: translateX(-10rem);
    animation: fadeRight 0.5s 2s ease-out forwards;
  }
  .fade-left {
    transform: translateX(10rem);
    animation: fadeLeft 0.5s 0.5s ease-out forwards;
  }
  .fade-leftdelay-1 {
    transform: translateX(10rem);
    animation: fadeLeft 0.5s 1s ease-out forwards;
  }
  .fade-leftdelay-2 {
    transform: translateX(10rem);
    animation: fadeLeft 0.5s 2s ease-out forwards;
  }
  .fade-bottom {
    transform: translateY(-10rem);
    animation: fadeBottom 0.5s 0.5s ease-out forwards;
  }
  .fade-bottomdelay-1 {
    transform: translateY(-10rem);
    animation: fadeBottom 0.5s 1s ease-out forwards;
  }
  .fade-bottomdelay-2 {
    transform: translateY(-10rem);
    animation: fadeBottom 0.5s 2s ease-out forwards;
  }
}

@keyframes fadeOpacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    transform: translateY(20rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeRight {
  from {
    transform: translateX(-20rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeLeft {
  from {
    transform: translateX(20rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeBottom {
  from {
    transform: translateY(-20rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* loading */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.99);
}

.home #loading {
  display: flex;
}

.loader {
  border: 0.2rem solid #f3f3f3;
  border-radius: 50%;
  border-top: 0.2rem solid #3498db;
  width: 2rem;
  height: 2rem;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scroll-down-ani {
  0% {
    opacity: 0;
    transform: translateY(-50%) rotateX(90deg);
  }
  15%, 85% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
  100% {
    opacity: 0;
    transform: translateY(50%) rotateX(-90deg);
  }
}
@media screen and (max-width: 768px) {
  body.admin-bar .header.d-flex.useFixed {
    top: 0px;
  }
}

.admin-bar .header {
  top: 46px;
}
@media (min-width: 768px) {
  .admin-bar .header {
    top: 3.2rem;
  }
}
@media (max-width: 767px) {
  .admin-bar .header.fixed {
    top: 0;
  }
}
@media (max-width: 767px) {
  .admin-bar .header.scrolled {
    top: 0px !important;
  }
}
@media (min-width: 969px) {
  .admin-bar .sticky {
    top: 3.2rem;
  }
}

.lang-switcher {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  z-index: 9999;
}
@media (min-width: 969px) {
  .lang-switcher {
    width: 100%;
  }
}
@media (max-width: 968px) {
  .lang-switcher {
    font-size: 1.2rem;
  }
}
.lang-switcher a {
  display: inline-block;
  transition: 0.3s ease-in-out;
}
.lang-switcher a:hover {
  text-decoration: underline;
}
.lang-switcher .active {
  background-color: var(--color-base);
  color: var(--color-light);
}

.header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  padding: 1rem;
  transition: 0.3s ease-in-out;
  z-index: 999;
  justify-content: center;
  height: 120px;
  padding-left: 12;
  padding-right: 12px;
}
@media screen and (max-width: 1060px) {
  .header {
    justify-content: space-between !important;
  }
}
@media (min-width: 969px) {
  .header {
    width: auto;
  }
}
@media (max-width: 968px) {
  .header {
    justify-content: space-between !important;
    padding-top: 0;
    padding-bottom: 0;
    height: 81px;
  }
}
.header.d-flex.useFixed {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
}
.header.fixed {
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--color-light);
}
.header.fixed .nav-link {
  border-top: solid 0.2rem #fff !important;
  border-bottom: solid 0.2rem #fff !important;
}
@media (max-width: 968px) {
  .header.fixed .nav-link {
    border-top: none !important;
    border-bottom: none !important;
  }
}
.header-logo {
  position: relative;
  width: 100%;
  max-width: 33.7rem;
  margin: 0;
  transition: 0.3s ease-in-out;
  z-index: 100;
}
@media (min-width: 969px) {
  .header-logo {
    max-width: 33.7rem;
  }
}
@media (max-width: 968px) {
  .header-logo {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.header-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.header-logo img {
  width: 250px;
  height: auto;
}
.header .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
@media screen and (max-width: 1060px) {
  .header .menu-toggle {
    display: flex;
  }
}
.header .menu-toggle span {
  width: 30px;
  height: 3px;
  background: #333;
  transition: 0.3s;
  display: block;
}
.header .menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header .menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.sticky {
  position: fixed !important;
  bottom: 0;
  left: 0;
  z-index: 998 !important;
}
@media (min-width: 969px) {
  .sticky {
    position: sticky !important;
    top: 0;
    margin-top: -7rem !important;
  }
}
.sticky .elementor-element {
  width: 100%;
}
.sticky ul {
  width: 100%;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: var(--color-light);
  border-top: solid thin #cccccc;
  overflow: hidden;
}
@media (min-width: 969px) {
  .sticky ul {
    background-color: rgba(0, 0, 0, 0.3);
    border-top: 0;
  }
}
.sticky ul li {
  width: 33.333%;
}
@media (min-width: 969px) {
  .sticky ul li {
    width: auto;
  }
}
.sticky ul li + li {
  border-left: solid thin #cccccc;
}
@media (min-width: 969px) {
  .sticky ul li + li {
    border-left: 0;
  }
}
.sticky ul a {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 1.5rem 0.5rem;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--color-base);
}
@media (min-width: 969px) {
  .sticky ul a {
    width: auto;
    color: var(--color-light);
    padding: 2.3rem 2rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 1060px) {
  .header-main {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 60vw;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: 80px 20px 20px;
  }
  .header-main.active {
    right: 0;
    color: var(--color-base) !important;
  }
  .header-main ul {
    flex-direction: column;
    width: 100%;
  }
  .header-main li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  .header-main a {
    display: block;
    padding: 15px 10px;
    width: 100%;
  }
}
.header-main .header-logo {
  width: auto;
  max-width: unset;
  font-size: 2.4rem;
  z-index: 100 !important;
}
@media (min-width: 969px) {
  .header-main .header-logo {
    font-size: 2.7083333333vw;
  }
}
@media (min-width: 1920px) {
  .header-main .header-logo {
    font-size: 5.2rem;
  }
}
.header-main .menu-primary {
  width: 100%;
  flex: 1;
}
.header-main .menu-primary .menu {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  gap: 1.2rem;
  padding: 0px 8px !important;
}
.header-main .menu-primary .menu li {
  padding: 0;
}
@media screen and (max-width: 1600px) {
  .header-main .menu-primary .menu li a {
    font-size: 1.7rem !important;
  }
}
@media screen and (max-width: 1253px) {
  .header-main .menu-primary .menu li a {
    font-size: 1.2rem !important;
  }
}
.header-main .menu-primary .menu li a {
  padding: 0.2rem 0.5rem;
  font-size: 1.7rem;
}
@media screen and (max-width: 1060px) {
  .header-main .menu-primary .menu li a {
    border-top: none !important;
    border-bottom: 2px solid #efe6e6 !important;
    padding: 4px 0px;
    font-size: 18px !important;
    padding-bottom: 8px !important;
  }
}
@media screen and (max-width: 768px) {
  .header-main .menu-primary .menu li a {
    padding: 3px 0px;
  }
}
@media (min-width: 1920px) {
  .header-main .menu-primary .menu li a {
    font-size: 1.7rem;
  }
}
.header-main .menu-item {
  white-space: nowrap;
  height: 22px;
  line-height: 22px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1060px) {
  .header-main .menu-item {
    border: none;
    margin-bottom: 2px;
    padding: 2px 0px;
  }
}
@media screen and (max-width: 768px) {
  .header-main .menu-item {
    margin-bottom: 8px;
    padding: 2px 0px;
  }
}

.header-menu {
  display: flex;
}

.footer-logo {
  width: 7rem;
  margin: 0 auto 5rem;
}
@media (min-width: 969px) {
  .footer-logo {
    margin: 0;
  }
}
.footer-logo img {
  height: auto;
}
.footer .topics-section {
  text-align: center;
  padding: 3.2rem 0;
  background-color: #fff;
}
@media (max-width: 968px) {
  .footer .topics-section {
    padding: 2rem 0;
  }
}
.footer .topics-title {
  margin-bottom: 2rem;
  font-weight: normal !important;
}
.footer .topics-box {
  display: inline-block;
  border: 2px solid #000;
  padding: 14px 1rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 5.7rem;
  text-align: center;
  padding-bottom: 2rem;
  width: 80%;
}
@media (max-width: 968px) {
  .footer .topics-box {
    margin-bottom: 2rem;
    padding: 14px 1rem;
    width: 100%;
  }
}
.footer .logos {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 968px) {
  .footer .logos {
    padding: 0px 0rem;
    flex-wrap: wrap;
    gap: 41px;
    justify-content: center;
  }
}
.footer .logos img {
  width: auto;
  padding: 0 1rem;
}
@media (max-width: 968px) {
  .footer .logos img {
    padding: 0 1.5rem;
  }
}
.footer .item-1 {
  justify-content: end;
}
@media (max-width: 968px) {
  .footer .item-1 {
    justify-content: center;
  }
}
.footer .item-3 {
  justify-content: start;
}
@media (max-width: 968px) {
  .footer .item-3 {
    justify-content: center;
  }
}
@media (max-width: 968px) {
  .footer .img-300 {
    width: 300px;
  }
}
.footer .logos {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 968px) {
  .footer .logos {
    padding: 0px 0rem;
    flex-wrap: wrap;
    gap: 41px;
    justify-content: center;
  }
}
.footer-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 969px) {
  .footer-nav {
    width: calc(100% - 7rem);
    padding-right: 7rem;
  }
}
.footer-nav .menu-primary {
  width: 100%;
}
@media (min-width: 969px) {
  .footer-nav .menu-primary {
    width: auto;
  }
}
.footer-nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 969px) {
  .footer-nav ul {
    width: auto;
    justify-content: center;
  }
}
.footer-nav ul li {
  padding: 0;
}
@media (min-width: 969px) {
  .footer-nav ul li {
    padding: 0 1.8rem;
  }
}
.footer-totop {
  width: 9rem;
  background-color: transparent;
  padding: 0;
  border: 0;
  color: var(--color-light);
  text-align: center;
  font-size: 1.6rem;
  margin: 4.8rem auto 0;
}
@media (min-width: 969px) {
  .footer-totop {
    margin: 0;
  }
}
.footer-copyright {
  border-top: solid thin rgba(var(--color-light), 0.2);
}
.footer .fb {
  margin: 0 20px;
}
.footer .fb img {
  max-width: 80px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .footer .gap-2 {
    gap: 0px !important;
  }
}
.footer .logo-kurovision {
  max-width: 210px !important;
}
@media screen and (max-width: 968px) {
  .footer .logo-kurovision {
    max-width: 240px !important;
  }
}
@media screen and (max-width: 768px) {
  .footer .logo-kurovision {
    max-width: 120px !important;
  }
}

#loadingAjax {
  display: none;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-base), 0.5);
  color: var(--color-light);
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 2.4rem;
  z-index: 99999;
}

@keyframes xi-spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotateX(359);
  }
}
@media (max-width: 968px) {
  .mb-4 {
    margin-bottom: 2rem;
  }
}

.custom-page-content {
  margin-top: 120px;
}
@media (max-width: 968px) {
  .custom-page-content {
    margin-top: 81px;
  }
}
@media (max-width: 767px) {
  .custom-page-content {
    margin-top: 81px;
  }
}

.swiper-container {
  text-align: center;
  overflow: hidden;
}
.swiper-container img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1653px) {
  .swiper-container img {
    height: auto;
  }
}
@media (max-width: 968px) {
  .swiper-container img {
    height: auto !important;
  }
}
.swiper-container p {
  font-size: 36px;
  font-family: Gill Sans, sans-serif;
  font-weight: bold;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
}
.swiper-container .swiper-image {
  justify-content: center;
  display: flex;
}

.button-slider {
  border: 2px solid var(--color-light);
  padding: 1rem 3rem;
}

.banner-section {
  position: relative;
}

.banner-btn {
  position: absolute;
  top: 1rem;
  right: 5rem;
  color: var(--color-light);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 1.4rem;
  height: auto;
  width: auto !important;
}
@media (max-width: 968px) {
  .banner-btn {
    right: 2rem;
    font-size: 1.2rem;
    height: auto;
    padding: 2px 4px;
    top: 2rem;
    width: auto;
  }
}

@media (max-width: 968px) {
  .fs-20 {
    font-size: 1.4rem !important;
  }
}

@media (max-width: 968px) {
  .col-footer {
    flex-direction: column;
  }
}

.white-space {
  white-space: nowrap;
}

.content-table {
  max-width: 100%;
  overflow: auto;
  border: solid thin #cccccc;
}

.table-1 td, .table-1 th, .table-2 td, .table-2 th, .table-3 td, .table-3 th {
  vertical-align: middle;
}

.table-1,
.content-table.table-1 table {
  min-width: 60rem;
}
.table-1 tr > th:first-child,
.table-1 tr > td:first-child,
.content-table.table-1 table tr > th:first-child,
.content-table.table-1 table tr > td:first-child {
  position: sticky;
  left: 0;
  background-color: var(--color-light);
}

.table-2,
.content-table.table-2 table {
  min-width: 80rem;
}
.table-2 tr > th:nth-child(1),
.table-2 tr > td:nth-child(1),
.table-2 tr > th:nth-child(2),
.table-2 tr > td:nth-child(2),
.content-table.table-2 table tr > th:nth-child(1),
.content-table.table-2 table tr > td:nth-child(1),
.content-table.table-2 table tr > th:nth-child(2),
.content-table.table-2 table tr > td:nth-child(2) {
  position: sticky;
  background-color: var(--color-light);
}
.table-2 tr > th:nth-child(1),
.table-2 tr > td:nth-child(1),
.content-table.table-2 table tr > th:nth-child(1),
.content-table.table-2 table tr > td:nth-child(1) {
  width: 6rem;
  left: 0;
}
.table-2 tr > th:nth-child(2),
.table-2 tr > td:nth-child(2),
.content-table.table-2 table tr > th:nth-child(2),
.content-table.table-2 table tr > td:nth-child(2) {
  width: 6rem;
  left: 6rem;
}

.table-3,
.content-table.table-3 table {
  min-width: 150rem;
}
.table-3 tr > th:nth-child(1),
.table-3 tr > td:nth-child(1),
.table-3 tr > th:nth-child(2),
.table-3 tr > td:nth-child(2),
.table-3 tr > th:nth-child(3),
.table-3 tr > td:nth-child(3),
.content-table.table-3 table tr > th:nth-child(1),
.content-table.table-3 table tr > td:nth-child(1),
.content-table.table-3 table tr > th:nth-child(2),
.content-table.table-3 table tr > td:nth-child(2),
.content-table.table-3 table tr > th:nth-child(3),
.content-table.table-3 table tr > td:nth-child(3) {
  position: sticky;
  background-color: var(--color-light);
}
.table-3 tr > th:nth-child(1),
.table-3 tr > td:nth-child(1),
.content-table.table-3 table tr > th:nth-child(1),
.content-table.table-3 table tr > td:nth-child(1) {
  width: 6rem;
  left: 0;
}
@media (min-width: 969px) {
  .table-3 tr > th:nth-child(1),
  .table-3 tr > td:nth-child(1),
  .content-table.table-3 table tr > th:nth-child(1),
  .content-table.table-3 table tr > td:nth-child(1) {
    width: 10rem;
  }
}
.table-3 tr > th:nth-child(2),
.table-3 tr > td:nth-child(2),
.content-table.table-3 table tr > th:nth-child(2),
.content-table.table-3 table tr > td:nth-child(2) {
  width: 6rem;
  left: 6rem;
}
@media (min-width: 969px) {
  .table-3 tr > th:nth-child(2),
  .table-3 tr > td:nth-child(2),
  .content-table.table-3 table tr > th:nth-child(2),
  .content-table.table-3 table tr > td:nth-child(2) {
    width: 10rem;
    left: 10rem;
  }
}
.table-3 tr > th:nth-child(3),
.table-3 tr > td:nth-child(3),
.content-table.table-3 table tr > th:nth-child(3),
.content-table.table-3 table tr > td:nth-child(3) {
  width: 8rem;
  left: 12rem;
}
@media (min-width: 969px) {
  .table-3 tr > th:nth-child(3),
  .table-3 tr > td:nth-child(3),
  .content-table.table-3 table tr > th:nth-child(3),
  .content-table.table-3 table tr > td:nth-child(3) {
    width: 12rem;
    left: 20rem;
  }
}

* {
  scroll-margin-top: 10rem;
}

.topics-section {
  text-align: center;
  padding: 3.2rem 0;
  padding-bottom: 0;
  background-color: #fff;
}
@media (max-width: 968px) {
  .topics-section {
    padding: 2rem 0;
  }
}

.topics-title {
  margin-bottom: 2rem;
  font-weight: normal !important;
}

.topics-box {
  display: inline-block;
  border: 2px solid #000;
  padding: 14px 1rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 5.7rem;
  text-align: center;
  padding-bottom: 2rem;
  width: 80%;
}
@media (max-width: 968px) {
  .topics-box {
    margin-bottom: 2rem;
    padding: 14px 1rem;
    width: 100%;
  }
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 968px) {
  .logos {
    padding: 0px 0rem;
    flex-wrap: wrap;
    gap: 41px;
    justify-content: center;
  }
}

.logos img {
  width: auto;
  padding: 0 1rem;
}
@media (max-width: 968px) {
  .logos img {
    padding: 0 1.5rem;
  }
}
@media (max-width: 768px) {
  .logos img {
    max-width: 136px;
  }
}

.item-1 {
  justify-content: end;
}
@media (max-width: 968px) {
  .item-1 {
    justify-content: center;
  }
}

.item-3 {
  justify-content: start;
}
@media (max-width: 968px) {
  .item-3 {
    justify-content: center;
  }
}

@media (max-width: 968px) {
  .img-300 {
    width: 300px;
  }
}

@media (max-width: 968px) {
  .page-executive .d-flex {
    flex-wrap: wrap;
  }
}
.page-executive .fls-18 {
  font-size: 18px !important;
}
@media (max-width: 968px) {
  .page-executive .fls-18 {
    font-size: 14px !important;
  }
}

.fls-18 {
  font-size: 18px !important;
}
@media (max-width: 968px) {
  .fls-18 {
    font-size: 14px !important;
  }
}


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