:root {
  --green-color: #01cc5d;
  --light-green-color: #93e9ba;
  --light-green-color-variant1: #c6f4db;
  --lighter-green-color: #e7faf0;
  --dark-green-color: #008c3f;
  --blue-color: #2fd7d2;
  --light-blue-color: #9eecea;
  --lighter-blue-color: #def9f8;
  --text-blue-color: #1e8a87;
  --header-height: 80px;
  --dark-gray-color: #000a05;
  --gray-color: #474747;
  --gray-hover-color: #747474;
  --newsletter-gray-color: #e9e9ea;
  --teal-color: #05c9c4;
  --purple-color: #5935a3;
  --light-purple-color: #8754f2;
  --placeholder-color: #999;
  --box-shadow-info-box: 0px 16px 48px -20px #676d6d47;
  --section-spacing-breakpoint-800: 40px;
  --section-spacing-breakpoint-1024: 50px;
  --section-spacing-breakpoint-1280: 60px;
  --section-spacing-breakpoint-1600: 70px;
  --section-spacing-default: 100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

body {
  font-family: Poppins, sans-serif;
}

body.disable-scroll {
  overflow: hidden;
}

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

.row-flex {
  justify-content: space-between;
  display: flex;
}

.grid-flex {
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
}

.main-header {
  background: #fff;
  padding: 15px 3.3vw 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 2px 4px #0000001a;
}

.main-header.sticky, .header-mobile.sticky {
  z-index: 1000;
  width: 100%;
  position: fixed;
}

.header-container {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.header-left {
  gap: 60px;
  display: flex;
}

.header-right {
  gap: 2rem;
  display: flex;
}

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

.header-right {
  align-items: center;
  margin-right: 300px;
  padding-top: 3px;
}

.logo img {
  height: 40px;
}

.main-nav ul, .secondary-nav ul {
  gap: 60px;
  list-style: none;
  display: flex;
}

.main-nav a, .secondary-nav a {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--green-color);
}

.lang-selector {
  color: var(--green-color);
  border: 2px solid var(--green-color);
  cursor: pointer;
  background: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  padding: 2px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.lang-selector.hidden {
  display: none;
}

.profile-btn {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 20px;
}

.mobile-menu-header .btn-login {
  align-items: center;
  gap: 10px;
  font-size: 16px;
  display: flex;
}

.mobile-menu-header .btn-login.hidden {
  display: none;
}

.mobile-menu-header .btn-back {
  align-items: center;
  gap: 10px;
  margin-right: auto;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.cta-button {
  z-index: 11;
  background: var(--green-color);
  color: #fff;
  cursor: pointer;
  text-align: center;
  white-space: pre-line;
  border: none;
  border-radius: 0 0 4px 4px;
  padding: 14px 42px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  position: absolute;
  top: -15px;
  right: 0;
  box-shadow: 0 16px 48px -20px #199f31;
}

.header-mobile {
  background: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px 10px 25px;
  display: none;
  box-shadow: 0 2px 4px #0000001a;
}

.header-mobile .logo a {
  display: inline-block;
}

.header-mobile .demo-button {
  background: var(--green-color);
  color: #fff;
  cursor: pointer;
  text-align: center;
  white-space: pre-line;
  border: none;
  border-radius: 4px;
  margin-left: auto;
  margin-right: 20px;
  padding: 10px 27px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  box-shadow: 0 16px 48px -20px #199f31;
}

.mobile-menu-toggle {
  cursor: pointer;
  z-index: 1000;
  background: none;
  border: none;
  padding: 10px 6px;
  display: none;
  position: relative;
}

.hamburger {
  background: #333;
  width: 24px;
  height: 3px;
  transition: all .3s;
  display: block;
  position: relative;
}

.hamburger:before, .hamburger:after {
  content: "";
  background: #333;
  width: 24px;
  height: 3px;
  transition: all .3s;
  position: absolute;
  left: 0;
}

.hamburger:before {
  top: -8px;
}

.hamburger:after {
  top: 8px;
}

.mobile-menu-overlay {
  z-index: 900;
  background: #000c;
  display: none;
  position: fixed;
  inset: 74px 0 0;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu {
  z-index: 1000;
  width: 85%;
  max-height: calc(100% - 74px);
  display: none;
  position: fixed;
  top: 74px;
  right: 0;
  overflow-y: auto;
}

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

.mobile-navbar {
  background-color: #fbf9f9;
  border-radius: 0 0 4px 4px;
  margin: 0;
  padding: 20px 30px;
  list-style: none;
}

.mobile-navbar.hidden {
  display: none;
}

.mobile-submenu {
  background-color: #fbf9f9;
  padding: 20px 30px;
  display: none;
}

.mobile-submenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-submenu.active {
  display: block;
}

.mobile-submenu-toggle {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.mobile-submenu-toggle img {
  width: 18px;
  height: 18px;
}

.mobile-submenu .submenu-title {
  color: var(--green-color);
  padding-bottom: 15px;
  font-weight: 600;
}

.lang-selection {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: none;
}

.lang-selection.active {
  display: flex;
}

.mobile-navbar li {
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 10px;
}

.mobile-submenu .btn-back {
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.mobile-submenu .btn-back img {
  width: 20px;
  height: 20px;
}

.mobile-submenu .mobile-submenu-content > li {
  background-color: #fff;
  margin-bottom: 5px;
  padding: 10px;
}

.mobile-submenu .mobile-submenu-content {
  font-family: Roboto;
}

.mobile-submenu ul li {
  padding-top: 10px;
  padding-bottom: 10px;
}

.mobile-navbar ul > li {
  padding-bottom: 10px;
}

.mobile-navbar li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mobile-navbar li a {
  margin-bottom: 10px;
  font-size: 18px;
}

.mobile-submenu li a {
  font-size: 16px;
}

.mobile-dropdown-content {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
  display: none;
}

.mobile-dropdown-content.active {
  display: block;
}

.mobile-dropdown-toggle {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  display: flex;
}

.mobile-dropdown-toggle.active {
  color: var(--green-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.mobile-dropdown-toggle.active img {
  transform-origin: center;
  transform: scale3d(1, -1, 1);
}

.mobile-navbar a, .mobile-submenu a {
  color: var(--gray-color);
}

.mobile-menu-header {
  background-color: #fff;
  border-radius: 4px 4px 0 0;
  align-items: center;
  gap: 30px;
  padding: 20px 30px 20px 20px;
  display: flex;
}

.mobile-menu-close {
  z-index: 1000;
  background-color: #fff;
  border: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: none;
  position: absolute;
  top: 90px;
  left: 10px;
}

.mobile-menu-close.active {
  display: block;
}

.mobile-menu-close .close-menu:before, .mobile-menu-close .close-menu:after {
  content: "";
  background: var(--gray-color);
  width: 20px;
  height: 2px;
  transition: all .3s;
  position: absolute;
  left: 5px;
}

.mobile-menu-close .close-menu:before {
  top: -12px;
  transform: translate3d(0, 26px, 0)rotate(45deg);
}

.mobile-menu-close .close-menu:after {
  top: 40px;
  transform: translate3d(0, -26px, 0)rotate(135deg);
}

.btn {
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  padding: 14px 40px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 36px;
}

.btn-full-width {
  text-align: center;
  width: 100%;
  display: block;
}

.btn:hover, .btn:focus {
  background-image: linear-gradient(#0000, #0000000d 40%, #0000001a);
}

.btn:active {
  border-color: #000;
  box-shadow: inset 0 0 0 1px #00000026, inset 0 0 6px #0003;
}

.btn-disabled, .btn-disabled:active, .btn-disabled:focus, .btn-disabled:hover, .btn[disabled] {
  box-shadow: none;
  cursor: not-allowed;
  opacity: .4;
  pointer-events: none;
  background-image: none;
  border: none;
}

.btn-primary {
  background-color: var(--green-color);
  color: #fff;
  box-shadow: 0px 16px 48px -20px var(--green-color);
}

.btn-blue {
  background-color: var(--blue-color);
  color: #fff;
  box-shadow: 0px 16px 48px -20px var(--blue-color);
}

.btn-purple {
  background-color: var(--purple-color);
  color: #fff;
  box-shadow: 0px 16px 48px -20px var(--purple-color);
}

.btn-light-purple {
  background-color: var(--light-purple-color);
  color: #fff;
  box-shadow: 0px 16px 48px -20px var(--light-purple-color);
}

.btn-white {
  color: var(--gray-color);
  background-color: #fff;
  font-weight: 400;
}

.btn-white.active-purple {
  background-color: var(--purple-color);
  color: #fff;
}

.btn-link {
  background-color: unset;
  cursor: pointer;
  border: 0;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
}

.flex-responsive-container {
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
}

.flex-responsive-item {
  box-sizing: border-box;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  flex: calc(33.333% - 20px);
  margin: 10px;
  padding: 20px;
}

.custom-li:before {
  content: "";
  background-color: #707070;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin-right: 20px;
  display: inline-block;
}

.search-wrapper {
  border-radius: 4px;
  align-items: center;
  width: 100%;
  height: 90px;
  font-family: Roboto, sans-serif;
  display: flex;
  box-shadow: inset 0 0 0 2px #fff;
}

.search-wrapper img {
  margin: 20px;
}

.search-wrapper input[type="text"]::placeholder {
  color: #fff;
}

.search-wrapper input[type="text"] {
  color: #fff;
  font: inherit;
  background: none;
  border: 0;
  outline: none;
  flex: 1;
  width: 80%;
  height: 100%;
  padding: 0 0 0 8px;
  font-size: 37px;
}

.form {
  font-family: Roboto, sans-serif;
}

.form input[type="text"] {
  font: inherit;
  color: inherit;
  background-color: #fff;
  border: 0;
  border-radius: 8px;
  outline: none;
  width: 100%;
  height: 70px;
  padding: 20px 32px;
  font-size: 20px;
}

.form textarea {
  width: 100%;
  font: inherit;
  color: inherit;
  resize: none;
  border: 0;
  border-radius: 8px;
  outline: none;
  padding: 20px 32px;
  font-size: 20px;
}

.form input[type="text"]::placeholder, .form textarea::placeholder {
  color: var(--placeholder-color);
  font-family: inherit;
}

.footer {
  background-color: #fff;
}

.footer-content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 50px 7vw;
}

.footer-links > div {
  flex-direction: column;
  flex: 1;
  gap: 20px;
  display: flex;
}

.footer-links a:hover {
  color: var(--gray-hover-color);
}

.footer-links a {
  color: var(--gray-color);
  font-family: Roboto, sans-serif;
  font-size: 20px;
  text-decoration: none;
}

.footer-social {
  justify-content: space-between;
  margin-top: 100px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
}

.footer-social .icons {
  align-items: center;
  gap: 40px;
}

.footer-social .icons img {
  width: 24px;
}

.main-content {
  color: var(--gray-color);
  background-color: #ebedf2;
  margin: 0 auto;
}

.main-content .section-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 62px;
}

.main-content .test-level .section-title {
  font-size: 36px;
}

.main-content .configure-package .section-title {
  font-size: 42px;
}

.main-content .section-subtitle {
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
}

.main-content .section-description {
  font-family: Roboto, sans-serif;
  font-size: 20px;
  line-height: 36px;
}

.main-content .container {
  margin: 0 7vw;
}

.two-columns {
  align-items: center;
  display: flex;
}

.column-image {
  flex: 1;
  line-height: 0;
  position: relative;
  overflow: hidden;
}

.column-image img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.column-text {
  flex: 1;
}

.dropdown-menu {
  position: relative;
}

.dropdown-menu .dropdown-content {
  z-index: 10;
  background-color: #fff;
  min-width: 160px;
  display: none;
  position: absolute;
  box-shadow: 0 8px 16px #0003;
}

.dropdown-menu .dropdown-content a {
  color: var(--gray-color);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-menu .dropdown-content a:hover {
  color: var(--green-color);
}

.dropdown-menu:hover .dropdown-content {
  display: block;
}

.navbar {
  background-color: #fff;
  display: flex;
}

.navbar .dropdown-mega {
  overflow: hidden;
}

.navbar > li {
  padding: 6px 0 21px;
}

.navbar .dropdown-mega h3 {
  color: var(--gray-color);
  padding-bottom: 40px;
  font-family: Poppins, sans-serif;
  font-size: 32px;
}

.navbar .dropdown-mega .dropdown-content {
  z-index: 10;
  width: 75%;
  padding: var(--section-spacing-default) calc(3.3vw + 126px);
  background-color: #fff;
  display: none;
  position: fixed;
  top: 78px;
  left: 0;
}

.navbar .dropdown-mega .dropdown-content.course-adults {
  width: 35%;
}

.navbar .dropdown-mega .dropdown-content.course-adults .column {
  flex: 1;
}

.navbar .dropdown-mega:hover .dropdown-content {
  display: block;
}

.navbar .dropdown-mega .column {
  background-color: #fff;
  flex: 0 0 33.33%;
}

.navbar .dropdown-mega .column a {
  color: var(--gray-color);
  text-align: left;
  padding: 8px 0;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.navbar .dropdown-mega .column a:hover {
  color: var(--green-color);
}

.navbar .dropdown-mega .row {
  display: flex;
}

@media (width >= 1921px) {
  .column-image img {
    width: 100%;
    height: auto;
  }
}

@media (width >= 769px) {
  .visible-xs {
    display: none !important;
  }
}

@media (width >= 900px) {
  .visible-custom-xs {
    display: none;
  }
}

@media (width >= 769px) and (width <= 1199px) {
  .cta-button {
    padding: 24px;
  }

  .header-right {
    margin-right: 250px;
  }

  .flex-responsive-item {
    flex: calc(50% - 20px);
  }

  .main-content .section-title {
    font-size: 36px;
    line-height: 48px;
  }

  .main-content .test-level .section-title {
    font-size: 22px;
  }

  .main-content .configure-package .section-title {
    font-size: 28px;
    line-height: 36px;
  }

  .navbar .dropdown-mega .dropdown-content.course-adults {
    width: 50%;
  }

  .navbar .dropdown-mega .dropdown-content.course-children {
    width: 95%;
  }

  .navbar .dropdown-mega h3 {
    font-size: 24px;
    line-height: 36px;
  }
}

@media (width >= 769px) and (width <= 899px) {
  .main-header.hidden-xs {
    display: none;
  }

  .header-right {
    margin-right: 150px;
  }

  .visible-custom-xs {
    display: block;
  }

  .hidden-custom-xs {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-nav, .secondary-nav {
    top: var(--header-height);
    z-index: 950;
    background: #fff;
    padding: 2rem;
    display: none;
    position: fixed;
    left: 0;
    right: 0;
  }

  .header-right {
    gap: 1rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .mobile-menu-overlay, body.menu-open .main-nav, body.menu-open .secondary-nav {
    display: block;
  }

  body.menu-open .hamburger {
    background: none;
  }

  body.menu-open .hamburger:before {
    top: 0;
    transform: rotate(45deg);
  }

  body.menu-open .hamburger:after {
    top: 0;
    transform: rotate(-45deg);
  }

  .header-mobile {
    display: flex;
  }
}

@media (width >= 769px) and (width <= 999px) {
  .main-content .section-title {
    font-size: 26px;
    line-height: 40px;
  }

  .main-content .test-level .section-title, .main-content .configure-package .section-title {
    font-size: 22px;
  }

  .main-content .section-description {
    font-size: 16px;
    line-height: 28px;
  }

  .navbar .dropdown-mega .dropdown-content {
    padding: var(--section-spacing-breakpoint-800) var(--section-spacing-breakpoint-800);
  }
}

@media (width >= 900px) and (width <= 999px) {
  .header-left, .main-nav ul, .secondary-nav ul {
    gap: 1.5vw;
  }

  .navbar .dropdown-mega .dropdown-content {
    padding: var(--section-spacing-breakpoint-800) var(--section-spacing-breakpoint-800) var(--section-spacing-breakpoint-800) calc(4.8vw + 66px);
  }
}

@media (width >= 1000px) and (width <= 1199px) {
  .main-content .section-title {
    font-size: 36px;
    line-height: 58px;
  }

  .main-content .test-level .section-title {
    font-size: 28px;
  }

  .main-content .configure-package .section-title {
    font-size: 22px;
  }

  .main-content .section-description {
    font-size: 18px;
    line-height: 32px;
  }

  .navbar .dropdown-mega .dropdown-content {
    padding-top: var(--section-spacing-breakpoint-1024);
    padding-bottom: var(--section-spacing-breakpoint-1024);
    padding-right: var(--section-spacing-breakpoint-1024);
    width: 80%;
  }
}

@media (width >= 1200px) and (width <= 1299px) {
  .main-content .section-title {
    font-size: 38px;
    line-height: 58px;
  }

  .main-content .test-level .section-title {
    font-size: 30px;
  }

  .main-content .configure-package .section-title {
    font-size: 24px;
  }

  .navbar .dropdown-mega h3 {
    font-size: 24px;
    line-height: 50px;
  }

  .navbar .dropdown-mega .dropdown-content.course-children {
    width: 80%;
  }

  .navbar .dropdown-mega .dropdown-content.course-adults {
    width: 45%;
  }

  .navbar .dropdown-mega .dropdown-content {
    padding-top: var(--section-spacing-breakpoint-1280);
    padding-bottom: var(--section-spacing-breakpoint-1280);
    padding-right: var(--section-spacing-breakpoint-1024);
  }
}

@media (width >= 1300px) and (width <= 1399px) {
  .main-content .section-title {
    font-size: 38px;
    line-height: 58px;
  }

  .main-content .test-level .section-title {
    font-size: 32px;
  }

  .main-content .configure-package .section-title {
    font-size: 24px;
  }

  .navbar .dropdown-mega h3 {
    font-size: 32px;
    line-height: 55px;
  }

  .navbar .dropdown-mega .dropdown-content.dropdown-content.course-children {
    width: 80%;
  }

  .navbar .dropdown-mega .dropdown-content.course-adults {
    width: 40%;
  }

  .navbar .dropdown-mega .dropdown-content {
    padding-top: var(--section-spacing-breakpoint-1280);
    padding-bottom: var(--section-spacing-breakpoint-1280);
    padding-right: var(--section-spacing-breakpoint-1024);
  }
}

@media (width >= 1400px) and (width <= 1499px) {
  .main-content .section-title {
    font-size: 40px;
    line-height: 60px;
  }

  .main-content .test-level .section-title {
    font-size: 32px;
  }

  .main-content .configure-package .section-title {
    font-size: 28px;
  }

  .navbar .dropdown-mega .dropdown-content {
    padding-top: var(--section-spacing-breakpoint-1280);
    padding-bottom: var(--section-spacing-breakpoint-1280);
    padding-right: var(--section-spacing-breakpoint-1024);
  }

  .navbar .dropdown-mega .dropdown-content.dropdown-content.course-children {
    width: 80%;
  }

  .navbar .dropdown-mega .dropdown-content.dropdown-content.dropdown-content.course-adults {
    width: 40%;
  }
}

@media (width >= 1500px) and (width <= 1799px) {
  .main-content .section-title {
    font-size: 42px;
    line-height: 66px;
  }

  .main-content .test-level .section-title, .main-content .configure-package .section-title {
    font-size: 34px;
  }

  .navbar .dropdown-mega .dropdown-content.dropdown-content.course-children {
    width: 80%;
  }

  .navbar .dropdown-mega .dropdown-content {
    padding-top: var(--section-spacing-breakpoint-1280);
    padding-bottom: var(--section-spacing-breakpoint-1280);
    padding-right: var(--section-spacing-breakpoint-1024);
  }

  .navbar .dropdown-mega .dropdown-content.dropdown-content.dropdown-content.course-adults {
    width: 38%;
  }
}

@media (width >= 1800px) and (width <= 1899px) {
  .main-content .section-title {
    font-size: 44px;
    line-height: 66px;
  }

  .navbar .dropdown-mega .dropdown-content {
    padding-top: var(--section-spacing-breakpoint-1600);
    padding-bottom: var(--section-spacing-breakpoint-1600);
    padding-right: var(--section-spacing-breakpoint-1024);
  }

  .navbar .dropdown-mega .dropdown-content.dropdown-content.dropdown-content.course-adults {
    width: 35%;
  }
}

@media (width >= 769px) and (width <= 1099px) {
  .footer-links.row-flex {
    align-items: flex-start;
  }

  .footer-links > div {
    flex-basis: 33.33%;
    margin-bottom: 20px;
  }

  .footer-links a {
    font-size: 18px;
  }

  .main-nav ul {
    gap: calc(20px + 1vw);
  }
}

@media (width <= 768px) {
  .hidden-xs {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-container {
    padding: 0 1rem;
  }

  .main-nav, .secondary-nav {
    top: var(--header-height);
    z-index: 950;
    background: #fff;
    padding: 2rem;
    display: none;
    position: fixed;
    left: 0;
    right: 0;
  }

  .main-nav ul, .secondary-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .header-right {
    gap: 1rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .mobile-menu-overlay, body.menu-open .main-nav, body.menu-open .secondary-nav {
    display: block;
  }

  body.menu-open .hamburger {
    background: none;
  }

  body.menu-open .hamburger:before {
    top: 0;
    transform: rotate(45deg);
  }

  body.menu-open .hamburger:after {
    top: 0;
    transform: rotate(-45deg);
  }

  .header-mobile {
    display: flex;
  }

  .flex-responsive-item {
    flex: calc(100% - 20px);
  }

  .two-columns {
    display: block;
  }

  .main-content .section-title {
    font-size: 24px;
    line-height: 32px;
  }

  .main-content .test-level .section-title {
    font-size: 24px;
  }

  .main-content .configure-package .section-title {
    font-size: 28px;
    line-height: 36px;
  }

  .main-content .section-subtitle {
    font-size: 24px;
    line-height: 34px;
  }

  .main-content .section-description {
    font-size: 16px;
    line-height: 24px;
  }

  .row-flex {
    display: block;
  }

  .footer-social {
    margin-top: 40px;
    padding-bottom: 40px;
  }

  .footer-links > div {
    margin-bottom: 20px;
  }

  .footer-social .icons {
    padding-top: 20px;
  }

  .footer-social .icons img {
    margin-right: 20px;
  }
}
/*# sourceMappingURL=configurare-pachet.6de28795.css.map */
