@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');


:root {
    --text-color-basic: #202020;
    --text-color-light: #FFFFFF;
    --text-color-accent: #900783;
    --text-color-secondary: #ED8383;

    --bg-color-basic: #FFFFFF;
    --bg-color-accent: #FFF3F3;
}

/* Universe tags */

* {
  margin: 0;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  box-sizing: border-box;
}

html {
  font-size: 0.83vw; /* 16px = 1 rem = 0.83vw */
  background: var(--bg-color-accent);
}


body {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: var(--bg-color-basic);
  overflow-y: scroll;
  position: relative;
}

a {
  cursor: pointer !important;
}

h1 {
  font-style: normal;
  font-weight: bold;
  font-size: clamp(30px, 3.438rem, 55px);
  line-height: 150%;
  text-transform: uppercase;
  color: #910783;
}

h2 {
  padding-top: min(1.75rem, 28px);
  padding-bottom: min(2.5rem, 40px);
  font-style: normal;
  font-weight: bold;
  font-size: clamp(25px, 2.188rem, 35px);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--text-color-basic);
}

h3 {
  padding-top: min(1rem, 16px);
  padding-bottom: min(1.25rem, 20px);
  font-style: normal;
  font-weight: bold;
  font-size: clamp(16px, 1.5rem, 24px);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--text-color-basic);
}

p {
  font-size: clamp(16px, 1.125rem, 18px);
  color: var(--text-color-basic);
  line-height: 145%;
  margin-bottom: clamp(16px, 2rem, 32px);
}

ul {
  width: 100%;
  max-width: 950px;
  list-style-type: none;
  margin-bottom: clamp(16px, 2rem, 32px);
}

ul li {
  font-size: clamp(16px, 1.125rem, 18px);
  position: relative;
  padding-left: clamp(30px, 2.5rem, 40px);
  margin-bottom: 10px;
  line-height: 160%;
  overflow: hidden;
}

ul li::before {
  content: '•';
  line-height: 100%;
  color: #ED8383;
  position: absolute;
  font-size: 35px;
  left: 0;
  top: -7px;
}

section {
  width: 100%;
  margin-bottom: clamp(80px, 10rem, 160px);
}

section.title .theme {
  width: 100%;
  padding: 5rem 0 3.75rem 0;
} 

section.title .theme .theme__name {
  width: 100%;
  text-align: center;
}

.container {
  width: 100%;
  padding-left: clamp(20px, 2.5rem, 40px);
  padding-right: clamp(20px, 2.5rem, 40px);
  margin: 0 auto;
  max-width: 1420px;
}

.reg-link {
  display: inline-block;
  position: relative;
  padding: clamp(18px, 1.5rem, 24px) clamp(30px, 2.5rem, 40px);
  border-radius: 100px;
  color: var(--text-color-light);
  background-image: linear-gradient(to right, #8286E9, #F1948A);
  font-size: clamp(30px, 3rem, 48px);
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 1;
  overflow: hidden;
}

.mod--reg-link-small {
  padding: clamp(10px, 1rem, 16px) clamp(16px, 1.5rem, 24px);
  font-size: clamp(16px, 1.5rem, 24px);
}

.reg-link::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom, #F1948A, #8286E9);
  z-index: -1;
  transition: opacity .2s linear;
  opacity: 0;
}

.reg-link:hover::before {
  opacity: 1;
}

.bg-color {
  background-color: var(--bg-color-accent);
}

.bg-image-1 {
  background-image: url('/design/img/bg-line-1.png');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.bg-image-2 {
  background-image: url('/design/img/bg-line-2.png');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.gradient-box {
  background: var(--bg-color-basic);
  background-clip: padding-box;
  border: solid 12px transparent;
  border-radius: 40px;
}

.gradient-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -12px;
  border-radius: inherit;
  background: linear-gradient(117.16deg, #D3DCEF 19.03%, #F7C1B9 95.04%);;
}




@media screen and (min-width: 951px) {
  main {
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 951px) {
  main {
    width: 100%;
    margin: 0 auto;
    padding-top: 81px;
  }
}

section.container {
  margin: 0 auto;
  margin-bottom: clamp(40px, 10rem, 160px);
}

section.container.title  {
  margin: 0 auto;
  margin-bottom: clamp(40px, 2.5rem, 40px);
}




.ac .ac-trigger {
  -webkit-transition: color .25s ease;
  transition: color .25s ease;
  position: relative;
  cursor: pointer;
}

.ac .ac-panel {
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.ac.js-enabled .ac-panel {
  visibility: hidden;
}

.ac.is-active .ac-panel {
  visibility: visible;
}

.mod--container-wide {
  width: 100%;
  max-width: 100%;
  padding: 0px;
}

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

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





.mb-0 {
  margin-bottom: 0 !important;
}

.el-animation {
  opacity: 0;
  transform: translateY(40px);
}

.el-animation.el-show {
  opacity: 1;
  transition: all 1s;
  transform: translateY(0%);
}





#column blockquote {
  width: calc(100% - 50px);
  max-width: 950px;
  padding-left: 50px;
  margin-bottom: 32px;
  background-image: url('/design/img/quote.svg');
  background-repeat: no-repeat;
  background-position: 0px 10px;
}

#column blockquote .blockquote__quote {
  margin-bottom: 10px;
  font-style: italic;
  font-weight: normal;
  font-size: calc(12px + 0.75rem);
  line-height: 160%;
  color: #202020;
}

#column blockquote .blockquote__author {
  font-size: calc(9px + 0.563rem);
  line-height: 160%;
  color: #666666;
}




table {
  border-collapse: collapse;
  max-width: 100%;
  overflow-x: auto;
  margin-bottom: calc(16px + 1rem);
  border: 1px solid #DEDEDE;
  font-size: clamp(16px, 1.5rem, 20px);
}


table tbody {
  color: #666666;
  text-align: left;
  vertical-align: top;
}

table tbody tr {
  border-bottom: 1px solid #DEDEDE;
  transition: all .2s ease-in-out;
}

table tbody tr:nth-child(1) {
  font-size: 13px;
  color: #666666;
  background: none !important; 
}

table tbody tr:nth-child(even) {
  background: #FAFAFA;    
}

table tbody tr:nth-child(odd) {
  background: none;
}

table tbody tr:nth-child(odd):hover,
table tbody tr:nth-child(even):hover {
  background: #F6F4FF;
}

table tbody tr td {
  padding: 32px 24px;
}

table .imp {
	background: #910783;
	color: #fff;
}