/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 1; }
  .hamburger.is-active:hover {
    opacity: 1; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #620ea9; }

.hamburger-box {
  width: 34px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 34px;
    height: 4px;
    background-color: #620ea9;
    border-radius: 5px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
     * Spin
     */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

.wp-block-columns {
  display: flex;
  flex-direction: row;
  margin-top: 100px; }

.wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: center; }

span.msg,
span.choose {
  color: #555;
  padding: 5px 0 10px;
  display: inherit; }

.container {
  width: 100%;
  text-align: center;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px; }

/*Styling Selectbox*/
.dropdown {
  width: 100%;
  display: inline-block;
  position: relative;
  font-size: 1rem;
  color: black;
  background-color: white;
  border-radius: 10px;
  height: 100%;
  text-align: left;
  outline: none !important;
  z-index: 10;
  border: 2px solid #620ea9; }
  .dropdown * {
    user-select: none; }
  .dropdown:after {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -2px;
    right: -2px;
    content: "\25BC";
    color: #620ea9;
    width: 40px;
    height: 100%;
    z-index: 99;
    border-radius: 10px;
    border: 2px solid #620ea9; }

.dropdown .select {
  cursor: pointer;
  display: block;
  padding: 10px; }
  .dropdown .select span {
    font-weight: normal; }
  .dropdown .select img {
    display: none; }

.dropdown .select > i {
  font-size: 13px;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  float: right;
  line-height: 20px; }

.dropdown:active {
  background-color: white; }

.dropdown.active:hover,
.dropdown.active {
  border-radius: 10px 10px 0 0;
  background-color: white; }
  .dropdown.active:hover:after,
  .dropdown.active:after {
    content: "\25B2"; }

.dropdown.active .select > i {
  transform: rotate(-90deg); }

.dropdown .dropdown-menu {
  position: absolute;
  background-color: #fff;
  border: 2px solid #620ea9;
  border-top: none;
  width: calc(100% + 4px);
  left: -2px;
  margin-top: 0;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  max-height: 50vh;
  overflow-y: auto;
  z-index: 1;
  display: none; }

.dropdown.active .dropdown-menu {
  display: block; }

.dropdown .dropdown-menu li {
  padding: 15px 20px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 10px; }

.dropdown .dropdown-menu {
  padding: 0;
  list-style: none; }

.dropdown .dropdown-menu li:hover {
  background-color: #620ea9;
  color: white; }

.dropdown .dropdown-menu li:active {
  background-color: #e2e2e2; }

.dropdown-flag {
  width: 20px;
  object-fit: contain;
  height: 20px; }

@media screen and (max-width: 1024px) {
  .dropdown {
    background-color: transparent !important;
    border: 2px solid #620ea9;
    border: none;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px; }
    .dropdown * {
      user-select: none; }
    .dropdown .select img {
      display: inline-block; }
    .dropdown:after {
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      top: 50%;
      left: 10px;
      content: "\25BC";
      color: #620ea9;
      width: 40px;
      height: 70%;
      background-color: #efefef;
      border: 2px solid #620ea9;
      transform: rotate(0deg) translateY(-50%); }
    .dropdown.active {
      background-color: red; }
      .dropdown.active:after {
        content: "\25B2";
        transform: rotate(0deg) translateY(-50%); }
      .dropdown.active .dropdown-menu {
        width: 100%;
        left: -21px;
        /* bottom: 0; */
        top: 70px; }
        .dropdown.active .dropdown-menu li {
          display: flex;
          align-items: center; }
          .dropdown.active .dropdown-menu li img {
            width: 30px;
            height: 30px; } }

::-moz-selection {
  background: #620ea9;
  color: white; }

::selection {
  background: #620ea9;
  color: white; }

select {
  -webkit-appearance: none;
  border-radius: 0; }

html,
body * {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif; }

html,
body {
  margin: 0;
  padding: 0;
  background-color: #efefef; }

h1 {
  font-size: 42px; }

h2 {
  font-size: 42px; }

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 32px; }
  h2 {
    font-size: 32px; } }

p {
  line-height: 24px; }

.wp-block-table {
  overflow-x: auto; }

.table-div {
  width: 50% !important;
  padding: 0 40px; }

header {
  position: relative;
  margin-top: -100px;
  background-size: cover;
  background-position: 70% 20%; }
  header .background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0; }
    header .background-image:after {
      content: "";
      background: linear-gradient(0deg, black 0%, rgba(255, 255, 255, 0) 100%);
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }
    header .background-image img {
      object-fit: cover;
      object-position: 50% 20%;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }
  header section {
    position: relative;
    z-index: 8;
    padding: 150px 70px 50px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto; }
    header section h1,
    header section p {
      color: white; }
  header .navigation {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 0;
    position: relative;
    z-index: 10;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px; }

.topbar {
  z-index: 999;
  position: relative;
  background-color: white;
  max-width: 1300px;
  width: calc(100% - 40px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 5px 40px 10px; }
  .topbar img {
    padding: 20px;
    height: 80px; }
  .topbar a {
    color: #620ea9;
    text-decoration: none;
    font-weight: bold; }

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center; }
  .nav ul,
  .nav ol,
  .nav li,
  .nav a {
    text-decoration: none;
    list-style: none; }

main {
  display: flex;
  flex-direction: column;
  max-width: calc(1300px - 40px);
  margin: 0 auto 0; }
  main article {
    flex: 1 1 50%;
    padding: 15px; }
    main article p {
      font-weight: 500;
      position: relative; }
    main article > div:last-child div {
      padding-bottom: 50px; }
    main article ul {
      padding: 0 20px 0 50px;
      /* line-height: 20px; */
      font-weight: 500;
      margin: 0;
      width: 100%; }
      main article ul li {
        color: black;
        padding-bottom: 5px;
        font-weight: 500; }
    main article a {
      display: inline;
      font-weight: 500;
      color: #620ea9;
      text-decoration: none;
      border-bottom: 2px solid #620ea9;
      position: relative !important;
      z-index: 5;
      transition: color 0.1s 0.2s linear, background-color 0.1s 0.2s linear; }
      main article a:before {
        position: absolute;
        left: 0;
        bottom: 2px;
        width: 100%;
        height: 1px;
        transition: height 0.3s ease-in, width 0.3s ease-in, left 0.3s ease-in, bottom 0.3s ease-in;
        background-color: #620ea9;
        z-index: -1; }
      main article a:hover {
        /* &:before {
          height: 100%;
          transition: height 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          left: -4px;
          bottom: 0;
          width: calc(100% + 8px);
        }*/
        background-color: #620ea9;
        color: white;
        transition: color 0.1s linear, background-color 0.1s linear; }
      main article a:active:before, main article a:focus:before {
        background-color: #ff7f00; }

.main--wrapper {
  position: relative;
  background-color: #efefef;
  width: calc(100% - 40px);
  margin: 0 auto 60px;
  padding-bottom: 50px; }
  .main--wrapper:after {
    content: "";
    width: calc(100% + 40px);
    position: absolute;
    height: 50px;
    background-color: #efefef;
    transform: translate(-50%, -100%);
    left: 50%;
    top: 0; }

.main-language {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  position: relative;
  overflow: hidden;
  padding: 0; }
  .main-language:after {
    content: "";
    background-color: #ffe5cc;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    max-height: 100%;
    z-index: 9;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0s ease-in, opacity 0.3s ease-in; }
  .main-language.loading:after {
    opacity: 1;
    transform: translateY(0%); }
  .main-language.loaded:after {
    opacity: 0; }
  .main-language div.content-row {
    display: flex;
    flex-direction: row;
    width: 100%; }
    .main-language div.content-row > div {
      width: 100%;
      background-color: white;
      display: flex;
      flex-direction: column;
      padding: 20px; }
      .main-language div.content-row > div .article-flag {
        margin: 30px 20px 0 0; }
      .main-language div.content-row > div:nth-child(even) {
        background-color: #ffe5cc; }
        .main-language div.content-row > div:nth-child(even) .article-flag {
          margin: 30px 20px 0 0; }
  .main-language > p {
    margin: 0; }

.compareLaguage {
  z-index: 30;
  padding: 20px;
  display: flex;
  width: 100%;
  color: white;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 40px; }
  .compareLaguage span {
    font-weight: bold;
    padding: 0 20px; }
  .compareLaguage label {
    flex: 1 1 50%;
    display: flex;
    position: relative; }
    .compareLaguage label select {
      width: 100%;
      height: 50px;
      background: #ffffff 0% 0% no-repeat padding-box;
      border: 1px solid #620ea9;
      border-radius: 10px;
      line-height: 1.4rem;
      padding: 10px 20px; }
      .compareLaguage label select:focus {
        outline: 2px solid #620ea9; }
      .compareLaguage label select option {
        background-color: red;
        padding: 20px;
        font-size: 100px;
        line-height: 1.4rem; }

.article-header {
  display: flex;
  flex-direction: row;
  flex: 1 0 50%;
  background-color: white; }

.article-title {
  flex: 1 0 50%;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 10px 0;
  padding: 0 40px;
  color: #620ea9;
  width: 100%; }

.article-footer {
  height: 100px; }

.compareLaguage {
  background-color: #ff7f00;
  flex: 1 0 50%; }

ul {
  padding: 0; }

.primary-menu {
  z-index: 1;
  width: calc(100% - 40px);
  padding: 30px 40px;
  margin: 0 auto;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  background-color: #620ea9;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly; }
  .primary-menu ul,
  .primary-menu ol,
  .primary-menu li {
    padding: 0 10px;
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none; }
  .primary-menu a {
    text-decoration: none;
    padding: 5px 20px;
    color: white; }
  .primary-menu li a {
    font-weight: 100;
    text-decoration: none; }
  .primary-menu li.current_page_item a {
    font-weight: normal;
    text-decoration: underline; }

.article-flag {
  width: 36px;
  margin: 40px 20px; }

.wrapper {
  background-color: #efefef; }

.footer {
  background-color: white;
  max-width: 1300px;
  width: calc(100% - 40px);
  padding: 40px 40px 20px;
  margin: 0 auto 60px;
  border-radius: 30px; }
  .footer h2 {
    color: #620ea9;
    padding: 0;
    margin: 0 0 10px;
    font-size: 36px; }
  .footer .seperator {
    height: 1px;
    width: 100%;
    background-color: #620ea9; }
  .footer-content {
    display: flex;
    flex-wrap: row;
    margin-top: 20px;
    padding: 30px 0 60px;
    display: flex;
    justify-content: space-between; }
  .footer-menu {
    display: flex;
    flex-direction: column; }
  .footer-logos {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center; }
    .footer-logos img {
      height: 100px; }
    .footer-logos a:nth-child(2) img {
      height: 80px; }

.desktop-label {
  display: flex; }

.mobile-label {
  display: none; }
  .mobile-label .dropdown-flag {
    margin-right: 10px; }

.nav-mobile {
  overflow: auto;
  display: none;
  background-color: #620ea9;
  color: white;
  position: fixed;
  left: 0;
  top: 0;
  padding-top: 135px;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  align-items: center;
  flex-direction: column; }
  .nav-mobile hr {
    width: 80%;
    margin: 0 auto; }
  .nav-mobile ul {
    list-style: none; }
    .nav-mobile ul.contacts li {
      text-align: center; }
      .nav-mobile ul.contacts li a {
        text-align: center;
        line-height: 6vw;
        font-size: 3vw; }
    .nav-mobile ul li {
      text-align: center; }
      .nav-mobile ul li a {
        line-height: 10vw;
        color: white;
        text-decoration: none;
        font-size: 5vw; }

.hamburger {
  display: none; }

/*
*
*
*
*
*
*
*
*
*
*
*/
.clickMe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 110;
  background-color: transparent; }

@media screen and (max-width: 1024px) {
  .clickMe {
    width: 70px;
    height: 100%; }
  .main-language div div .article-flag {
    margin: 30px 20px 0 20px; }
  .hamburger {
    display: flex; }
  .topbar {
    padding: 15px 20px 15px; }
  .logos {
    display: flex;
    flex-direction: row;
    align-items: center; }
    .logos .logo-container img {
      height: 40px;
      padding: 0 10px 0 0; }
  .nav {
    display: none; }
  html,
  body {
    background-color: white; }
  .main--wrapper {
    background-color: white; }
  .wrapper {
    background-color: white; }
  .nav-mobile {
    display: flex;
    transform: translateY(-100%); }
    .nav-mobile.active {
      transform: translateY(0%); }
  .hidden {
    visibility: hidden !important; }
  header {
    margin-top: 0; }
    header section {
      padding: 90px 40px 70px; }
  .main {
    margin: 0;
    width: 100%; }
    .main--wrapper {
      margin: 0;
      width: 100%; }
      .main--wrapper::after {
        display: none; }
  .dropdown .select {
    display: flex;
    align-items: center; }
    .dropdown .select img {
      height: 30px;
      width: 30px; }
  .desktop-label {
    display: none; }
  .mobile-label {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 10%; }
    .mobile-label img {
      height: 30px;
      width: 30px; }
    .mobile-label:hover {
      background-color: #962fee;
      border-top-left-radius: 99px;
      border-bottom-left-radius: 99px; }
  .footer {
    width: calc(100% - 20px);
    flex-direction: column;
    padding: 0 10px; }
    .footer-logos {
      margin-top: 40px;
      flex-direction: column-reverse; }
    .footer-content {
      display: flex;
      flex-direction: column;
      padding-bottom: 0; }
  .topbar {
    position: fixed;
    top: 0;
    width: calc(100%); }
    .topbar.active {
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0; }
  .navigation {
    display: none; }
  .article-header {
    flex-direction: column-reverse;
    background-color: white;
    transition: background-color 0.4s ease-in-out; }
    .article-header.active {
      background-color: #ffe5cc; }
  .article-title {
    margin: 0 0 20px;
    padding: 0 20px;
    text-align: left;
    justify-content: flex-start; }
    .article-title h1 {
      margin: 0; }
    .article-title.stuck {
      margin: 100px 0 20px; }
  .article-footer {
    height: 10px; }
  .compareLaguage {
    top: 120px;
    position: sticky;
    gap: 0px;
    align-items: stretch;
    display: flex;
    transform: translateY(-50%);
    padding: 0;
    border-radius: 99px;
    background-color: #620ea9;
    border-bottom-left-radius: 90px;
    flex: 1 0 100%; }
    .compareLaguage.stuck {
      border-top-left-radius: 0px;
      position: fixed; }
      .compareLaguage.stuck:before {
        position: absolute;
        content: "";
        background-color: #620ea9;
        top: 0;
        transform: translateY(-100%);
        left: 0;
        width: 100%;
        height: 101px; }
      .compareLaguage.stuck label {
        border-top-right-radius: 0px; }
        .compareLaguage.stuck label:after {
          border-top-right-radius: 0px; }
      .compareLaguage.stuck .container {
        border-top-right-radius: 0px;
        border-bottom-right-radius: 41px; }
        .compareLaguage.stuck .container:before {
          position: absolute;
          content: "";
          background-color: #ff7f00;
          top: 0;
          transform: translateY(-100%);
          left: 0;
          width: 100%;
          border-top-right-radius: 0px;
          height: 101px; }
    .compareLaguage * {
      user-select: none; }
    .compareLaguage label {
      cursor: pointer; }
      .compareLaguage label:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #ff7f00;
        border-top-right-radius: 99px;
        border-bottom-right-radius: 99px; }
      .compareLaguage label .est-button {
        padding: 20px 40px;
        height: 100%;
        display: flex;
        border-top-left-radius: 30px;
        border-bottom-left-radius: 30px; }
      .compareLaguage label .container {
        background-color: #ff7f00;
        padding: 20px;
        border-top-right-radius: 99px;
        border-bottom-right-radius: 99px; }
      .compareLaguage label #chosenLanguage {
        padding-left: 50px;
        color: white; }
      .compareLaguage label:hover .container {
        background-color: ligthen(#ff7f00, 20) !important; }
      .compareLaguage label:hover:after {
        background-color: ligthen(#ff7f00, 20) !important; }
  .main-language {
    overflow: hidden; }
    .main-language div {
      width: 100%;
      transition: transform 0.4s ease-in-out;
      transform: translateX(0%); }
      .main-language div.content-row {
        width: 200vw !important; }
        .main-language div.content-row > div {
          width: 100vw !important; }
      .main-language div > div {
        padding-right: 20px; }
    .main-language.active > div {
      transform: translateX(-50%); }
    .main-language.active:after {
      transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
      transform: translateX(-100%); }
    .main-language:after {
      width: 100vw;
      transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
      transform: translateX(100%);
      right: 0; } }

.otgs-development-site-front-end {
  display: none !important; }

article {
  transition: all 1s ease-in-out; }

/*
#wpadminbar {
  display: none;
}
*/
.chart-block {
  width: 100%; }
  @media screen and (max-width: 1024px) {
    .chart-block {
      transform: translateX(0) !important; } }

.chart-wrapper {
  width: 100%;
  max-width: 100% !important;
  padding: 0 40px; }
  @media screen and (max-width: 1024px) {
    .chart-wrapper {
      padding: 0 !important; } }
  .chart-wrapper canvas {
    width: 100% !important; }
    @media screen and (max-width: 1024px) {
      .chart-wrapper canvas {
        height: auto !important; } }
