@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Uncial+Antiqua&display=swap");

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #d8f3dc;
}

::-webkit-scrollbar-thumb {
  background: #7b7b7b;
  border-radius: 5px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  min-height: 100vh;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #000;
  background: radial-gradient(ellipse at bottom, #d8f3dc 60%, #f1faee 100%);
}

#main {
  width: 100%;
  height: fit-content;
  overflow-x: hidden;
}

header.navbar.sticky {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #111111;
}

@media (max-width: 1023px) {
  header.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
  }
}

header .logo {
  padding: 10px 0;
  width: 16vw;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header .logo img {
  width: 6em;
  max-width: 6em;
  height: 6vh;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}

header .logo img:hover {
  scale: 1.2;
}

header .logo span {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 0.7rem;
  transition: all 0.5s ease-in-out;
}

header .logo:hover span {
  text-shadow: 0 0 5px #d8f3dc, 0 0 8px #d8f3dc, 0 0 9px #d8f3dc,
    0 0 10px #d8f3dc, 0 0 15px #d8f3dc, 0 0 20px #d8f3dc;
}

/* animation menu hamburger */
.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

@media (max-width: 1023px) {
  .menu-btn {
    display: flex;
  }
}

.menu-btn .menu-btn__lines,
.menu-btn .menu-btn__lines::before,
.menu-btn .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: #d8f3dc;
  transition: all 0.4s ease-in-out;
}

.menu-btn .menu-btn__lines::before,
.menu-btn .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.menu-btn .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.menu-btn .menu-btn__lines::after {
  transform: translateY(0.5rem);
}

.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #d8f3dc;
}

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #d8f3dc;
}

.expand-btn:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: " \25BE";
  opacity: 0.75;
  transform: translateY(-50%) rotate(0);
  transition: 0.25s;
}

.expand-btn.open {
  color: #d8f3dc;
}

.expand-btn.open:after {
  transform: translateY(-50%) rotate(180deg);
}

/* navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
  padding: 0 40px;
  background: #111111;
  box-shadow: 0 5px 30px 0 #111111;
}

@media (max-width: 1023px) {
  .navbar {
    padding: 10px 20px;
  }
}

.navbar.sticky {
  position: sticky;
  z-index: 999;
  top: 0;
}

.navbar .logo {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.navbar .menu-items {
  display: flex;
  align-items: center;
}

.navbar .menu-items::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  background-color: #111111;
}

.navbar .menu-items::-webkit-scrollbar {
  width: 6px;
  background-color: #111111;
}

.navbar .menu-items::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  background-color: #fff;
}

@media (max-width: 1023px) {
  .navbar .menu-items {
    scrollbar-gutter: stable;
    position: fixed;
    top: 6rem;
    left: 0;
    display: block;
    width: 350px;
    height: 100%;
    padding-top: 30px;
    padding-bottom: 100px;
    padding-right: 10px;
    background: #111111;
    overflow-y: auto;
    transform: translateX(-100vh);
    transition: 0.3s ease-out;
  }

  .navbar .menu-items.open {
    transform: translateY(0);
    height: 100vh;
    width: 100vw;
  }
}

.navbar .menu-items > li > .menu-item {
  padding: 1.5rem 1rem;
  font-size: 1.1rem;
}

@media (max-width: 1023px) {
  .navbar .menu-items > li > .menu-item {
    padding: 1rem 1rem;
    font-size: 1.5rem;
  }
}

.navbar .menu-items li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1023px) {
  .navbar .menu-items li a {
    padding: 10px 1rem;
    font-size: 1.5rem;
  }
}

.navbar .dropdown {
  position: relative;
}

@media (min-width: 1024px) {
  .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

  .navbar .dropdown:hover > .expand-btn:after {
    transform: translateY(-50%) rotate(180deg);
  }
}

@media (min-width: 1024px) {
  .navbar .dropdown .dropdown-right .expand-btn:after,
  .navbar .dropdown .dropdown-left .expand-btn:after {
    right: 0.625rem;
  }
}

@media (min-width: 1024px) {
  .navbar .dropdown-menu {
    position: absolute;
    top: 65px;
    right: 0;
    left: 0;
    width: 190px;
    padding: 5px 0;
    background: #111111;
    border-radius: 0 0 5px 5px;
    opacity: 0;
    box-shadow: 0 20px 50px 0 #111111;
    visibility: hidden;
    transition: all 0.4s ease;
  }
}

@media (max-width: 1023px) {
  .navbar .dropdown-menu {
    display: none;
    position: relative;
    top: 0;
    width: 100%;
    padding-left: 1rem;
    overflow: hidden;
  }
}

.navbar .menu-right {
  top: 0;
  left: 100%;
}

@media (max-width: 1023px) {
  .navbar .menu-right {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    padding-left: 1.5rem;
  }

  .navbar .menu-right:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 20px;
    width: 1px;
    height: calc(100% - 25px);
    background-color: #111111;
    transform: translateY(-50%);
  }
}

.navbar .menu-left {
  top: 0;
  left: -100%;
}

@media (max-width: 1023px) {
  .navbar .menu-left {
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 1.5rem;
  }

  .navbar .menu-left:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 20px;
    width: 1px;
    height: calc(100% - 25px);
    background-color: #111111;
    transform: translateY(-50%);
  }
}

.navbar .menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 14px;
  transition: 0.25s;
}

.navbar .menu-item:hover {
  text-shadow: 0 0 5px #d8f3dc, 0 0 8px #d8f3dc, 0 0 9px #d8f3dc,
    0 0 10px #d8f3dc, 0 0 15px #d8f3dc, 0 0 20px #d8f3dc;
}

.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul li a {
  position: relative;
  text-decoration: none;
  color: #fff;
}

@media (min-width: 1024px) {
  .navbar .dropdownMega {
    position: inherit !important;
  }
}

@media (min-width: 1024px) {
  .navbar .mega-menu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
  }
}

@media (max-width: 1023px) {
  .navbar .mega-menu {
    position: relative;
    display: none;
    padding-left: 0;
  }
}

.navbar .mega-menu .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  background: #111111;
  -webkit-box-shadow: 0 20px 50px 0 #111111;
  box-shadow: 0 20px 50px 0 #111111;
}

@media (max-width: 1023px) {
  .navbar .mega-menu .content {
    grid-template-columns: auto;
  }
}

@media (min-width: 1024px) {
  .navbar .mega-menu .content {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 1023px) {
  .navbar .mega-menu .content .col {
    padding: 0;
    width: 100%;
  }
}

.navbar .category .content .col .img-wrapper {
  margin: 1rem 0;
}

.navbar .category .content .col .img-wrapper span img {
  width: 80%;
  height: 80%;
}

.navbar .blog .content {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 1024px) {
  .navbar .blog .content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.navbar .blog .content .col .img-wrapper {
  margin-bottom: 1rem;
}

.navbar .blog .content .col .menu-title {
  font-weight: normal;
  font-size: 1.125rem;
}

.navbar .blog .content .col .menu-title a {
  transition: 0.25s;
}

.navbar .blog .content .col .menu-title a:hover {
  color: #d8f3dc;
}

.navbar .content .col {
  display: flex;
  flex-direction: column;
}

.navbar .content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  overflow: hidden;
}

.navbar .content .col .img-wrapper:hover img {
  transform: scale(1.1);
}

.navbar .content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.navbar .content .col img {
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease-in-out;
}

.navbar .content .col .menu-title {
  color: #00f5d4;
  font-size: 1.25rem;
  line-height: 1.125rem;
  border-left: 2px solid #00f5d4;
  padding-left: 0.625rem;
}

.navbar .content .col .menu-title a {
  color: #00f5d4;
}

@media (max-width: 1023px) {
  .navbar .content .col .menu-title {
    font-size: 1.5rem;
  }
}

.navbar .content .col p {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  font-size: 1rem;
  line-height: 1.6rem;
  color: #ffffff;
}

.navbar .content .col .mega-links {
  padding-left: 1rem;
  border-left: 1px solid #979797;
}

@media (max-width: 1023px) {
  .navbar .content .col .mega-links {
    border-left: 0;
    padding-left: 0;
  }

  .navbar .content .col .mega-links li {
    margin: 0;
  }

  .navbar .content .col .mega-links li a {
    padding: 0 0.5rem;
  }
}

.navbar .content .col .mega-links li {
  margin: 1rem 0;
}

.navbar .content .col .mega-links li a {
  padding: 0;
}

@media (max-width: 1023px) {
  .overflow {
    overflow: hidden;
  }
}

@media (max-width: 1023px) {
  .overlay {
    position: fixed;
    z-index: 500;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .overlay.overlay--active {
    opacity: 1;
    visibility: visible;
  }
}

main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 0 4rem;
  margin-top: 9em;
}

.center-part1 {
  width: 60%;
  height: 100%;
  margin-top: 10rem;
  position: relative;
}

.center-part1 h1 {
  font-family: "Uncial Antiqua", system-ui;
  text-transform: uppercase;
  font-size: 6rem;
  margin-top: -2rem;
  color: #027148;
  line-height: 1;
  text-shadow: 5px 5px 5px #545454;
}

.center-part1 h2 {
  font-size: 3rem;
  line-height: 1;
  margin-top: 1.5rem;
  text-shadow: 2px 2px 5px #545454;
}

.center-part1 p {
  font-size: 1.25rem;
  width: 95%;
  padding: 2rem 0;
}

.center-part1 button {
  background-color: #111111;
  outline: none;
  z-index: 100;
  position: absolute;
  border: none;
  color: #d8f3dc;
  border-radius: 5px;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 25px;
  cursor: pointer;
  text-transform: capitalize;
}

.glow-on-hover {
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

.glow-on-hover:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #000;
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.center-part2 {
  position: relative;
  width: 40%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: end;
  object-fit: cover;
  position: relative;
  margin-top: 10rem;
}

.center-part2 video {
  border-radius: 10px;
  width: 100%;
  box-shadow: 0px 0px 15px #111111;
}

.center-part2 .whatsapp {
  position: absolute;
  bottom: -5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-part2 .whatsapp a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 0.5rem 5rem;
  width: 100%;
  background-color: #027148;
  color: #d8f3dc;
  border-radius: 5px;
  transition: all 0.1s ease-in-out;
}

.center-part2 .whatsapp a:hover {
  scale: 1.05;
  transform: translateY(-3px);
}

.center-part2 .whatsapp a i {
  align-self: center;
  font-size: 2rem;
}

.section2 {
  width: 100%;
  height: auto;
}

.section2 .services {
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.services h3 {
  background-color: #111111;
  color: #d8f3dc;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 1.5rem;
}

.services p {
  width: 60%;
  font-size: 1.1rem;
  font-weight: 500;
}

.container {
  min-height: 85vh;
  width: 100%;
  padding: 2rem 6rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.5rem;
}

.elem {
  flex-shrink: 0;
  height: 200px;
  width: 45%;
  padding: 20px 40px;
  border: 2px solid #d8f3dc;
  border-radius: 5px;
  box-shadow: 5px 5px 15px #111111;
  display: flex;
}

.elem .elem-part1 {
  height: 100%;
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}

.elem .elem-part1 h2 {
  width: fit-content;
  font-size: 2rem;
  padding: 2px 25px;
  background-color: #111111;
  color: #d8f3dc;
  font-weight: 500;
  border-radius: 5px;
  text-transform: uppercase;
}

.elem .elem-part1 a {
  font-size: 1.1rem;
  display: flex;
  gap: 0.5rem;
  color: #111111;
  padding: 10px 40px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}

.elem .elem-part1 a i {
  position: absolute;
  background-color: #111111;
  color: #d8f3dc;
  padding: 5px;
  top: 0.2rem;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s ease-in-out;
}

.elem:hover .elem-part1 a i {
  transform: rotateZ(45deg);
}

.elem .elem-part2 {
  height: 100%;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.elem .elem-part2 img {
  height: 60%;
  transition: all 0.3s ease-in-out;
}

.elem:hover .elem-part2 img {
  scale: 1.2;
}

.black {
  background-color: #111111;
  color: #d8f3dc;
  border: 2px solid #111111;
}

.black .elem-part1 h2 {
  color: #111111;
  background-color: #d8f3dc;
}

.black .elem-part1 a {
  color: #d8f3dc;
}

.black .elem-part1 a i {
  background-color: #d8f3dc;
  color: #111111;
}

.section3 {
  width: 100%;
  height: auto;
}

.section3 .teachers {
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.teachers h3 {
  background-color: #111111;
  color: #d8f3dc;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 1.5rem;
}

.teachers p {
  width: 60%;
  font-size: 1.1rem;
  font-weight: 500;
}

.img_container {
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.img_container .box {
  overflow: hidden;
  margin: 1em;
  width: 24em;
  height: 26em;
  background-color: #111111;
  border-radius: 0.5em;
  box-shadow: 5px 5px 15px #111111;
  position: relative;
  transition: 0.5s ease-in-out;
}

.box:hover {
  transform: translateY(1em);
  box-shadow: 1px 1px 5px 2px #111111;
}

.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #115d331a, #111111);
  z-index: 2;
  transition: 0.5s all;
  opacity: 0;
}

.box:hover::before {
  opacity: 1;
}

.img_container .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  left: 0;
}

.box .info {
  position: relative;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: #fff3ff;
  opacity: 0;
  transform: translateY(10em);
  transition: 0.5s all;
}

.box:hover .info {
  opacity: 1;
  display: flex;
  flex-direction: column;
  transform: translateY(20em);
}

.box:hover h2 {
  text-align: center;
  font-size: 1.4rem;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.class-pic {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem;
}

.class-pic img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  max-width: 60vw;
  box-shadow: 1px 1px 15px 2px #111111;
  transition: all 0.3s ease-in-out;
}

.class-pic img:hover,
.mobile-pic img:hover {
  scale: 0.9;
}

.mobile-pic {
  width: 100%;
  height: auto;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem;
}

.mobile-pic img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  max-width: 60vw;
  box-shadow: 1px 1px 15px 2px #111111;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  .center {
    padding: 0 1.5rem;
    margin-top: 2rem;
    flex-direction: column;
  }

  .center-part1 {
    width: 100%;
    height: fit-content;
  }
  .center-part1 h1 {
    font-size: 4rem;
    width: 100%;
    text-align: center;
  }

  .center-part1 h2 {
    font-size: 2rem;
    width: 100%;
    text-align: center;
  }

  .center-part1 p {
    text-align: justify;
    font-size: 1.25rem;
    font-weight: 500;
  }

  .center-part2 {
    width: 100%;
    height: fit-content;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
  }

  .center-part2 .whatsapp {
    width: 100%;
    height: fit-content;
    margin-top: 1rem;
  }

  .section2 .services {
    flex-direction: column;
    padding: 1.5rem;
  }

  .section2 .services h3 {
    width: 100%;
    text-align: center;
  }

  .section2 .services p {
    width: 100%;
    text-align: justify;
  }

  .section2 .container {
    padding: 0 1.5rem;
    flex-direction: column;
    margin-bottom: 3rem;
  }

  .section2 .container .elem {
    width: 100%;
    padding: 1rem;
  }

  .section2 .container .elem .elem-part1 {
    width: 100%;
  }

  .section3 .teachers {
    flex-direction: column;
    padding: 1.5rem;
  }

  .section3 .teachers h3 {
    width: 100%;
    text-align: center;
  }

  .section3 .teachers p {
    width: 100%;
    text-align: justify;
  }

  .section3 .img_container {
    padding: 0.5rem 1.5rem;
    flex-direction: column;
  }

  .section3 .img_container .box {
    width: 100%;
  }

  .section3 .img_container .box:hover .info {
    transform: translateY(18em);
  }

  .section3 .img_container .box:hover h2 {
    font-size: 1.8rem;
  }

  .section3 .img_container .box:hover span {
    font-size: 1.5rem;
  }

  .class-pic {
    width: 100%;
    display: none;
  }

  .section3 .mobile {
    padding: 1.5rem;
  }

  .mobile-pic {
    width: 100%;
    height: 60vh;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background-image: url(../images/banners/steps7.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  /* .mobile-pic img {
    width: 100%;
    height: 100%;

  } */
}

.footer {
  position: relative;
  width: 100%;
  height: auto;
  background: #111111;
  margin-top: 2rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#footer-part {
  width: 100%;
  height: 30vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer-logo {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer-logo iframe {
  width: 15vw;
  height: 20vh;
  margin-bottom: 1rem;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

#footer-logo iframe:hover {
  box-shadow: 0 0 5px #d8f3dc, 0 0 8px #d8f3dc, 0 0 9px #d8f3dc,
    0 0 10px #d8f3dc, 0 0 15px #d8f3dc, 0 0 20px #d8f3dc;
}

#footer-logo span {
  color: #d8f3dc;

}

.footer-certificates {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
}

.footer-certificates img {
  width: 100opx;
  height: 100px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.footer-certificates img:hover {
  box-shadow: 0 0 5px #d8f3dc, 0 0 8px #d8f3dc, 0 0 9px #d8f3dc,
    0 0 10px #d8f3dc, 0 0 15px #d8f3dc, 0 0 20px #d8f3dc;
}

#footer-part-options {

  top: -50%;
  right: 0;
}

.social-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}


.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #d8f3dc;
  text-decoration: none;
  font-size: 2rem;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}

.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #d8f3dc;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  font-weight: 300;
}

.menu__link:hover {
  text-shadow: 0 0 5px #d8f3dc, 0 0 8px #d8f3dc, 0 0 9px #d8f3dc,
    0 0 10px #d8f3dc, 0 0 15px #d8f3dc, 0 0 20px #d8f3dc;
}

.footer .bottom {
  width: 100%;
  padding: 1em;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer .bottom p {
  color: #d8f3dc;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}

.footer .bottom p a {
  text-decoration: none;
  color: #d8f3dc;
  transition: 0.5s;
}

.footer .bottom p a:hover {
  text-shadow: 0 0 5px #d8f3dc, 0 0 8px #d8f3dc, 0 0 9px #d8f3dc,
    0 0 10px #d8f3dc, 0 0 15px #d8f3dc, 0 0 20px #d8f3dc;
}

@media only screen and (max-width: 768px) {
  .footer {
    margin-top: 3rem;
    padding: 1.5rem;
  }

  #footer-part {
    height: auto;
    flex-direction: column;
  }

  #footer-logo {
    margin: 1rem 0;
  }

  #footer-logo iframe {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
  }

  .footer-certificates {
    margin: 1.5rem;
  }

  .footer-certificates img {
    width: 50px;
    height: 50px;
  }

  .bottom {
    flex-direction: column-reverse;
  }
  .menu {
    flex-direction: column;
  }

  .menu__item {
    margin: 0.5rem 0;
  }
}
