/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  
  --lightGrey: #fcfcfc;
  --pink: #b52b65;
  --darkPurple: #4f3961;
  --darkGrey: #585858;
  --darkerGrey: #6d6d6d;
  --yellow: #ffe75e;
  --white: #fff;
  --familyRoboto: "Roboto", sans-serif;
  --familyRobotoSlab: "Roboto Slab", sans-serif;
  --bold: bold;
}

html {
  overflow-x: initial !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    
	
  }
}

body {
  margin: 0;
  background-color: white;
  font-family: var(--familyRoboto);
  line-height: 1.6;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
  outline-color: var(--yellow);
}

/* Header */
.header {
  padding: 1rem;
  background-color: var(--lightGrey);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
}

.nav-toggle {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: relative;
  border: none;
  background-color: transparent;
}

.hamburger {
  top: 10px;
  left: 0;
  display: block;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  border-radius: 3px;
  background-color: var(--darkPurple);
}

.hamburger::before {
  top: -10px;
  left: 0;
}

.hamburger::after {
  left: 0;
  bottom: -12px;
}

[aria-expanded="true"] .hamburger,
[aria-expanded="true"] .hamburger::before,
[aria-expanded="true"] .hamburger::after {
  transition: all 0.3s ease-in-out;
}

[aria-expanded="true"] .hamburger::before {
  opacity: 0;
  transform: rotate(0deg) scale(0.2);
}

[aria-expanded="false"] .hamburger::before {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

[aria-expanded="true"] .hamburger {
  transform: rotate(-45deg);
}

[aria-expanded="true"] .hamburger::after {
  transform: rotate(90deg) translateX(-12px);
}

[aria-expanded="false"] .hamburger,
[aria-expanded="false"] .hamburger::before,
[aria-expanded="false"] .hamburger::after {
  transition: all 0.3s ease-in-out;
}

.nav {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: -80px;
  left: -1rem;
  width: 50vw;
  height: 420px;
  transition: all 0.3s ease-in-out;
  transition-property: opacity, visibility, transform, background-color,
    box-shadow;
  background-color: #f4eeff;
  transform: translateX(-200%);
}

.logo {
  z-index: 2;
}

.nav-list {
  margin-top: 150px;
}

.nav.is-open {
  width: 70vw;
  height: 420px;
  top: -80px;
  margin-left: 0;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  background-color: #f4eeff;
  box-shadow: 0 6px 20px rgba(96, 109, 175, 0.2);
}

.nav.is-open .nav-link {
  margin-top: 1rem;
  margin-left: 1rem;
  font-size: 1.1rem;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  margin-top: 1rem;
  color: var(--darkGrey);
  font-size: 1.1rem;
}

.nav-link-cta,
.nav-link:hover {
  color: var(--pink);
}

@media (min-width: 46em) {
  .nav-toggle {
    display: none;
    pointer-events: none;
  }

  .nav-list {
    margin-top: 0;
    display: flex;
  }

  .nav {
    width: auto;
    height: auto;
    position: static;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    background-color: initial;
  }
}

/* Intro */
.intro {
  margin-top: 2rem;
  padding: 0 1em;
}

.intro__title {
  margin: 0;
  font-family: var(--familyRobotoSlab);
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1.3;
  color: var(--darkPurple);
}

.intro__subtitle {
  margin: 1.2rem 0;
  font-size: 0.9rem;
  color: var(--darkGrey);
}

.button {
  display: inline-block;
  padding: 0.7em 1.2em;
  font-size: 1rem;
  background-color: var(--pink);
  color: var(--white);
  border-radius: 3px;
}

.button:hover {
  background-color: #a5285c;
}

.intro__illustration {
  max-width: 70%;
  margin: 2rem 0;
}

@media (min-width: 32em) {
  .intro {
    margin: 2rem auto 0;
    display: grid;
    
    grid-gap: 20px;
    grid-template-areas:
      ". img"
      "title img"
      "subtitle img"
      "button img"
      ". img";
  }

  .intro__title {
    grid-area: title;
    margin: 0;
  }

  .intro__subtitle {
    grid-area: subtitle;
    margin: 0;
  }

  .intro .button {
    grid-area: button;
    justify-self: start;
    align-self: start;
  }

  .intro__illustration {
    grid-area: img;
    align-self: center;
  }
}

@media (min-width: 60em) {
  .intro {
    width: 80%;
  }

  .intro__title {
    font-size: 4rem;
    margin: 0;
  }

  .intro__subtitle {
    font-size: 1.6rem;
		text-align:justify;
  }

  .button {
    font-size: 1.1rem;
  }
}

/* Features */
.features {
  padding: 0 1em;
  margin-top: 2.5rem;
  text-align: center;
}

.features__list li {
  padding: 1rem;
}

.features p {
  font-size: 0.9rem;
}

@media (min-width: 32em) {
  .features__list {
    display: flex;
    justify-content: space-around;
  }

  .features__list li {
    flex-basis: 350px;
  }
}

.features__list svg {
  display: block;
  margin: auto;
  max-width: 100%;
  margin-bottom: 1.5rem;
}

@media (min-width: 60em) {
  .features {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .features p {
    font-size: 1.3rem;
		color:black;
  }
}

.section__title {
  color: var(--darkPurple);
  font-weight: var(--bold);
  font-size: 1.85rem;
  
}

@media (min-width: 60em) {
  .section__title {
    font-size: 2.25rem;
  }
}

/* Grow */
.grow {
  padding: 0 1em;
  position: relative;

}

.grow svg {
  width: 100%;
}

.grow p {
  font-size: 0.9rem;
}

.blob {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

@media (min-width: 32em) {
  .grow {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: minmax(200px, 550px) 40%;
    grid-template-areas:
      ". img"
      "title img"
      "p img"
      ". img";
  }

  .grow__title {
    grid-area: title;
  }
	.grow__title2 {
    grid-area: title;
		text-align: center;
  }

  .grow p {
    grid-area: p;
    margin: 0;
  }

  .grow > svg:first-of-type {
    grid-area: img;
  }

  .blob {
    top: -50px;
  }
}

@media (min-width: 60em) {
  .grow {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .grow p {
    font-size: 1.1rem;
  }
}

/* Feedback */
.get-feedback {
  padding: 0 1em;
}
.get-feedback p {
  font-size: 0.9rem;
}

.get-feedback svg {
  width: 100%;
}

@media (min-width: 32em) {
  .get-feedback {
    display: grid;
    grid-gap: 24px;
    grid-template-columns: 50% minmax(200px, 550px);
    grid-template-areas:
      "img ."
      "img title"
      "img p"
      "img .";
  }

  .get-feedback__title {
    grid-area: title;
    margin-bottom: 0;
  }

  .get-feedback svg {
    grid-area: img;
  }

  .get-feedback p {
    grid-area: p;
    margin: 0;
  }
}

@media (min-width: 60em) {
  .get-feedback {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .get-feedback p {
    font-size: 1.1rem;
  }
}

/* Learning */
.learning {
  padding: 0 1em;
}

.learning p {
  font-size: 0.9rem;
}

.learning svg {
  width: 100%;
}

@media (min-width: 32em) {
  .learning {
    display: grid;
    grid-template-columns: minmax(200px, 450px) 50%;
    grid-template-areas:
      ". img"
      "title img"
      "p img"
      ". img";
  }

  .learning__title {
    grid-area: title;
  }

  .learning p {
    grid-area: p;
    margin: 0;
  }

  .learning svg {
    grid-area: img;
  }
}

@media (min-width: 60em) {
  .learning {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .learning p {
    font-size: 1.1rem;
  }
}

/* get-started */
.get-started li {
  width: 250px;
  height: 250px;
  padding: 2rem;
  margin: 1.5rem auto;
  background-image: url(https://res.cloudinary.com/alexandracaulea/image/upload/v1583497341/circle-shape_fbgxd9.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.get-started strong {
  font-size: 2.2rem;
}

.get-started p {
  margin: 0;
  margin-top: 5px;
  font-size: 0.9rem;
}

@media (min-width: 45em) {
  .get-started {
    margin-top: 100px;
  }
  .get-started ul {
    display: flex;
    justify-content: space-around;
  }

  .get-started li {
    width: 320px;
    height: 320px;
    background-size: initial;
  }
}

@media (min-width: 60em) {
  .get-started {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .get-started p {
    font-size: 1.1rem;
  }
}

/* Start learning */
.start-learning {
  position: relative;
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-align: center;
}

.start-learning .button {
  margin: 2rem 0;
}

.video-learning {
  width: 80vw;
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-size: 0;
  border-radius: 3px;
}

.video-learning:fullscreen {
  max-width: none;
  width: 100%;
}

.video-learning:-webkit-full-screen {
  max-width: none;
  width: 100%;
}

.video {
  width: 100%;
  object-fit: cover;
  cursor: pointer;
}

.video-button {
  max-width: 50px;
  padding: 0.5rem;
  background: none;
  border: 0;
  line-height: 1;
  color: var(--white);
  text-align: center;
  cursor: pointer;
}

.video-button:hover {
  background-color: var(--pink);
}

.video-slider {
  width: 10px;
  height: 30px;
}

.video-controls {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.video-learning .progress {
  height: 10px;
}

.video-controls > * {
  flex: 1;
}

.progress {
  display: flex;
  flex-basis: 100%;
  height: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: ew-resize;
}

.progress-fill {
  width: 0%;
  background-color: var(--pink);
  flex: 0;
  flex-basis: 0%;
}

.blob-learning {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: -1;
  height: 500px;
}

@media (min-width: 32em) {
  .blob-learning {
    top: -100px;
    height: 800px;
  }
}

/* Footer */
.footer {
  padding: 1em;
  margin: 2rem auto 0;
  background-color: #f8f8f8;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 100px));
}

.footer-title {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--darkerGrey);
  letter-spacing: 1px;
}

.footer-link {
  font-size: 0.85rem;
  font-weight: var(--bold);
  color: inherit;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-newsletter {
  margin: 2rem auto;
  text-align: center;
}

.footer-newsletter p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--darkGrey);
}

.footer-email {
  display: block;
  width: 100%;
  padding: 0.35rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: none;
  color: var(--darkGrey);
  background-color: var(--white);
  border: 2px solid rgba(79, 57, 97, 0.141);
  border-radius: 3px;
  outline-color: var(--yellow);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-error-message {
  display: block;
  text-align: left;
  color: #cc3648;
  visibility: hidden;
}

.form-error .footer-email {
  border-color: #cc3648;
}

.form-error .form-error-message {
  visibility: visible;
}

.button-email {
  margin-top: 1rem;
  border: none;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 2px 4px 0 rgba(14, 30, 37, 0.12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-social a {
  display: inline-block;
  padding: 0.5rem;
}

.footer-social svg {
  vertical-align: middle;
}

.copyright {
  flex-basis: 100%;
  text-align: center;
  color: var(--darkerGrey);
}

.dotted-link {
  color: #a94e76;
  border-bottom: 1px dashed #a94e76;
}

@media (min-width: 32em) {
  .footer-newsletter {
    text-align: left;
  }

  .footer-form {
    display: flex;
    position: relative;
  }

  .footer-email {
    width: auto;
  }

  .button-email {
    width: auto;
    margin: 0 0 0 1rem;
  }

  .form-error-message {
    position: absolute;
    top: 44px;
  }

  .footer-social {
    margin-top: 2rem;
  }
}
@media (min-width: 45em) {
  .footer {
    padding: 2em 1em;
  }

  .footer-container {
    display: grid;
    grid-gap: 20px;
    grid-template-areas: "nav newsletter" "social-links social-links" "copyright copyright";
  }

  .footer-nav {
    grid-area: nav;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
  }

  .footer-title {
    margin-top: 0;
  }

  .footer-newsletter {
    margin: 0;
    grid-area: newsletter;
  }

  .footer-social {
    grid-area: social-links;
  }

  .copyright {
    grid-area: copyright;
    margin: 0;
  }
}

@media (min-width: 60em) {
  .footer-container {
    max-width: 80%;
    margin: auto;
  }
}

.arrow-1,
.arrow-2 {
  margin-top: 20px;
  height: 90px;
  background-image: url(https://res.cloudinary.com/alexandracaulea/image/upload/v1583497341/line-1_dt5tua.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.arrow-2 {
  margin-top: -20px;
}

@media (min-width: 32em) {
  .arrow-1,
  .arrow-2 {
    height: 184px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .arrow-1 {
    margin-top: 70px;
    background-image: url(https://res.cloudinary.com/alexandracaulea/image/upload/v1583497341/arrow-1-sm_kkfsxp.svg);
  }

  .arrow-2 {
    background-image: url(https://res.cloudinary.com/alexandracaulea/image/upload/v1583497341/arrow-2-sm_xtrpm5.svg);
  }
}

@media (min-width: 60em) {
  .arrow-1,
  .arrow-2 {
    height: 283px;
  }

  .arrow-1 {
    margin-top: 5px;
    background-image: url(https://res.cloudinary.com/alexandracaulea/image/upload/v1583497341/arrow-1-lg_jhrqpv.svg);
  }

  .arrow-2 {
    background-image: url(https://res.cloudinary.com/alexandracaulea/image/upload/v1583497341/arrow-2-lg_cjykcq.svg);
  }
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.spk10 {
	margin-left:5%;
	margin-right:5%;
}

/* incepe tab-urile */
@-webkit-keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes height {
  from {
    height: 100%;
  }
  to {
    height: 0;
  }
}
@keyframes height {
  from {
    height: 100%;
  }
  to {
    height: 0;
  }
}
@-webkit-keyframes height-reverse {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
@keyframes height-reverse {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
.wrapper {
  width: 90%;
  margin: 0 auto;
}

/* Makes the checkbox hack work for Android 4.1.2 */
@-webkit-keyframes checkbox-hack-bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
body {
  min-width: 100%;
  min-height: 100%;
  -webkit-animation: checkbox-hack-bugfix infinite 1s;
}

input[type=checkbox],
input[type=radio] {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  clip: rect(0, 0, 0, 0);
  visibility: hidden;
  opacity: 0;
  transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  z-index: -1;
}
input[type=checkbox][id=test1]:checked ~ .tabs .tab label[for=test1],
input[type=radio][id=test1]:checked ~ .tabs .tab label[for=test1] {
  color: #F9D83D;
  cursor: default;
}
input[type=checkbox][id=test1]:checked ~ .tabs .tab label[for=test1]::after,
input[type=radio][id=test1]:checked ~ .tabs .tab label[for=test1]::after {
  opacity: 1;
}
input[type=checkbox][id=test1]:checked ~ .panels #panel1,
input[type=radio][id=test1]:checked ~ .panels #panel1 {
  display: block;
}
input[type=checkbox][id=test2]:checked ~ .tabs .tab label[for=test2],
input[type=radio][id=test2]:checked ~ .tabs .tab label[for=test2] {
  color: #F9D83D;
  cursor: default;
}
input[type=checkbox][id=test2]:checked ~ .tabs .tab label[for=test2]::after,
input[type=radio][id=test2]:checked ~ .tabs .tab label[for=test2]::after {
  opacity: 1;
}
input[type=checkbox][id=test2]:checked ~ .panels #panel2,
input[type=radio][id=test2]:checked ~ .panels #panel2 {
  display: block;
}
input[type=checkbox][id=test4]:checked ~ .tabs .tab label[for=test4],
input[type=radio][id=test4]:checked ~ .tabs .tab label[for=test4] {
  color: #F9D83D;
  cursor: default;
}
input[type=checkbox][id=test4]:checked ~ .tabs .tab label[for=test4]::after,
input[type=radio][id=test4]:checked ~ .tabs .tab label[for=test4]::after {
  opacity: 1;
}
input[type=checkbox][id=test4]:checked ~ .panels #panel4,
input[type=radio][id=test4]:checked ~ .panels #panel4 {
  display: block;
}

.tab-panels .tabs {
  display: flex;
}
.tab-panels .tabs .tab {
  flex: 1;
  flex-basis: auto;
  /* We need to define flex-grow here aside from flex for IE10 because it defaults to something else. */
  flex-grow: 1;
  position: relative;
  width: 60%;
  margin-top: 2.5rem;
  margin-right: 0;
  text-align: center;
  color: #AA1E36;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s ease;
}
.tab-panels .tabs .tab label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  
  height: 100%;
  padding: 0 0.75rem;
  border: none;
  cursor: pointer;
}
.tab-panels .tabs .tab label .content .text {
  margin-bottom: 1.563rem;
  font-family: "Ubuntu", "Myriad Pro", sans-serif;
  font-size: 2.2rem;
}
.tab-panels .tabs .tab label::after {
  content: "";
  position: absolute;
  bottom: -0.33rem;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  opacity: 0;
  background-color: #f0b53b;
  transition: opacity 0.3s ease-in-out;
}
.tab-panels .tabs .tab:hover {
  color: #f0b53b;
}
.tab-panels .separator {
  width: 100%;
  height: 3px;
  margin-bottom: 2.5rem;
  background-color: #363e4e;
}
.tab-panels .panels {
  border: none;
}
.tab-panels .panels .tab-panel {
  display: none;
  border: none;
}
.tab-panels .panels .tab-panel .content {
  font-family: "Ubuntu", "Myriad Pro", sans-serif;
  color: #707a89;
  -webkit-animation: fade 0.3s linear;
          animation: fade 0.3s linear;
}

#modal1:checked ~ .modal-component .modal {
  visibility: visible;
}
#modal1:checked ~ .modal-component .modal .modal-overlay {
  opacity: 1;
}
#modal1:checked ~ .modal-component .modal .modal-inner {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
#modal1:checked ~ .modal-component .modal .modal-inner .modal-body-content {
  height: 100%;
  overflow: auto;
}

.modal-component {
  display: block;
  min-height: inherit;
  width: 100%;
  font-family: "Ubuntu", "Myriad Pro", sans-serif;
  overflow: hidden;
}
.modal-component .open-modal-button {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 1rem;
  left: 1rem;
  margin: auto;
  padding: 1rem;
  border: 1px solid black;
  color: black;
  background-color: white;
  transition: background-color 0.3s, color 0.3s ease-in-out;
  cursor: pointer;
  outline: 0;
}
.modal-component .open-modal-button:hover, .modal-component .open-modal-button:focus, .modal-component .open-modal-button:active {
  color: white;
  background-color: black;
}
.modal-component .modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  min-height: 100vh;
  visibility: hidden;
  z-index: 1000;
}
.modal-component .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  transition: all ease 0.5s;
  z-index: -1;
}
.modal-component .modal-container {
  max-width: inherit;
  width: 100%;
  padding: 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 1001;
}
.modal-component .modal-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}
.modal-component .modal-inner {
  min-width: 100px;
  margin: auto;
  padding: 3.125rem 6.25rem;
  border-radius: 2px;
  color: #e5f0f6;
  transform: translate3d(0, 0, 0) scale(0.8);
  transition: all cubic-bezier(0.83, -0.35, 0.15, 1.48) 0.5s;
  background-color: #1d2128;
}
.modal-component .modal-inner .close-modal-button {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -1.875rem;
  right: -1.875rem;
  width: 20px;
  height: 20px;
  font-size: 1.875rem;
  color: #323b48;
  padding: 1.25rem;
  border-radius: 50%;
  text-align: center;
  background-color: #171b21;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
  z-index: 1001;
}
.modal-component .modal-inner .close-modal-button:hover, .modal-component .modal-inner .close-modal-button:focus, .modal-component .modal-inner .close-modal-button:active {
  background-color: #212730;
}
.modal-component .modal-inner .modal-header {
  text-transform: uppercase;
}
.modal-component .modal-inner .modal-header-content .modal-title {
  color: #f9bc3d;
}
.modal-component .modal-inner .modal-body-content {
  height: 0;
  text-align: justify;
  transition: height 0.3s ease-in-out;
  overflow: hidden;
}
.modal-component .modal-inner .modal-footer-content {
  color: red;
}
.button4 {background-color: #FFD700; color: black;} 
/* se termina tab-urile */

.highlight-yellow {
  border-radius: 1em 0 1em 0;
  background-image: linear-gradient(
    -100deg,
    rgba(255, 224, 0, 0.2),
    rgba(255, 224, 0, 0.7) 95%,
    rgba(255, 224, 0, 0.1)
  );
}

.circle-sketch-highlight{
  position:relative;
  left:0.5em;
  font-family: Libre Franklin;
  font-size: 32px;
  font-weight: 500;
}
.circle-sketch-highlight:before{
  content:"";
  z-index:-1;
  left:-0.5em;
  top:-0.1em;
  border-width:2px;
  border-style:solid;
  border-color:#882C3D;
  position:absolute;
  border-right-color:transparent;
  width:100%;
  height:1em;
  transform:rotate(2deg);
  opacity:0.7;
  border-radius:50%;
  padding:0.1em 0.25em;
}
.circle-sketch-highlight:after{
  content:"";
  z-index:-1;
  left:-0.5em;
  top:0.1em;
  padding:0.1em 0.25em;
  border-width:2px;
  border-style:solid;
  border-color:#882C3D;
  border-left-color:transparent;
  border-top-color:transparent;
  position:absolute;
  width:100%;
  height:1em;
  transform:rotate(-1deg);
  opacity:0.7;
  border-radius:50%;
}

<!-- HTML !-->
<button class="button-53" role="button">Button 53</button>

/* CSS */
.button-53 {
  background-color: #3DD1E7;
  border: 0 solid #E5E7EB;
  box-sizing: border-box;
  color: #000000;
  display: flex;
  font-family: ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.75rem;
  padding: .75rem 1.65rem;
  position: relative;
  text-align: center;
  text-decoration: none #000000 solid;
  text-decoration-thickness: auto;
  width: 100%;
  max-width: 460px;
  position: relative;
  cursor: pointer;
  transform: rotate(-2deg);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-53:focus {
  outline: 0;
}

.button-53:after {
  content: '';
  position: absolute;
  border: 1px solid #000000;
  bottom: 4px;
  left: 4px;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
}

.button-53:hover:after {
  bottom: 2px;
  left: 2px;
}

@media (min-width: 768px) {
  .button-53 {
    padding: .75rem 5rem;
    font-size: 1.25rem;
  }
}
.logo-sus {
	text-align:center;
	max-height:60px;
	padding-right:10px;
}
.logo-sus2 {
	text-align:center;
	max-height:60px;
	padding-right:30px;
	float:right;
}

.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
.inrg{
	text-align:center;
}
.button-inrg {
	padding: 10px 40px 10px 40px;
	color:white;
	background:#bf2048;
	border-radius:4px;
	border:none;
}
.column-pub {
  float: left;
  width: 25%;
	text-align:center;
	padding:10px 30px 10px 30px;
}

/* Clear floats after the columns */
.row-pub:after {
  content: "";
  display: table;
  clear: both;
}
enfagenda{
	padding-left:25px;
	padding-right:25px;
}