@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  list-style: none;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

.container {
  padding: 0 2rem;
  margin: 0 auto;
  width: 100%;
  max-width: 130rem;
}

section {
  padding: 10rem 0;
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 1390px) {
  html {
    font-size: 9.8px;
  }
}
@media screen and (max-width: 1340px) {
  html {
    font-size: 9.6px;
  }
}
@media screen and (max-width: 1290px) {
  html {
    font-size: 9.4px;
  }
}
@media screen and (max-width: 1240px) {
  html {
    font-size: 9.2px;
  }
}
@media screen and (max-width: 1190px) {
  html {
    font-size: 9px;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 9px;
  }
}
@media screen and (max-width: 468px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 425px) {
  html {
    font-size: 9.75px;
  }
}
@media screen and (max-width: 400px) {
  html {
    font-size: 9.5px;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 9.25px;
  }
}
@media screen and (max-width: 350px) {
  html {
    font-size: 9px;
  }
}
@media screen and (max-width: 325px) {
  html {
    font-size: 8.75px;
  }
}
main section#success #success-title .container p, main section#success #success-content .container #success-message #success-text p, footer .container #footer-content #footer-contact ul li a p, footer .container #footer-copyright p, header nav#header-menu ul li a, header nav#header-menu #header-language #language-button p, header nav#header-menu #header-language #language-content ul#language-options li button {
  font-size: 1.4rem;
  font-weight: 500;
  color: #525252;
  line-height: 1.6;
}

header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 10rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  transition: background-color 0.3s ease;
}
header.scroll {
  background-color: #111;
  border-bottom: 0.35rem solid #bd181a;
}
header.scroll nav#header-menu ul#language-options {
  background-color: #111;
}
header #header-logo img {
  width: 18rem;
}
header #header-mobile {
  display: none;
}
header #header-mobile i {
  font-size: 2.5rem;
  color: #fff;
}
header nav#header-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
}
header nav#header-menu ul {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2.25rem;
}
header nav#header-menu ul:hover li a {
  opacity: 0.65;
}
header nav#header-menu ul li:hover a {
  opacity: 1;
}
header nav#header-menu ul li a {
  color: #fff;
  transition: opacity 0.3s ease;
}
header nav#header-menu #header-language {
  position: relative;
}
header nav#header-menu #header-language #language-button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.75rem;
}
header nav#header-menu #header-language #language-button.active i {
  transform: rotate(-180deg);
}
header nav#header-menu #header-language #language-button svg {
  width: 2rem;
}
header nav#header-menu #header-language #language-button p {
  color: #fff;
}
header nav#header-menu #header-language #language-button i {
  font-size: 1rem;
  color: #fff;
  transition: transform 0.3s ease;
}
header nav#header-menu #header-language #language-button i.fa-globe {
  font-size: 1.4rem;
}
header nav#header-menu #header-language #language-content {
  display: none;
  position: absolute;
  top: 3rem;
  left: 1.8rem;
}
header nav#header-menu #header-language #language-content ul#language-options {
  padding: 0.5rem;
  border-radius: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
header nav#header-menu #header-language #language-content ul#language-options li button {
  cursor: pointer;
  display: inline-block;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0.5rem;
  border-radius: 0.6rem;
  color: #fff;
  transition: opacity 0.3s ease;
}
header nav#header-menu #header-language #language-content ul#language-options li button:hover {
  opacity: 0.5;
}

@media screen and (max-width: 1024px) {
  header {
    padding: 2rem;
  }
}
@media screen and (max-width: 768px) {
  header {
    align-items: center;
    flex-wrap: wrap;
  }
  header #header-mobile {
    display: block;
  }
  header nav#header-menu {
    width: 100%;
    display: none;
  }
  header nav#header-menu ul {
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
  }
  header nav#header-menu #header-language {
    margin-top: 2.25rem;
    display: flex;
    justify-content: flex-end;
  }
  header nav#header-menu #header-language #language-content {
    left: initial;
    right: 0;
  }
}
footer {
  background-color: #111;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .container #footer-content {
  padding: 5rem 0;
  display: grid;
  grid-template-columns: 40rem 28rem 28rem;
  align-items: stretch;
}
footer .container #footer-content #footer-logo img {
  width: 18rem;
  filter: brightness(0) invert(1);
}
footer .container #footer-content h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #6a6a6a;
  margin-bottom: 2rem;
}
footer .container #footer-content #footer-overview ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .container #footer-content #footer-overview ul li a {
  font-size: 1.6rem;
  font-weight: 600;
  color: #6a6a6a;
}
footer .container #footer-content #footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .container #footer-content #footer-contact ul li {
  max-width: 27.5rem;
}
footer .container #footer-content #footer-contact ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
}
footer .container #footer-content #footer-contact ul li a p {
  color: #6a6a6a;
}
footer .container #footer-content #footer-contact ul li a i {
  font-size: 1.4rem;
  color: #6a6a6a;
}
footer .container #footer-copyright {
  padding: 2rem 0;
  border-top: 0.15rem solid #292929;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
footer .container #footer-copyright ul#footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
footer .container #footer-copyright ul#footer-social li a {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 0.15rem solid #6a6a6a;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .container #footer-copyright ul#footer-social li a i {
  font-size: 1.4rem;
  color: #6a6a6a;
}
footer .container #footer-copyright p {
  color: #6a6a6a;
}

@media screen and (max-width: 768px) {
  footer .container #footer-content {
    padding: 5rem 2rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
main section#success #success-content .container #success-message a {
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  padding: 1rem 4rem;
  border-radius: 0.4rem;
  background-color: #bd181a;
}
main section#success #success-content .container #success-message a.secondary {
  background-color: #fff;
  color: #bd181a;
}

/*#region Career Codes*/
main {
  overflow: hidden;
}
main section#success {
  padding-top: 0;
}
main section#success #success-title {
  position: relative;
  height: 35rem;
  padding: 5rem 0;
  background-image: url(../../../img/hero-img-2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
main section#success #success-title::after {
  z-index: 0;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.56) 100%);
}
main section#success #success-title .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
}
main section#success #success-title .container * {
  z-index: 1;
}
main section#success #success-title .container h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
}
main section#success #success-title .container p {
  color: #fff;
  font-weight: 400;
}
main section#success #success-content {
  padding-top: 5rem;
}
main section#success #success-content .container #success-message {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 7rem;
  border-radius: 1rem;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
}
main section#success #success-content .container #success-message #success-icon {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: #bd181a;
  display: flex;
  justify-content: center;
  align-items: center;
}
main section#success #success-content .container #success-message #success-icon i {
  font-size: 4rem;
  color: #fff;
}
main section#success #success-content .container #success-message #success-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
main section#success #success-content .container #success-message #success-text h1 {
  font-size: 3.2rem;
  font-weight: 600;
  color: #bd181a;
}
main section#success #success-content .container #success-message a {
  margin-top: 3rem;
}

/*#endregion*/
/*#region Career Responsive Codes*/
@media screen and (max-width: 768px) {
  main section#success #success-content .container #success-message {
    padding: 5rem 3rem;
  }
}
/*#endregion*//*# sourceMappingURL=success.css.map */