* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --colour-white: #ffffff;
  --colour-black: #000000;
  --colour-primary: #0f1629;
  --colour-secondary: #3d5b87;
  --colour-third: #d6dae2;
  --colour-primary-accent: #29220f;
  --colour-secondary-accent: #87693d;
  --colour-third-accent: #e2ded6;
}


html {
  overflow-y: scroll;
}


body {
  font-family: pt-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #fff;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}








/* Navbar */
.navbar {
  background: #0f1629;
  padding: 5px 20px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
}

.navbar .main-menu ul {
  display: flex;
}

.navbar ul li a {
  padding: 10px 20px;
  display: block;
  font-weight: 600;
  transition: 0.5s;
}

.navbar ul li a:hover {
  color: var(--colour-third);
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.navbar-slogan {
  color: var(--colour-white);
  background: var(--colour-secondary);
  padding: 2px 10px;
  font-size: 0.75rem;
}









/* Hero */
.hero {
  margin-bottom: 50px;
}

.hero .container {
  background-size: contain;
  background-position: center bottom;
  height: 600px;
}

.hero .hero-content {
  width: 70%;
}


.hero .hero-text {
  width: 70%;
  margin-bottom: 20px;
}






/* FAQ */
.faq {
  margin-bottom: 50px;
}

.faq .container {
  background-size: contain;
  background-position: center bottom;
  height: 600px;
}

.faq .faq-content {
  width: 70%;
}

.faq .faq-group {
  border-bottom: 1px solid #ccc;
}

.faq .faq-group .faq-group-header {
  padding: 20px 0;
  margin-bottom: 15px;
  position: relative;
}

.faq .faq-group .faq-group-header h4 {
  font-weight: 600;
  width: 95%;
}






/* Footer */
.footer {
  padding: 5px 0px 25px 0px;
}

.footer h4 {
  margin-bottom: 10px;
}

.footer ul li {
  line-height: 2.5;
}

.footer a {
  color: #ccc;
}

.footer li {
  color: #ccc;
}

.footer li a:hover {
  color: var(--colour-third);
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.footer i {
  font-size: 1.5rem;
  margin-right: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  justify-content: center;
  align-items: center;
}








/* Utility Classes */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-small {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}







/* Buttons */
.btn {
  display: inline-block;
  padding: 5px 15px;
  background: var(--colour-third);
  color: #333;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: 0.5s;
}

.btn:hover {
  opacity: 0.8;
}

.btn-primary {
  background: var(--colour-primary);
  color: #fff;
}

.btn-block {
  display: block;
  width: 100%;
}





/* Text Classes */
.text-xxl {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 40px 0 20px;
}

.text-xl {
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 40px 0 20px;
}

.text-lg {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 30px 0 20px;
}

.text-md {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: normal;
  margin: 10px 0 10px;
}

.text-sm {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 10px 0 5px;
}

.text-center {
  text-align: center;
}







/* Background */
.bg-primary {
  background: var(--primary-color);
  color: #fff;
}

.bg-light {
  background: var(--light-color);
  color: #333;
}

.bg-dark {
  background: var(--dark-color);
  color: #fff;
}

.bg-black {
  background: #000;
  color: #fff;
}



