.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 0.75rem;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media (max-width: 575.98px) {
  .container {
    padding-inline: 0.5rem;
  }
}

.container-fluid {
  width: 100%;
  margin-inline: auto;
  padding-inline: 0.75rem;
}
@media (min-width: 768px) {
  .container-fluid {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .container-fluid {
    max-width: 95%;
  }
}

.container-tight {
  width: 100%;
  margin-inline: auto;
  padding-inline: 0.75rem;
}
@media (min-width: 768px) {
  .container-tight {
    padding-inline: 1.5rem;
  }
}

.container-wide {
  width: 100%;
  margin-inline: auto;
  padding-inline: 0.75rem;
}
@media (min-width: 768px) {
  .container-wide {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .container-wide {
    max-width: 1440px;
  }
}
@media (min-width: 1400px) {
  .container-wide {
    max-width: 1600px;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  overflow-x: hidden;
  background-color: #fafaf8;
}

html {
  scroll-behavior: smooth;
}

.ctlHeroSection {
  background-image: url(../hero2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 800px;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}
.ctlHeroSection::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 767.98px) {
  .ctlHeroSection {
    min-height: auto;
    padding-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .ctlHeroSection {
    padding-top: 70px;
  }
}

.ctlLogo {
  display: flex;
}
@media (max-width: 767.98px) {
  .ctlLogo svg {
    height: 55px;
  }
}

.ctlNav {
  margin: 0;
  display: flex;
  padding: 24px 0;
  gap: 0 40px;
  position: relative;
  margin-left: auto;
  opacity: 0;
}
.ctlNav li {
  list-style-type: none;
}
.ctlNav li a {
  font-size: 16px;
  color: #eae6de;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
}
.ctlNav li a:hover {
  color: #ceae69;
}
@media (max-width: 991.98px) {
  .ctlNav {
    display: none;
  }
}

.ctlHeader {
  display: flex;
  gap: 0 40px;
  align-items: center;
  padding: 12px;
}
@media (max-width: 991.98px) {
  .ctlHeader {
    padding: 10px;
    justify-content: space-between;
  }
}

.ctlButton {
  color: #000;
  text-decoration: none;
  background: linear-gradient(135deg, #ffc66a, #c78119);
  padding: 16px 32px;
  border-radius: 4px;
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
  font-size: 16px;
  transition: box-shadow 0.3s ease;
}
.ctlButton::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  transition: all 0.7s ease;
  z-index: 1;
  pointer-events: none;
}
.ctlButton:hover {
  box-shadow: 0 6px 20px rgba(199, 129, 25, 0.3);
}
.ctlButton:hover::before {
  left: 150%;
}
@media (max-width: 575.98px) {
  .ctlButton {
    padding: 14px 24px;
    /* font-size: 15px; */
  }
}

.ctlButtonOutline {
  outline: 1px solid #dba641;
  outline-offset: -1px;
  background: transparent;
  color: #fff;
  backdrop-filter: blur(4px);
}

.ctlButtonColored {
  color: #dba641;
}

.ctlButtonArrowed {
  display: flex;
  align-items: center;
}
.ctlButtonArrowed::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10H16M16 10L11 5M16 10L11 15' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10H16M16 10L11 5M16 10L11 15' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  margin-left: 8px;
}

.ctlHeroTexts {
  position: relative;
  padding: 60px 0;
  width: 60%;
}
.ctlHeroTexts h2 {
  color: #fff;
  font-size: 80px;
  margin: 0 0 50px 0;
  line-height: 95px;
}
.ctlHeroTexts h2 span {
  color: #ffc66a;
}
@media (max-width: 991.98px) {
  .ctlHeroTexts h2 {
    line-height: 70px;
    font-size: 60px;
  }
}
.ctlHeroTexts p {
  color: rgba(255, 255, 255, 0.7);
  width: 60%;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .ctlHeroTexts {
    width: 100%;
    padding: 40px 0;
  }
  .ctlHeroTexts h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  .ctlHeroTexts p {
    width: 100%;
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 575.98px) {
  .ctlHeroTexts h2 {
    font-size: 32px;
  }
  .ctlHeroTexts p {
    font-size: 15px;
  }
}

.ctlBadge {
  color: #fff;
  border: 1px solid #8167a6;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 24px;
  border-radius: 50px;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 0 8px;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 14px;
}
.ctlBadge span:nth-child(1) {
  opacity: 0.6;
}
.ctlBadge::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #ffc66a;
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 1L12.39 6.95L18.78 7.45L14.12 11.62L15.53 17.86L10 14.5L4.47 17.86L5.88 11.62L1.22 7.45L7.61 6.95L10 1Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 1L12.39 6.95L18.78 7.45L14.12 11.62L15.53 17.86L10 14.5L4.47 17.86L5.88 11.62L1.22 7.45L7.61 6.95L10 1Z' fill='white'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
}
@media (max-width: 575.98px) {
  .ctlBadge {
    font-size: 12px;
    padding: 6px 16px;
  }
}

.ctlHeroButtons {
  display: flex;
  gap: 0 16px;
}
@media (max-width: 575.98px) {
  .ctlHeroButtons {
    flex-direction: column;
    gap: 12px;
  }
  .ctlHeroButtons .ctlButton {
    width: 100%;
    justify-content: center;
    margin: auto;
    max-width: 200px;
  }
}

.ctlHeroContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .ctlHeroContent {
    flex-direction: column;
    align-items: stretch;
  }
}

.ctlHeroBoxes {
  width: 38%;
  padding-top: 40px;
  position: relative;
}
.ctlHeroBoxes .ctlHeroImageBox {
  width: 400px;
  height: 450px;
  background-color: #d6d6d6;
  position: relative;
  margin-left: auto;
  margin-top: 200px;
  margin-bottom: 100px;
  border-radius: 12px;
  overflow: hidden;
}
.ctlHeroBoxes .ctlHeroImageBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ctlHeroBoxes .ctlHeroTextBox {
  position: absolute;
  width: 300px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99;
  padding: 40px 30px;
  backdrop-filter: blur(12px);
  border-radius: 12px;
}
.ctlHeroBoxes .ctlHeroTextBox::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(90deg, rgba(183, 132, 255, 0.1), rgba(183, 132, 255, 0.3), rgba(183, 132, 255, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: borderShine 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  background-size: 200% 100%;
}
.ctlHeroBoxes .ctlHeroTextBox::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(183, 132, 255, 0.6) 45%, rgba(183, 132, 255, 0.9) 50%, rgba(183, 132, 255, 0.6) 55%, transparent 70%, transparent 100%);
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: shineSweep 5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}
.ctlHeroBoxes .ctlHeroTextBox .ctlHeroTextBoxUpperThird {
  color: #b784ff;
  display: block;
  text-align: center;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.ctlHeroBoxes .ctlHeroTextBox .ctlHeroTextBoxOFF {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  color: #ffc66a;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  gap: 0 2px;
  position: relative;
  z-index: 1;
}
.ctlHeroBoxes .ctlHeroTextBox .ctlHeroTextBoxOFF .ctlHeroTextBoxOFFFirst {
  font-weight: 700;
  font-size: 100px;
}
.ctlHeroBoxes .ctlHeroTextBox .ctlHeroTextBoxOFF > div {
  display: flex;
  flex-direction: column;
}
.ctlHeroBoxes .ctlHeroTextBox .ctlHeroTextBoxOFF > div .ctlHeroTextBoxOFFSecond {
  font-weight: 400;
  font-size: 46px;
  margin-bottom: 4px;
  line-height: 1;
}
.ctlHeroBoxes .ctlHeroTextBox .ctlHeroTextBoxOFF > div .ctlHeroTextBoxOFFThird {
  font-weight: 400;
  font-size: 22px;
  margin: 0;
  line-height: 1;
}
@media (max-width: 991.98px) {
  .ctlHeroBoxes .ctlHeroTextBox .ctlHeroTextBoxOFF {
    padding: 10px 0;
  }
}
.ctlHeroBoxes .ctlHeroTextBox .ctlHeroTextBoxLowerThird {
  color: #fff;
  display: block;
  text-align: center;
  font-size: 26px;
  position: relative;
  z-index: 1;
}
.ctlHeroBoxes .ctlHeroTextBox .ctlHeroTextBoxDesc {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  display: block;
  position: relative;
  z-index: 1;
}
@keyframes borderShine {
  0%, 100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
}
@keyframes shineSweep {
  0% {
    background-position: -200% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}
@media (max-width: 767.98px) {
  .ctlHeroBoxes {
    width: 100%;
    padding-top: 0;
    height: 350px;
  }
  .ctlHeroBoxes .ctlHeroTextBox {
    max-width: 320px;
    padding: 30px 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: -moz-max-content;
    height: max-content;
    left: 0;
    right: 0;
  }
  .ctlHeroBoxes .ctlHeroTextBox .ctlHeroTextBoxOFFFirst {
    font-size: 60px !important;
  }
  .ctlHeroBoxes .ctlHeroTextBox .ctlHeroTextBoxOFFSecond {
    font-size: 30px !important;
    line-height: 32px !important;
  }
  .ctlHeroBoxes .ctlHeroTextBox .ctlHeroTextBoxOFFThird {
    font-size: 18px !important;
    margin: 8px 0;
  }
  .ctlHeroBoxes .ctlHeroTextBox .ctlHeroTextBoxLowerThird {
    font-size: 22px;
    padding-top: 10px;
  }
  .ctlHeroBoxes .ctlHeroTextBox .ctlHeroTextBoxDesc {
    font-size: 14px;
  }
  .ctlHeroBoxes .ctlHeroImageBox {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .ctlHeroBoxes {
    height: 300px;
  }
  .ctlHeroBoxes .ctlHeroTextBox {
    max-width: 100%;
    width: 300px;
  }
  .ctlHeroSection .ctlHeroTextBox {
    display: none !important;
  }

}

.ctlHeaderCTA .ctlButtonOutline {
  padding: 16px 20px;
  max-width: -moz-max-content;
  max-width: max-content;
}

.ctlHorizIconBoxes {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.ctlHorizIconBoxes .ctlHorizIconBox {
  display: flex;
  align-items: center;
  padding-right: 20px;
  gap: 0 8px;
  margin: 40px 0;
}
.ctlHorizIconBoxes .ctlHorizIconBox .ctlHorizIconBoxDesc {
  color: #fff;
}
.ctlHorizIconBoxes .ctlHorizIconBoxDivider {
  width: 2px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 575.98px) {
  .ctlHorizIconBoxes {
    gap: 0;
    margin: 30px 0;
    justify-content: space-between;
    row-gap: 10px;
    flex-wrap: wrap;
  }
  .ctlHorizIconBoxes .ctlHorizIconBox {
    margin: 0;
    padding-right: 0;
    width: 48%;
  }
  .ctlHorizIconBoxes .ctlHorizIconBoxDivider {
    display: none;
    width: 0;
  }
}

.ctlHorizIconBoxesDark {
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
}
.ctlHorizIconBoxesDark * {
  color: #000 !important;
}
.ctlHorizIconBoxesDark .ctlHorizIconBoxDivider {
  background-color: #e1e1e1;
}
.ctlHorizIconBoxesDark .ctlHorizIconBox {
  margin: 0;
  padding: 20px 0;
}

.tezaHeader {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 30;
  backdrop-filter: blur(8px);
  background-color: #fff;
}
.tezaHeader .ctlButton{
    color: #ffffff !important;
    outline: 1px solid #7d4092 !important;
    background-color: #7d4092 !important;
}
.tezaHeader .ctlButton:hover{
    box-shadow: 0 6px 20px rgba(12, 64, 146, 0.3) !important;
}

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