@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html, body {
  scroll-behavior: smooth;
}

h2.h2 {
  font-size: 80px;
  color: #1E3B3D;
  font-weight: 500;
  text-transform: capitalize;
}

@media only screen and (max-width: 1550px) {
  h2.h2 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 1300px) {
  h2.h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 900px) {
  h2.h2 {
    font-size: 37px;
  }
}
@media only screen and (max-width: 700px) {
  h2.h2 {
    font-size: 32px;
  }
}
.cross {
  height: 250px;
  width: 250px;
  position: absolute;
}
.cross img {
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 900px) {
  .cross {
    height: 175px;
    width: 175px;
  }
}
header {
  min-height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 5%;
  background: #1E3B3D;
}
header .logo {
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo img {
  height: 65px;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 20px;
}
header nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  border: 2px solid transparent;
  padding: 12px 30px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1em;
  transition: 0.25s ease;
}
header nav a.active {
  border: 2px solid #fff;
}
header nav a:hover {
  color: #FBDA71;
  border: 2px solid #FBDA71;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #FBDA71;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 601;
  background: #1E3B3D;
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #FBDA71;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid #FBDA71;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header nav {
    gap: 0px;
  }
  header nav a {
    font-size: 13px;
    padding: 10px 25px;
  }
  header nav a::after {
    bottom: -3px;
  }
  header .btn a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1300px) {
  header .logo img {
    height: 50px;
  }
  header nav {
    display: none;
  }
  header .btn {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
@media only screen and (max-width: 700px) {
  header {
    padding: 0 10%;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
}
.btn.white a {
  color: #fff;
  border: 2px solid #fff;
}
.btn.white:hover a {
  outline: 1px solid #fff;
}
.btn.green a {
  background: #1E3B3D;
  color: #fff;
  border: 2px solid #1E3B3D;
}
.btn.green:hover a {
  outline: 1px solid #1E3B3D;
}
.btn a {
  font-size: 1em;
  border: 2px solid #FBDA71;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #FBDA71;
  border-radius: 100px;
  text-decoration: none;
  padding: 0.75em 2em;
  font-weight: 600;
  transition: 0.2s ease;
}
.btn:hover a {
  outline: 1px solid #FBDA71;
}

footer {
  padding: 5rem 7.5%;
  background: #181818;
}
footer .footer__content {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: start;
}
footer .footer__content .left {
  width: 40%;
}
footer .footer__content .left img {
  height: 100px;
}
footer .footer__content .left p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75em;
}
footer .footer__content .left p a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
footer .footer__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1.15rem;
}
footer .footer__content .right a {
  text-decoration: none;
  color: #fff;
  font-size: 1.25em;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}
footer .footer__content .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #FBDA71;
  stroke-width: 3;
}

@media only screen and (max-width: 1300px) {
  footer .footer__content .left h2 {
    font-size: 2.5em;
  }
  footer .footer__content .left p {
    font-size: 0.85em;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 850px) {
  footer .footer__content .left h2 {
    font-size: 2em;
  }
  footer .footer__content .left p {
    font-size: 0.7em;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer .footer__content {
    flex-flow: column;
    row-gap: 4rem;
  }
  footer .footer__content .left {
    width: 100%;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.5rem 0 1rem;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #fff;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #fff;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
h1 {
  font-size: 4em;
  text-align: center;
  font-weight: 600;
  margin-top: 5rem;
  padding: 0 15%;
}

.validity {
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;
  margin-top: 0.25rem;
}

.content {
  padding: 2.5rem 15%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 3rem;
}
.content section h2 {
  font-size: 2em;
  margin-bottom: 0.5rem;
}
.content section ul {
  padding-left: 20px;
}
.content section p, .content section ul li {
  line-height: 1.75em;
}
.content section p a, .content section ul li a {
  color: #000;
}

@media only screen and (max-width: 1300px) {
  h1 {
    font-size: 2.5em;
  }
  .validity {
    font-size: 1.25em;
  }
  .content section h2 {
    font-size: 1.65em;
  }
  .content section p, .content section ul li {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 850px) {
  h1 {
    font-size: 2em;
  }
  .validity {
    font-size: 1em;
  }
  .content {
    padding: 2rem 10% 3rem;
    gap: 2rem;
  }
}
@media only screen and (max-width: 700px) {
  header {
    width: 100vw;
    height: 5rem;
    justify-content: space-between;
  }
  header img {
    height: 2.5rem;
  }
  header nav {
    gap: 0.5rem;
  }
  header nav a {
    font-size: 0.5em;
  }
  h1 {
    font-size: 1.75em;
    padding: 0 10%;
  }
  .content section h2 {
    font-size: 1.35em;
  }
  .content section p, .content section ul li {
    font-size: 0.75em;
  }
}/*# sourceMappingURL=style.css.map */