@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;400;500;600;700;900&display=swap");
:root {
  --primary-color: rgb(2, 201, 201);
  --primary-color-half: rgba(2, 201, 201, .4);
  --primary-color-dark: rgb(0, 141, 151);
  --secondary-color: rgb(4, 0, 46);
  --secondary-color-close: rgba(5, 0, 56, 0.85);
  --secondary-color-half: rgba(5, 0, 56, .2);
  --off-black: rgb(45, 45, 45);
  --off-white: rgb(255, 252, 245) ;
}

* {
  box-sizing: border-box;
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  outline: none;
}
*:is(a, li) {
  color: var(--black-40);
  text-decoration: none;
  list-style: none;
}
*:is(:hover, :focus) {
  outline: none;
}

body {
  color: var(--black-40);
  background-color: var(--white-cream);
  overflow-x: hidden;
  background-color: #fff;
}
body::-webkit-scrollbar {
  width: 0px;
}

header {
  height: 100px;
  box-sizing: content-box;
  overflow: hidden;
}
header .w-100 {
  max-width: 100vw !important;
}
header .visible-nav .logo {
  -moz-column-gap: 10px;
       column-gap: 10px;
}
header .visible-nav img {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .visible-nav h1 {
  color: var(--secondary-color);
  font-size: 22px;
}
header .visible-nav .burger-menu {
  height: 35px;
  aspect-ratio: 1/0.85;
  row-gap: 7px;
  z-index: 10;
}
header .visible-nav .burger-menu :nth-child(2) {
  width: 70%;
}
header .visible-nav .burger-menu :nth-child(3) {
  width: 40%;
}
header .visible-nav .burger-menu:hover .bar {
  width: 90%;
  opacity: 1;
}
header .visible-nav .bar {
  background-color: var(--off-black);
  opacity: 0.6;
  transition: all ease-in 200ms;
  border-radius: 2px;
}
header .main-nav a {
  font-size: 40px;
  opacity: 0;
  text-align: center;
}
header .main-nav a::before {
  content: "\f08e";
  font-family: "FontAwesome";
  color: var(--primary-color);
  font-size: 0px;
  margin-right: 15px;
  transition: all 300ms ease-in-out;
}
header .main-nav a::after {
  content: "";
  display: block;
  bottom: 0;
  height: 5px;
  width: 0%;
  border-radius: 2px;
  background-color: var(--primary-color);
  position: absolute;
  transition: all 300ms ease-in-out;
  transform: translateY(200%);
}
header .main-nav a:is(:hover, :focus) {
  color: var(--primary-color);
}
header .main-nav a:is(:hover, :focus)::after {
  width: 100%;
}
header .main-nav a:is(:hover, :focus):before {
  color: var(--primary-color);
  text-align: center;
  font-size: 30px;
}
header .main-nav ul {
  z-index: 150;
  opacity: 0;
  color: var(--primary-color-half);
  pointer-events: none;
  row-gap: 30px;
  transition: all ease-in-out 200ms;
}
header .main-nav ul .home a::before {
  content: "\f015";
}
header .main-nav ul .courses a::before {
  content: "\f518";
}
header .main-nav ul .about-us a::before {
  content: "\f0c0";
}
header .main-nav ul .contact a::before {
  content: "\f0e0";
}
header .main-nav ul .sign a::before {
  content: "\f007";
}
header .main-nav ul .langChanger::before {
  display: none;
}
header .main-nav ul .langChanger::after {
  display: none;
}
header .main-nav ul .fa-earth-europe {
  font-size: 40px;
  margin: 20px;
  z-index: 151;
  transition: all ease-in-out 200ms;
}
header .main-nav ul .fa-earth-europe:hover {
  opacity: 1;
}
header .nav-bg-animation-in :nth-child(1) {
  padding: 30px;
  animation: backgroundNavigationIn 0.5s ease-in 0s forwards;
}
header .nav-bg-animation-in :nth-child(1) i {
  padding: 0;
  font-size: 50px;
}
header .nav-bg-animation-in :nth-child(2) {
  animation: backgroundNavigationIn 0.5s ease-in 0.1s forwards;
}
header .nav-bg-animation-in :nth-child(3) {
  animation: backgroundNavigationIn 0.5s ease-in 0.2s forwards;
}
header .nav-bg-animation-in :nth-child(4) {
  animation: backgroundNavigationIn 0.5s ease-in 0.3s forwards;
}
header .nav-bg-animation-in :nth-child(5) {
  animation: backgroundNavigationIn 0.5s ease-in 0.4s forwards;
}
header .nav-bg-animation-out :nth-child(5) {
  animation: backgroundNavigationOut 0.5s ease-in 0.4s forwards;
}
header .nav-bg-animation-out :nth-child(4) {
  animation: backgroundNavigationOut 0.5s ease-in 0.3s forwards;
}
header .nav-bg-animation-out :nth-child(3) {
  animation: backgroundNavigationOut 0.5s ease-in 0.2s forwards;
}
header .nav-bg-animation-out :nth-child(2) {
  animation: backgroundNavigationOut 0.5s ease-in 0.1s forwards;
}
header .nav-bg-animation-out :nth-child(1) {
  animation: backgroundNavigationOut 0.5s ease-in 0s forwards;
}
header .nav-bg-animation-out :nth-child(1) i {
  display: none;
}
header .bg-nav {
  z-index: 149;
  pointer-events: none;
}
header .bg-nav .bar {
  pointer-events: none;
  width: 100%;
  background-color: var(--secondary-color);
}
header .bg-nav i {
  transition: all 200ms ease-in;
  pointer-events: all;
  color: #fff;
}
header .bg-nav i:hover {
  opacity: 0.6;
}
header .nav-bg-animation-in .bar {
  width: 0%;
}
header .nav-text-animation {
  animation: NavigationText 0.3s ease-in 0.8s forwards;
}
header .nav-text-animation a {
  pointer-events: all;
  opacity: 1;
}
@keyframes backgroundNavigationIn {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes backgroundNavigationOut {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}
@keyframes NavigationText {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

footer {
  padding: 40px;
  color: #000;
  row-gap: 50px;
}
footer section {
  font-size: 36px;
  gap: 70px;
}
footer article {
  row-gap: 10px;
  padding: 5px;
}
footer p, footer .legal-container a {
  font-size: 10px;
  opacity: 0.8;
}
footer a {
  opacity: 0.6;
  transition: all 300ms ease-in-out;
}
footer a::after {
  content: "";
  display: block;
  bottom: 0;
  height: 2px;
  width: 0%;
  border-radius: 2px;
  background-color: #000;
  position: absolute;
  transition: all 300ms ease-in-out;
  transform: translateY(200%);
}
footer a:is(:hover, :focus) {
  opacity: 1;
}
footer a:is(:hover, :focus)::after {
  width: 100%;
}
footer h1 {
  font-size: 18px;
}
footer h2 {
  font-size: 16px;
  margin-bottom: 10px;
}
footer .logo {
  -moz-column-gap: 15px;
       column-gap: 15px;
}
footer .logo img {
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .legal-container {
  -moz-column-gap: 30px;
       column-gap: 30px;
}
footer .legal-container a:after {
  height: 1px;
}
footer .newsletter-container input {
  border: none;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  width: 250px;
  border: 2px rgba(0, 0, 0, 0.1) solid;
  transition: all ease-in 250ms;
}
footer .newsletter-container input:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
footer .newsletter-container input:focus {
  border: 2px rgba(0, 0, 0, 0.5) solid;
}
footer .newsletter-container button {
  border: none;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 12px;
  padding: 11px 20px;
  border-radius: 8px;
  margin-left: 8px;
  transition: all ease-in 250ms;
}
footer .newsletter-container button:after {
  content: "\f061";
  font-family: "FontAwesome";
  color: var(--primary-color-dark);
  font-size: 0px;
  transition: 0.4s ease-in-out;
}
footer .newsletter-container button:hover {
  color: var(--primary-color-dark);
  background-color: var(--primary-color-half);
}
footer .newsletter-container button:hover:after {
  font-size: 12px;
  margin-left: 10px;
}

.language-popup {
  display: block;
  z-index: 153;
  background-color: rgba(0, 0, 0, 0.6);
  color: #000;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.language-popup .language-picker {
  padding: 34px;
  width: 35vw;
  min-width: 375px;
  background-color: #fff;
  border-radius: 16px;
  gap: 10px;
}
.language-popup h2 {
  font-size: 16px;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
}
.language-popup .languages {
  gap: 0px;
}
.language-popup .language-item {
  outline: none;
  border: none;
  background-color: transparent;
  font-size: 24px;
  gap: 12px;
  transition: all ease-in 250ms;
  font-weight: 500;
}
.language-popup .language-item:is(:hover, :focus) img {
  border-color: rgba(0, 0, 0, 0.6);
}
.language-popup img {
  height: 70px;
  aspect-ratio: 1/1;
  border-radius: 600px;
  padding: 6px;
  border: 2px solid #fff;
  transition: all ease-in 300ms;
}
.language-popup .active-language:is(:hover, :focus) img {
  border-color: #000;
}
.language-popup .active-language img {
  border-color: #000;
}
.language-popup .submit-btn {
  margin: 40px 10px 10px;
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.6;
  transition: all 250ms ease-in-out;
  scroll-behavior: smooth;
}
.language-popup .submit-btn:is(:hover, :focus) {
  opacity: 1;
}

.cookies-container {
  background-color: #fff;
  z-index: 125;
  width: 275px;
  padding: 40px 30px;
  border-radius: 16px;
  gap: 25px;
  margin: 15px;
  transform: translateX(110%);
  transition: all 0.3s ease-in-out;
}
.cookies-container img {
  height: 75px;
}
.cookies-container h2 {
  font-size: 14px;
  text-align: center;
}
.cookies-container button {
  outline: none;
  border: none;
  font-size: 14px;
  background-color: var(--primary-color);
  padding: 10px 26px;
  color: #fff;
  border-radius: 8px;
  transition: all ease-in 250ms;
}
.cookies-container button:is(:hover, :focus) {
  background-color: var(--primary-color-dark);
}
.cookies-container .options {
  margin-top: 25px;
  gap: 20px;
}
.cookies-container .options :last-child {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.4);
  padding: 0px;
  letter-spacing: 0px;
}
.cookies-container .options :last-child:is(:hover, :focus) {
  color: rgb(0, 0, 0);
}
.cookies-container .fa-xmark {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.4);
  margin: 14px;
}
.cookies-container .fa-xmark:is(:hover, :focus) {
  color: rgb(0, 0, 0);
}

.construction-container {
  row-gap: 20px;
  overflow: hidden;
}
.construction-container h1 {
  font-size: 80px;
  text-align: center;
}
.construction-container p {
  text-align: center;
  font-size: 20px;
  width: 30%;
}
.construction-container a {
  margin-top: 30px;
  font-size: 15px;
  padding: 15px 35px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 4px;
  transition: all ease-in 200ms;
}
.construction-container a:hover {
  background-color: var(--secondary-color-close);
}
.construction-container img {
  z-index: -1;
  opacity: 0.2;
}

.hero-container {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding-inline: 30px;
  overflow: hidden;
}
.hero-container .hero-content {
  padding-bottom: 25px;
  gap: 40px;
}
.hero-container .hero-txt {
  row-gap: 10px;
  width: 700px;
}
.hero-container .hero-img {
  height: 80vh;
  min-height: 450px;
  max-width: 35vw;
  transform: translateY(-10%);
}
.hero-container h1, .hero-container h1 span {
  font-size: 46px;
  font-weight: 800;
  width: 600px;
}
.hero-container h1 span {
  color: #fff;
}
.hero-container p {
  font-size: 18px;
  font-weight: 500;
  width: 80%;
}
.hero-container .call-to-action {
  display: inline-block;
  margin-top: 35px;
  background-color: var(--secondary-color);
  border-radius: 5px;
  align-self: start;
}
.hero-container .call-to-action:is(:hover, :focus) span {
  background-color: var(--primary-color-dark);
  color: #fff;
}
.hero-container .call-to-action span {
  display: inherit;
  border-radius: inherit;
  background-color: var(--primary-color);
  border: 2px solid var(--secondary-color);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 45px;
  transform: translate(6px, -6px);
  transition: all 100ms ease-in-out;
}
.hero-container .call-to-action:active span {
  transform: translate(0px);
}

.hero-intro-responsive {
  display: none;
  width: 100%;
}

.courses-container {
  padding: calc(5vh + 40px) 40px calc(5vh + 20px);
  gap: 55px;
}
.courses-container .card {
  width: 230px;
  min-height: 320px;
  border-radius: 18px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 25px;
  padding: 28px 22px;
}
.courses-container .divider {
  gap: 20px;
}
.courses-container .card-wrapper {
  gap: 38px;
}
.courses-container h2, .courses-container h2 span {
  font-size: 28px;
  width: 60%;
  text-align: center;
}
.courses-container h2 span {
  color: var(--primary-color-dark);
}
.courses-container h3 {
  font-size: 17px;
  text-align: center;
}
.courses-container p {
  font-size: 13px;
  text-align: center;
}
.courses-container .view-more {
  background-color: var(--primary-color-dark);
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  margin-top: 15px;
}
.courses-container .view-more:after {
  content: "\f061";
  font-family: "FontAwesome";
  color: var(--primary-color-dark);
  font-size: 0px;
  transition: 0.4s ease-in-out;
}
.courses-container .view-more:hover {
  color: var(--primary-color-dark);
  background-color: var(--primary-color-half);
}
.courses-container .view-more:hover:after {
  font-size: 12px;
  margin-left: 10px;
}
.courses-container img {
  margin-top: 10px;
  height: 68px;
  aspect-ratio: 1/1;
}

.banner-container {
  padding: 60px;
  gap: 70px;
  color: #fff;
}
.banner-container::before {
  content: "";
  display: block;
  height: 85%;
  width: 92.5%;
  left: 3.75%;
  position: absolute;
  border-radius: 16px;
  background-color: var(--primary-color);
  z-index: -1;
}
.banner-container img {
  height: 220px;
}
.banner-container .banner-txt {
  width: 50%;
}
.banner-container .banner-txt h2 {
  width: 85%;
  font-size: 26px;
}
.banner-container .banner-txt h2 span {
  font-size: 24px;
  color: var(--secondary-color);
}
.banner-container .buttons {
  margin-top: 25px;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.banner-container .buttons a {
  font-size: 14px;
  padding: 14px 34px;
  border-radius: 8px;
  border: 4px solid;
}
.banner-container .buttons .buy-btn {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}
.banner-container .buttons .buy-btn:is(:hover, :focus) {
  border-color: var(--secondary-color-half);
  background-color: var(--secondary-color-half);
  color: var(--secondary-color);
}
.banner-container .buttons .learn-more-btn {
  color: var(--primary-color);
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
  text-transform: uppercase;
}
.banner-container .buttons .learn-more-btn:is(:hover, :focus) {
  color: var(--secondary-color);
  border-color: #fff;
  background-color: #fff;
}

.about-container {
  padding-inline: 30px;
  color: var(--off-black);
}
.about-container .about-content {
  height: 100%;
  gap: 2.5vw;
  height: 75vh;
}
.about-container .about-txt {
  gap: 20px;
}
.about-container h1 {
  font-size: 48px;
  text-align: end;
}
.about-container p {
  font-size: 24px;
  text-align: end;
}
.about-container .about-img {
  height: 90%;
  width: 40%;
}
.about-container .about-img .smaller {
  height: 60%;
  width: 50%;
  transform: scaleX(-1);
}
.about-container .about-img img {
  width: 80%;
  height: 90%;
  border: 20px solid #fff;
  background-color: #fff;
  border-radius: 24px;
}
.about-container .projects-btn {
  display: inline-block;
  margin-top: 35px;
  background-color: var(--off-black);
  border-radius: 5px;
}
.about-container .projects-btn:is(:hover, :focus) span {
  background-color: var(--primary-color-dark);
  color: #fff;
}
.about-container .projects-btn span {
  display: inherit;
  border-radius: inherit;
  background-color: #fff;
  border: 2px solid var(--off-black);
  font-size: 14px;
  font-weight: 600;
  padding: 15px 35px;
  transform: translate(-6px, -6px);
  transition: all 100ms ease-in-out;
}
.about-container .projects-btn:active span {
  transform: translate(0px);
}

.our-projects {
  min-height: 60vh;
  padding-block: 5vh calc(2.5vh + 10px);
  --theme: var(--primary-color-dark);
  --theme-txt: #fff;
}
.our-projects .projects {
  gap: 20px;
}
.our-projects .project {
  width: 260px;
  min-height: 300px;
  border: solid 2px rgba(0, 0, 0, 0.3);
  padding: 12px;
  gap: 10px;
  border-radius: 10px;
}
.our-projects .project__author {
  opacity: 0.6;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}
.our-projects .project__author::after {
  content: "";
  display: block;
  bottom: 0;
  height: 2px;
  width: 0%;
  border-radius: 2px;
  background-color: #000;
  position: absolute;
  transition: all 300ms ease-in-out;
  transform: translateY(200%);
}
.our-projects .project__author:is(:hover, :focus) {
  opacity: 1;
}
.our-projects .project__author:is(:hover, :focus)::after {
  width: 100%;
}
.our-projects h2 {
  margin-bottom: 30px;
  font-size: 40px;
}
.our-projects img {
  border-radius: 8px;
  aspect-ratio: 1/1;
  margin-bottom: 6px;
  align-self: center;
}
.our-projects h3 {
  font-size: 20px;
  margin-bottom: 2px;
}
.our-projects .catagory {
  gap: 10px;
}
.our-projects .catagory__item {
  font-size: 12px;
  background-color: var(--theme);
  color: var(--theme-txt);
  padding: 5px 10px;
  border-radius: 6px;
}
.our-projects .explore-btn {
  font-size: 14px;
  margin-block: 16px;
}
.our-projects .explore-btn i {
  margin-left: 8px;
  font-size: 16px;
}
.our-projects .explore-btn:hover {
  color: var(--theme);
}
.our-projects .explore-btn:hover i {
  margin-left: 14px;
  color: var(--theme);
}
.our-projects .pastariano {
  --theme: rgb(228, 76, 76);
}
.our-projects .tscups {
  --theme: rgb(128, 83, 51);
}
.our-projects .bubbley {
  --theme: rgb(252, 83, 148);
}

.us-container {
  padding-block: calc(3vh + 15px);
  color: var(--off-black);
  gap: 70px;
}
.us-container h2 {
  font-size: 60px;
  letter-spacing: 3px;
}
.us-container p {
  font-size: 20px;
}
.us-container .about-img {
  width: 28%;
  border-radius: 16px;
}
.us-container .about-txt {
  width: 42%;
  gap: 16px;
}
.us-container .bg-img {
  height: 150%;
  -o-object-fit: contain;
     object-fit: contain;
  left: 0;
  transform: translateX(-25%) translateY(20%) scaleX(-1);
  opacity: 0.08;
}

.team-container {
  min-height: 60vh;
  padding-block: calc(5vh + 25px);
  gap: 45px;
}
.team-container h2 {
  font-size: 40px;
  z-index: 3;
}
.team-container h3 {
  font-size: 18px;
  z-index: 3;
  letter-spacing: 1px;
  margin: 0px 0px 10px 10px;
  color: var(--off-black);
}
.team-container p {
  color: var(--off-black);
  opacity: 0.8;
  font-size: 17px;
  z-index: 3;
  letter-spacing: 1px;
  margin: 0px 0px 10px 10px;
}
.team-container .employee-cards {
  gap: 60px;
}
.team-container .employee-card {
  min-height: 300px;
  width: 250px;
  padding: 30px 20px;
  gap: 8px;
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
  background-color: var(--background-color);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  background-color: #fff;
  border: rgba(0, 0, 0, 0.1) 2px solid;
  border-radius: 16px;
}
.team-container img {
  height: 140px;
  aspect-ratio: 1/1;
  border-radius: 200000px;
  margin-bottom: 16px;
  align-self: center;
}

.contact-container {
  background-color: #fff;
  color: var(--secondary-color);
  overflow: hidden;
  padding-inline: 30px;
}
.contact-container .contact-holder {
  min-height: 75vh;
}
.contact-container .holder {
  background-color: #fff;
  width: 90%;
  padding: 50px;
  border-radius: 16px;
}
.contact-container .contact-title {
  width: 50%;
  align-self: flex-start;
}
.contact-container ul {
  padding-block: 24px;
  gap: 16px;
}
.contact-container ul i {
  color: var(--primary-color);
  font-size: 26px;
  transition: all 300ms ease-in-out;
}
.contact-container ul i:hover {
  opacity: 0.6;
}
.contact-container ul .fa-instagram {
  font-size: 30px;
}
.contact-container ul .fa-discord {
  font-size: 22px;
}
.contact-container ul .fa-square-x-twitter {
  font-size: 28px;
}
.contact-container h2 {
  font-size: 36px;
  color: var(--primary-color);
  letter-spacing: 1px;
}
.contact-container h2 span {
  font-size: inherit;
}
.contact-container h2 span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  text-transform: uppercase;
  height: 4px;
  background-color: var(--primary-color);
  transition: all ease-in-out 300ms;
}
.contact-container .sign {
  margin-bottom: 20px;
}
.contact-container .sign span::after {
  right: 0;
}
.contact-container form {
  width: 50%;
  gap: 8px;
}
.contact-container .signinup {
  width: 80%;
  gap: 10px;
}
.contact-container h3 {
  font-size: 26px;
  color: var(--off-black);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.contact-container input {
  outline: none;
  border: none;
  font-size: 20px;
  padding: 4px;
  border-bottom: 2px solid rgb(209, 195, 195);
}
.contact-container input::-moz-placeholder {
  text-transform: uppercase;
  font-weight: bold;
}
.contact-container input::placeholder {
  text-transform: uppercase;
  font-weight: bold;
}
.contact-container textarea {
  all: unset;
  text-align: left;
  font-size: 20px;
  border-bottom: 2px solid rgb(209, 195, 195);
  height: 150px;
}
.contact-container textarea::-moz-placeholder {
  text-transform: uppercase;
  font-weight: bold;
}
.contact-container textarea::placeholder {
  text-transform: uppercase;
  font-weight: bold;
}
.contact-container button {
  all: unset;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: bold;
  align-self: end;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px;
  margin-top: 10px;
  letter-spacing: 1px;
  transition: all ease-in-out 300ms;
}
.contact-container button:hover {
  opacity: 0.6;
}
.contact-container p {
  font-size: 14px;
  margin-top: 20px;
}
.contact-container p a {
  font-size: inherit;
  color: var(--primary-color);
}
.contact-container .btnsign {
  padding: 0;
  margin: 0;
}

.legal-container {
  padding-inline: 30px;
}
.legal-container .legal-content {
  padding: calc(5vh + 20px) 6vw;
  gap: 20px;
}
.legal-container .legal-content h1 {
  font-size: 40px;
  margin-bottom: 30px;
  align-self: center;
}
.legal-container .legal-content h2 {
  font-size: 20px;
  margin-top: 10px;
}
.legal-container .legal-content p {
  font-size: 16px;
}
.legal-container .legal-content a {
  font-size: inherit;
  color: var(--primary-color-dark);
  transition: all ease-in-out 250ms;
}
.legal-container .legal-content a:hover {
  opacity: 0.6;
}

.sidebar {
  width: 20%;
  padding: 10px;
  min-height: 100vh;
}
.sidebar .dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.sidebar .dropdown h2 {
  font-size: 14px;
  color: black;
  padding-block: 10px;
  letter-spacing: normal;
}
.sidebar .dropdown i {
  font-size: 14px;
}
.sidebar .language {
  row-gap: 3.5px;
}
.sidebar .language h1 {
  font-size: 14px;
}
.sidebar .language a {
  font-size: 14px;
  color: #212121;
}
.sidebar .language a:hover {
  color: var(--primary-color-dark);
  -webkit-text-decoration: underline solid 2px var(--primary-color-dark);
          text-decoration: underline solid 2px var(--primary-color-dark);
}
.sidebar .language .expandarrow {
  animation: arrow 2s infinite ease-in-out;
}
.sidebar .language .expand {
  cursor: pointer;
  -moz-column-gap: 3px;
       column-gap: 3px;
}
.sidebar .language .expand p {
  font-size: 14px;
  font-weight: bold;
}
.sidebar .language .expand i {
  font-size: 14px;
}
.sidebar .language .moreLanguage {
  display: none;
}
.sidebar .dropdown-content {
  display: none;
  min-height: 15vh;
  row-gap: 3.5px;
}
.sidebar .diff {
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.sidebar .diff p {
  font-size: 14px;
}
.sidebar .box {
  height: 16px;
  aspect-ratio: 1/1;
  border-radius: 3px;
  border: 1px solid #252525;
}

.boxactive {
  background-color: var(--primary-color-dark);
}
.boxactive::after {
  content: "";
  display: block;
  background-image: url(../images/Coding_Sphere_Teal_NoBg.png);
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.slidecontainer .priceTitle {
  font-size: 14px;
  color: black;
  letter-spacing: normal;
}
.slidecontainer .slider {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  height: 2px;
  border-radius: 5px;
  background: #212121;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.slidecontainer .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 12px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--primary-color-dark);
  cursor: pointer;
}
.slidecontainer .slider::-moz-range-thumb {
  height: 12px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--primary-color-dark);
  cursor: pointer;
}

.content {
  width: 80%;
  padding: 10px 0px;
  gap: 10px;
}
.content .product {
  width: 225px;
  aspect-ratio: 1/1.5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: 0.2s ease-in-out;
  row-gap: 2px;
  padding: 5px;
  cursor: pointer;
}
.content .product .thumbnail {
  position: absolute;
  height: 45%;
  background-color: var(--primary-color-dark);
}
.content .product .thumbnail img {
  height: 70px;
  aspect-ratio: 1/1;
  filter: drop-shadow(0 0 0.75rem rgba(33, 33, 33, 0.3294117647));
}
.content .product .text-prod {
  height: 55%;
  padding: 5px;
  row-gap: 5px;
}
.content .product h4 {
  font-size: 16px;
  align-self: flex-start;
}
.content .product p {
  font-size: 12px;
}
.content .product .language-vid {
  font-size: 10px;
  background-color: var(--primary-color-dark);
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  align-self: flex-start;
}
.content .product .specs {
  bottom: 5px;
  padding: 5px;
}
.content .product .specs .difficulty-course img {
  height: 20px;
  aspect-ratio: 1/1;
}
.content .product .specs .creator {
  background-color: var(--primary-color-dark);
  padding: 5px;
  border-radius: 0px 0px 4px 4px;
}
.content .product .specs .creator h5 {
  color: #212121;
  font-size: 12px;
}
.content .product .specs .creator p {
  color: #fff;
  font-size: 12px;
}

@keyframes arrow {
  0% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}
.pricing-comp {
  padding: 40px calc(10px + 5vw);
}
.pricing-comp article {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 26px;
}
.pricing-comp .row :last-child {
  border-right: 0px;
}
.pricing-comp .cell {
  width: 25%;
  height: 125px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
.pricing-comp h2 {
  font-size: 18px;
  text-align: center;
}
.pricing-comp p {
  font-size: 16px;
  font-weight: 600;
  max-width: 70%;
  text-align: center;
}
.pricing-comp .bb {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.pricing-comp .fa-check {
  background-color: var(--primary-color);
  color: #fff;
  height: 28px;
  aspect-ratio: 1/1;
  font-size: 16px;
  border-radius: 16px;
}
.pricing-comp .fa-xmark {
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  height: 28px;
  aspect-ratio: 1/1;
  font-size: 16px;
  border-radius: 16px;
}

.pricing-container {
  padding-inline: 30px;
}
.pricing-container .pricing-plans h1 {
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 60px;
}
.pricing-container .card {
  padding: 12px 20px 20px;
  width: 325px;
  min-height: 420px;
  border-radius: 16px;
  gap: 30px;
  border: 2px solid var(--off-black);
}
.pricing-container .cards {
  gap: 40px;
}
.pricing-container .card h2 {
  font-size: 28px;
  letter-spacing: 1px;
  align-self: flex-start;
  border-bottom: 2px dotted var(--off-black);
  padding-block: 8px 16px;
}
.pricing-container .card__txt {
  font-size: 16px;
  width: 80%;
  text-align: center;
}
.pricing-container .card .divider {
  width: 70%;
}
.pricing-container .card__price {
  font-size: 55px;
  gap: 3px;
}
.pricing-container .card__price span {
  font-size: 24px;
}
.pricing-container .card__price .decimal {
  align-self: flex-start;
  margin-top: 10px;
}
.pricing-container .card__btn {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 14px;
  padding: 10px 26px;
  border-radius: 8px;
  margin-left: 8px;
  margin-bottom: 6px;
  transition: all ease-in 250ms;
}
.pricing-container .card__btn:after {
  content: "\f061";
  font-family: "FontAwesome";
  color: var(--primary-color-dark);
  font-size: 0px;
  transition: 0.4s ease-in-out;
}
.pricing-container .card__btn:hover {
  color: var(--primary-color-dark);
  background-color: var(--primary-color-half);
}
.pricing-container .card__btn:hover:after {
  font-size: 12px;
  margin-left: 10px;
}

/* -------------------------- Animations Classes --------------------------*/
.fade-out {
  animation: fadeOut 0.3s ease-in forwards;
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
  to {
    opacity: 0;
    transform: scale(1.3);
    pointer-events: none;
  }
}
.fade-in {
  animation: fadeIn 0.4s ease-in forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.3);
    pointer-events: auto;
  }
  to {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
}

.swipe-in-animation {
  animation: 0.25s ease-in-out swipeIn forwards 2s;
}
@keyframes swipeIn {
  from {
    transform: translateX(110%);
  }
  to {
    transform: translateX(0%);
  }
}
.swipe-out-animation {
  animation: 0.25s ease-in-out swipeOut forwards;
}
@keyframes swipeOut {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(110%);
  }
}

.scroll-in {
  --scroll-x: 0;
  --scroll-y: 0;
}
.scroll-in-btm {
  --scroll-x: 0px;
  --scroll-y: 200px;
  opacity: 0;
  animation: fadeScrollIn linear forwards;
  animation-timeline: view();
  animation-range: cover 15% cover 40%;
}
@keyframes fadeScrollIn {
  0% {
    opacity: 0;
    transform: translate(var(--scroll-x), var(--scroll-y));
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.highlight-text {
  background-color: var(--primary-color);
  padding-inline: 25px;
}

.pricing-container {
  padding-inline: 30px;
}
.pricing-container .pricing-plans h1 {
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 60px;
}
.pricing-container .card {
  padding: 12px 20px 20px;
  width: 325px;
  min-height: 420px;
  border-radius: 16px;
  gap: 30px;
  border: 2px solid var(--off-black);
}
.pricing-container .cards {
  gap: 40px;
}
.pricing-container .card h2 {
  font-size: 28px;
  letter-spacing: 1px;
  align-self: flex-start;
  border-bottom: 2px dotted var(--off-black);
  padding-block: 8px 16px;
}
.pricing-container .card__txt {
  font-size: 16px;
  width: 80%;
  text-align: center;
}
.pricing-container .card .divider {
  width: 70%;
}
.pricing-container .card__price {
  font-size: 55px;
  gap: 3px;
}
.pricing-container .card__price span {
  font-size: 24px;
}
.pricing-container .card__price .decimal {
  align-self: flex-start;
  margin-top: 10px;
}
.pricing-container .card__btn {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 14px;
  padding: 10px 26px;
  border-radius: 8px;
  margin-left: 8px;
  margin-bottom: 6px;
  transition: all ease-in 250ms;
}
.pricing-container .card__btn:after {
  content: "\f061";
  font-family: "FontAwesome";
  color: var(--primary-color-dark);
  font-size: 0px;
  transition: 0.4s ease-in-out;
}
.pricing-container .card__btn:hover {
  color: var(--primary-color-dark);
  background-color: var(--primary-color-half);
}
.pricing-container .card__btn:hover:after {
  font-size: 12px;
  margin-left: 10px;
}

/* -------------------------- Utility Classes --------------------------*/
.flex {
  display: flex;
}

.row {
  flex-direction: row;
}
.row-r {
  flex-direction: row-reverse;
}

.col {
  flex-direction: column;
}
.col-r {
  flex-direction: column-reverse;
}

.wrap {
  flex-wrap: wrap;
}

.nowrap {
  flex-wrap: nowrap;
}

.jcc {
  justify-content: center;
}
.jcb {
  justify-content: space-between;
}
.jca {
  justify-content: space-around;
}
.jce {
  justify-content: space-evenly;
}
.jcstart {
  justify-content: flex-start;
}
.jcend {
  justify-content: flex-end;
}

.aic {
  align-items: center;
}
.ais {
  align-items: start;
}
.aie {
  align-items: end;
}

.p-relative {
  position: relative;
}
.p-absolute {
  position: absolute;
}
.p-fixed {
  position: fixed;
}

.t-0 {
  top: 0;
}

.r-0 {
  right: 0;
}

.b-0 {
  bottom: 0;
}

.l-0 {
  left: 0;
}

.h-100 {
  height: 100%;
}

.vh-100 {
  height: 100vh;
}

.min-vh-100 {
  min-height: 100vh;
}

.w-100 {
  width: 100%;
}

.square {
  aspect-ratio: 1;
}

.obj-fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.obj-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.obj-fit-fill {
  -o-object-fit: fill;
     object-fit: fill;
}

.t-bold {
  font-weight: bold;
}
.t-upper {
  text-transform: uppercase;
}
.t-lower {
  text-transform: lowercase;
}

.ease-in-out-250ms {
  transition: all ease-in-out 250ms;
}

.hidden {
  display: none !important;
  transition: 500ms;
}

/*----------------RESPONSIVENESS----------------*/
/*----------------HERO LANDING PAGE----------------*/
@media (max-width: 768px) {
  .copyRight {
    display: none;
  }
  .hero-content {
    margin-top: 50px;
    flex-direction: column;
    align-items: center;
  }
  .hero-content p {
    width: 100%;
  }
  .hero-txt {
    max-width: 100%;
  }
  .hero-txt h1 {
    font-size: 26px;
  }
  .hero-txt h1 span {
    font-size: 26px;
  }
  .hero-txt {
    width: 100% !important;
  }
  .hero-img {
    display: none;
  }
  .hero-intro {
    display: none;
  }
  .hero-intro-responsive {
    display: flex;
    font-size: 10px;
  }
  /*----------------Contact Page----------------*/
  .contact-holder .holder {
    padding: 10px;
    flex-direction: column;
  }
  .contact-holder {
    padding-inline: 5px;
  }
  .contact-holder form {
    width: 100%;
  }
  .contact-holder form .contacth3 {
    display: none;
  }
  .contact-title ul {
    display: none;
  }
  /*----------------Courses----------------*/
  .sidebarinnit {
    flex-direction: column;
    align-items: center;
  }
  .sidebarinnit .sidebar {
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    min-height: 23vh;
    padding-inline: 5px;
  }
  .sidebar .dropdown h2 {
    padding-block: 0;
  }
  .sidebar .dropdown i {
    display: none;
  }
  .sidebar .slidecontainer {
    width: 30%;
  }
  .sidebar .dropdown {
    width: 30%;
  }
  .sidebar .language {
    width: 30%;
  }
  /*----------------HERO LANDING PAGE----------------*/
  .visible-nav h1 {
    display: none;
  }
  .visible-nav {
    width: 100%;
  }
  /*----------------ABOUT US PAGE----------------*/
  .employee-cards {
    flex-direction: column;
  }
  .about-img img {
    display: none;
  }
  .us-container {
    justify-content: start;
    padding-left: 3.5rem;
  }
  .us-container img {
    display: none;
  }
  /*-------------------PERMIUM BANNER---------------*/
  .banner-container {
    justify-content: center;
    align-items: center !important;
    gap: 10px;
  }
  .banner-txt {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .banner-txt h2 {
    text-align: center;
    width: 100%;
    font-size: 10px;
  }
  .banner-container img {
    display: none;
  }
  .banner-container .buttons {
    margin-top: 10px;
  }
  .banner-container .buttons a {
    font-size: 10px;
    padding: 10px 20px;
  }
  /*--------------------FOOTER--------------------*/
  footer .btn {
    display: flex;
  }
  .newsletter-container input {
    width: 200px !important;
  }
}/*# sourceMappingURL=stylesheet.css.map */