* {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
  scrollbar-width: thin;
}

body {
  background: #fafafa;
  margin: 95px 0 0 0;
  padding: 0;
  font-family: "Lato", sans-serif;
}

.promo-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

.promo-box {
  position: relative;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(0.95) translateY(10px);
  animation: slideIn 0.3s ease forwards;
  max-width: 90vw;
  max-height: 80vh;
  margin: 20px;
}

.promo-box img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.close-button {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  padding: 0;
}

.close-button:hover {
  transform: scale(1.1);
}

.close-button:active {
  transform: scale(0.95);
}

.close-button svg {
  width: 20px;
  height: 20px;
  color: #374151;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: scale(0.95) translateY(10px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.promo-overlay.hiding {
  animation: fadeOut 0.2s ease forwards;
}

.promo-overlay.hiding .promo-box {
  animation: slideOut 0.2s ease forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slideOut {
  from {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  to {
    transform: scale(0.95) translateY(10px);
    opacity: 0;
  }
}
.lightrope {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  margin: -15px 0 0 0;
  top: 95px;
  padding: 0;
  pointer-events: none;
  width: 100%;
}
.lightrope li {
  position: relative;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  width: 12px;
  height: 28px;
  border-radius: 50%;
  margin: 20px;
  display: inline-block;
  background: rgb(0, 247, 165);
  box-shadow: 0px 4.6667px 24px 3px rgb(0, 247, 165);
  animation-name: flash-1;
  animation-duration: 2s;
}
.lightrope li:nth-child(2n+1) {
  background: rgb(0, 255, 255);
  box-shadow: 0px 4.6667px 24px 3px rgba(0, 255, 255, 0.5);
  animation-name: flash-2;
  animation-duration: 0.4s;
}
.lightrope li:nth-child(4n+2) {
  background: rgb(247, 0, 148);
  box-shadow: 0px 4.6667px 24px 3px rgb(247, 0, 148);
  animation-name: flash-3;
  animation-duration: 1.1s;
}
.lightrope li:nth-child(odd) {
  animation-duration: 1.8s;
}
.lightrope li:nth-child(3n+1) {
  animation-duration: 1.4s;
}
.lightrope li:before {
  content: "";
  position: absolute;
  background: #222;
  width: 10px;
  height: 9.3333px;
  border-radius: 3px;
  top: -4.6667px;
  left: 1px;
}
.lightrope li:after {
  content: "";
  top: -14px;
  left: 9px;
  position: absolute;
  width: 52px;
  height: 18.6667px;
  border-bottom: solid #222 2px;
  border-radius: 50%;
}
.lightrope li:last-child:after {
  content: none;
}
.lightrope li:first-child {
  margin-left: -40px;
}

@keyframes flash-1 {
  0%, 100% {
    background: rgb(0, 247, 165);
    box-shadow: 0px 4.6667px 24px 3px rgb(0, 247, 165);
  }
  50% {
    background: rgba(0, 247, 165, 0.4);
    box-shadow: 0px 4.6667px 24px 3px rgba(0, 247, 165, 0.2);
  }
}
@keyframes flash-2 {
  0%, 100% {
    background: rgb(0, 255, 255);
    box-shadow: 0px 4.6667px 24px 3px rgb(0, 255, 255);
  }
  50% {
    background: rgba(0, 255, 255, 0.4);
    box-shadow: 0px 4.6667px 24px 3px rgba(0, 255, 255, 0.2);
  }
}
@keyframes flash-3 {
  0%, 100% {
    background: rgb(247, 0, 148);
    box-shadow: 0px 4.6667px 24px 3px rgb(247, 0, 148);
  }
  50% {
    background: rgba(247, 0, 148, 0.4);
    box-shadow: 0px 4.6667px 24px 3px rgba(247, 0, 148, 0.2);
  }
}
@keyframes fadeinAnimation {
  from {
    filter: blur(12px);
    opacity: 0.3;
  }
  to {
    filter: blur(0px);
    opacity: 1;
  }
}
img,
svg {
  user-select: none;
}

::-moz-selection {
  background: rgba(255, 224, 27, 0.15);
}

::selection {
  background: rgba(255, 224, 27, 0.15);
}

.flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex {
    display: none;
  }
}

.content {
  position: relative;
  left: 0;
  box-shadow: 4px 0 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.5s left ease;
  min-height: 100vh;
  z-index: 3;
}
@media screen and (min-width: 770px) {
  .content {
    left: 0 !important;
  }
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 100vh;
  width: 70%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  padding-top: 95px;
  overflow-y: auto;
}
@media screen and (min-width: 770px) {
  .drawer {
    display: none;
  }
}

.drawer a {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  padding: 15px 30px;
  transition: 0.3s all ease;
  text-decoration: none;
  color: #333;
  font-size: 1.2em;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  -webkit-tap-highlight-color: transparent;
}

.drawer a:hover,
.drawer a:focus {
  background-color: #f8f8f8;
  color: #007bff;
}

.drawer .space {
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
}

.drawer a:last-child {
  border-bottom: none;
  background: #2f7dd0;
  color: #fff;
  text-align: center;
  padding: 15px;
}

.drawer a:last-child:hover,
.drawer a:last-child:focus {
  background-color: #0056b3;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  min-height: 95px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}

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

.logo {
  display: flex;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
  color: #007bff;
  background-color: rgba(0, 123, 255, 0.14);
}

.nav-link--highlight {
  background: #2f7dd0;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-link--highlight:hover,
.nav-link--highlight.active {
  background-color: #0056b3;
  color: #fff;
}

.burger-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1em;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  mix-blend-mode: difference;
  z-index: 1000;
  transition: 0.5s;
}
.burger-btn:focus {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}
.burger-btn:hover .burger-btn__bars::before,
.burger-btn:hover .burger-btn__bars::after {
  width: 100%;
}
.burger-btn__box {
  position: relative;
  width: 40px;
  height: 30px;
}
.burger-btn__bars, .burger-btn__bars::before, .burger-btn__bars::after {
  position: absolute;
  right: 0;
  height: 3px;
  content: "";
  background-color: whitesmoke;
  transition: width 0.3s;
}
.burger-btn__bars {
  width: 100%;
}
.burger-btn__bars::after {
  top: 13px;
  width: 60%;
}
.burger-btn__bars::before {
  top: 27px;
  width: 30%;
  transition-delay: 0.1s;
}
@media screen and (min-width: 768px) {
  .burger-btn {
    display: none;
  }
}

.right {
  right: 75%;
  transition: 0.5s;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

@media screen and (max-width: 1100px) {
  .logo {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .flex {
    display: none;
  }
  .burger-btn {
    display: block;
  }
  .logo {
    display: flex;
  }
}
@media screen and (max-width: 460px) {
  .logo {
    margin-right: auto;
    margin-left: 20px;
  }
  .logo img {
    width: 220px;
  }
}
.hero {
  background: #fff;
  padding: 0 50px;
}
.hero .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1076px) {
  .hero .container {
    padding-bottom: 2em;
    flex-direction: column-reverse;
  }
}
.hero h1 {
  font-family: "Brygada 1918", serif;
  font-size: 2.5em;
  margin: 0.3em 0;
}
.hero p {
  font-size: 1.3em;
}
.hero a {
  border-radius: 25px;
  background: #2f7dd0;
  display: inline-block;
  padding: 15px 25px;
  margin: 1em 0;
  text-decoration: none;
  color: #fff;
  width: fit-content;
  cursor: pointer;
  transition: 0.3s opacity ease;
}
.hero .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.hero .col img {
  margin: 20px 70px;
  border-radius: 8px;
}
@media screen and (max-width: 1000px) {
  .hero .col img {
    margin: 20px;
  }
}

.about {
  background-color: #f6f6f4;
  padding: 0 50px;
}
.about .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5em 0 3.8em;
  display: flex;
  gap: 3em;
  align-items: center;
  text-align: justify;
}
@media screen and (max-width: 900px) {
  .about .container {
    flex-direction: column;
  }
}
.about h1 {
  font-family: "Brygada 1918", serif;
  font-size: 2em;
  color: #241c15;
  margin: 1em 0 0.1em;
}
.about p {
  font-size: 1em;
  color: #241c15;
  margin: 1em 0;
  text-align: justify;
}
.about p:nth-child(2) {
  margin: 0;
  color: #625d58;
  font-weight: bold;
  font-size: 0.95em;
}
.about img {
  margin-top: 1.4em;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
}

.stats {
  background-color: #c5dbf2;
  padding: 0 1.5em;
}
.stats .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  .stats .container {
    flex-direction: column;
  }
}
.stats .stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.stats .stat p {
  margin: 0;
  opacity: 0.7;
  text-align: center;
}
.stats .stat h2 {
  font-family: "Brygada 1918", serif;
  font-size: 2em;
  margin: 0.25em 0;
  opacity: 0.87;
}
.stats .stat svg {
  width: 84px;
  height: 84px;
  color: #7facdc;
}
@media screen and (max-width: 768px) {
  .stats .stat {
    margin: 10px 0;
  }
}

.featured {
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
  padding: 0 50px;
  position: relative;
  overflow: hidden;
}

#professionals, #everyone {
  animation: fadeinAnimation 1s forwards;
}

.featured .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5em 0;
}

.featured h1 {
  font-family: "Brygada 1918", serif;
  font-size: 2.5em;
  color: #0f172a;
  margin: 0.5em 0;
}

.featured .courses {
  display: flex;
  gap: 25px;
}

@media screen and (max-width: 768px) {
  .featured .courses {
    flex-direction: column;
  }
}
.scroller {
  position: sticky;
  top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
  z-index: 10;
}

.scroller-badge {
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.scroller-badge:hover {
  transform: translateY(-2px);
}

.scroller-badge.active {
  background-color: #0d9488;
  color: #ffffff;
}

.offer-section {
  display: none;
}

.offer-section.active {
  display: block;
}

.featured .course {
  flex: 1;
  display: block;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #ffffff;
}

.featured .course:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.featured .course img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  position: relative;
  z-index: 0;
  filter: brightness(0.6);
}

.featured .course h2 {
  font-family: "Brygada 1918", serif;
  font-size: 1.5rem;
  color: #004e56;
  margin: 1.1em 0 0.4em;
  position: relative;
  z-index: 1;
}

.featured .course p {
  color: #403b3b;
  font-size: 1em;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.featured .mainInfo {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.featured .mainInfo a {
  text-decoration: underline;
  text-decoration-color: #2ba182;
  color: #3dcca6;
  transition: text-decoration 0.3s;
}

.featured .mainInfo a:hover {
  text-decoration: none;
}

.header-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #e6f7f5;
  color: #0d9488;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
}

.badge svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
}

.card {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  overflow: hidden;
}

.course-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.course-image img {
  transition: transform 0.3s ease;
}

.featured .course:hover .course-image img {
  transform: scale(1.05);
}

.course-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}
.course-overlay h2, .course-overlay p {
  color: #ffffff !important;
}

.course-content {
  padding: 1.5rem;
}

.badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  background-color: #0d9488;
  color: #ffffff;
  border: none;
}

.btn:hover {
  background-color: #0f766e;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #0d9488;
  color: #0d9488;
}

.btn-outline:hover {
  background-color: #0d9488;
  color: #ffffff;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

@media screen and (max-width: 768px) {
  .featured {
    padding: 0 20px;
  }
  .featured h1 {
    font-size: 2em;
  }
  .featured .course {
    max-width: 100%;
  }
  .floating-sticker {
    display: none;
  }
}
.reviews {
  background-color: #f6f6f4;
  padding: 0 50px;
}
.reviews .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5em 0 6em;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.reviews .container > div {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .reviews .container > div {
    flex-direction: column;
  }
}
.reviews h1 {
  font-family: "Brygada 1918", serif;
  font-size: 2em;
  color: #241c15;
  margin: 1em 0;
}
.reviews h2 {
  font-family: "Brygada 1918", serif;
  font-size: 1.5rem;
  color: #004e56;
  margin: 0.4em 0 0.4em;
}
.reviews p {
  color: #403b3b;
  font-size: 1em;
  line-height: 1.5;
}
.reviews p svg {
  height: 16px;
  width: 16px;
  position: relative;
  top: 2px;
}

.contact {
  background-color: #fff;
  padding: 0 50px;
}
.contact .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5em 0;
  display: flex;
  flex-direction: column;
}
.contact h1 {
  font-family: "Brygada 1918", serif;
  font-size: 2em;
  color: #241c15;
  margin: 1em 0;
}
.contact .col {
  display: flex;
  justify-content: flex-end;
}
.contact button {
  border-radius: 25px;
  background: #fff;
  display: inline-block;
  padding: 15px 25px;
  margin: 1em 0;
  text-decoration: none;
  color: #241c15;
  width: fit-content;
  border: 1px solid #241c15;
  cursor: pointer;
  transition: 0.3s background ease;
}
.contact button:hover {
  background: rgba(36, 28, 21, 0.1);
}
.contact form {
  text-align: center;
}
.contact form .inputBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .contact form .inputBox {
    flex-direction: column;
    gap: 0;
  }
}
.contact form .inputBox input {
  flex: 1;
  padding: 0.85rem 1rem;
  margin: 12px 0;
  font-size: 1.05rem;
  color: #241c15;
  align-items: center;
  border: 1px solid #241c15;
}
.contact form .select {
  width: calc(50% - 12px);
  margin: 12px 0;
  position: relative;
}
.contact form .select svg {
  position: absolute;
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  right: 10px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .contact form .select {
    width: 100%;
  }
}
.contact form .inputBox select {
  height: calc(3.3rem - 2px);
  width: 100%;
  border: 1px solid #241c15;
  padding: 0 1rem;
  font-size: 1.05rem;
  color: #241c15;
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.contact form textarea {
  height: 10rem;
  resize: none;
  padding: 1rem;
  font-size: 1.05rem;
  width: 100%;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  margin-top: 12px;
  margin-bottom: 15px;
  border: 1px solid #241c15;
}

.offer_header {
  background-color: #c5dbf2;
  position: relative;
}
.offer_header .container {
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .offer_header .container {
    padding-bottom: 2em;
  }
}
.offer_header img {
  width: 100%;
  aspect-ratio: 1.54;
  object-fit: cover;
  z-index: 99;
}
.offer_header h1 {
  font-family: "Brygada 1918", serif;
  font-size: 2.2em;
  color: #241c15;
  margin: 1.5em 0;
  text-align: center;
}
.offer_header .white {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: #fff;
}

.offer_section {
  background: #fff;
  padding-top: 3rem;
}
.offer_section .container {
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  text-align: justify;
}
.offer_section .container a {
  border-radius: 25px;
  background: #448ad5;
  display: inline-block;
  padding: 15px 25px;
  margin: 1em 0;
  text-decoration: none;
  color: #fff;
  width: fit-content;
  cursor: pointer;
  transition: 0.3s opacity ease;
}
@media screen and (max-width: 770px) {
  .offer_section .container {
    padding: 0 2em;
    text-align: left;
  }
}
.offer_section h2 {
  color: #241c15;
  font-family: "Brygada 1918", serif;
  font-size: 1.8rem;
  margin: 0.4em 0 0;
}
.offer_section p {
  color: #241c15;
  font-size: 1em;
  line-height: 1.4;
  letter-spacing: 0.3px;
  margin: 2em 0 0;
}
.offer_section ul {
  color: #241c15;
  margin-top: 1em;
  font-size: 1em;
  line-height: 1.4;
  letter-spacing: 0.3px;
}
.offer_section a {
  color: rgb(0, 124, 137);
  text-decoration: none;
  padding-bottom: 1px;
}
.offer_section:last-of-type {
  padding-bottom: 5rem;
}

footer {
  background-color: #efeeea;
  padding: 0 50px;
}
footer .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  footer .container {
    flex-direction: column;
  }
}
footer h3 {
  font-size: 1.1rem;
  font-weight: normal;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  color: #241c15;
}
footer a {
  color: #241c15;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.35;
  margin-bottom: 0.625rem;
}
footer hr {
  margin: 3rem -50px;
  background-color: #8c8c8c;
}
footer p {
  text-align: center;
  padding-bottom: 3rem;
  margin: 0;
  color: #241c15;
  font-size: 1rem;
}
footer .col {
  display: flex;
  flex-direction: column;
}

#cookies {
  width: 100%;
  position: fixed;
  bottom: 0;
  color: white;
  background-color: #241c15;
  z-index: 99;
  font-size: 12px;
  display: none;
}
#cookies .cookies {
  min-height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
#cookies a {
  color: #fff;
  font-weight: bold;
}
#cookies a:hover {
  text-decoration: none;
}
#cookies #cookies-btn {
  margin-left: 20px;
  padding: 10px 30px;
  cursor: pointer;
  background: transparent;
  border: 1px solid white;
  color: white;
  font-size: 12px;
  transition: opacity 0.15s ease;
}
#cookies #cookies-btn:hover {
  opacity: 0.6;
}
#cookies .cookies_container {
  margin: auto;
}
#cookies .cookies_subcontainer {
  width: 85%;
  margin: auto;
}
@media (max-width: 1024px) {
  #cookies .cookies {
    padding: 10px 0;
  }
}

@media (max-width: 1600px) {
  .container {
    width: 100%;
  }
}
.btn-special-animation {
  position: relative;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  z-index: 0;
}
.btn-special-animation::before {
  content: "";
  background-color: #00a0a9;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
  z-index: -1;
}
.btn-special-animation:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

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