/* 
Text/Margin Scale:
11 px  12px  14 px  16 px  18 px
20 px  23 px  26 px  29px 32px
36px  41px  46px  52px  58px
66px 74px  83px  94px  105px
119px  133px  150px  169px  190px
214px 240px 270px
*/

/* Default settings */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Serif:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #0c4360;
  --secondary-color: #029347;
  --dark-primary: #04141d;
  --dark-secondary: #001f0f;
  --light-primary: #e7ecef;
  --light-secondary: #e6f0eb;
  --white: #f5f5f5;
  --text-color: #1f1f1f;
  --link-color: #0f54bd;
}

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

*:focus {
  outline: 2px solid var(--primary-color);
}

html {
  font-size: 62.5%;
}

body {
  background-color: var(--white);
  color: var(--text-color);
  overflow-x: hidden;
  /* font-family: "Inter", sans-serif; */
}

section {
  width: 100vw;
  padding: 10.5rem 0;
}

.dd-link,
.testimonial-text,
.service-description,
.service-page,
.footer-text,
.numbers span,
.testimonial-author,
.answer,
.nav-link,
.about-link,
.responsive-link,
.responsive-about,
.ab-menu-link {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
.section-heading,
.service-title,
.cta:link,
.cta:active,
.cta:hover,
.cta:visited,
.questions span,
.email:link,
.phone {
  font-family: "Noto Serif", serif;
}

/* Contact Info Banner */

.contact-snapshot {
  width: 100vw;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3.6rem;
  gap: 27rem;
}

.premier-info {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.phone,
.email:link,
.email:visited {
  color: var(--white);
  font-size: 1.6rem;
  transition: opacity 150ms ease-in-out;
}

.email:hover,
.email:active {
  opacity: 70%;
}

.phone-icon,
.email-icon {
  font-size: 1.6rem;
  color: var(--white);
}

.ig-icon,
.fb-icon {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: -4px;
  transition: opacity 150ms ease-in-out;
}

.ig-icon:hover,
.fb-icon:hover {
  opacity: 70%;
}

.phone,
.email {
  margin-left: -2.4rem;
}

/* Hero Section */

header {
  z-index: 3000;
}

.hero-section {
  height: 83rem;
  position: relative;
  background: url(/images/hero-img.webp), rgba(0, 0, 0, 0.46);
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10.5rem;
  padding: 7.4rem 0 6.6rem 0;
  backdrop-filter: blur(3px);
}

.logo {
  width: 20%;
  height: 20%;
}

nav {
  position: absolute;
  background-color: rgba(245, 245, 245, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  padding: 1.2rem 4.6rem;
  z-index: 1000;
}

nav ul {
  display: flex;
  gap: 3.6rem;
  list-style: none;
}

.nav-link a:link,
.nav-link a:visited,
.about-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 200ms ease-in-out;
}

.nav-link a:hover,
.nav-link a:active,
.about-link:hover,
.about-link:active {
  font-weight: 700;
}

.about-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all 200ms ease-in-out;
}

.active {
  font-weight: 700;
}

.active:hover {
  color: var(--primary-color) !important;
}

ul .hidden-links {
  display: none;
}

#dropdown-menu {
  background-color: var(--white);
  position: absolute;
  top: 13.6rem;
  left: 98rem;
  z-index: 5000;
  padding: 2.6rem 1.6rem;
  width: 23rem;
  border-top: 3px solid var(--primary-color);
  display: none;
  transition: display 300ms ease-in-out;
}

#dropdown-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
  text-align: center;
}

.dd-link a:link,
.dd-link a:visited {
  color: var(--text-color);
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 250ms ease-in-out;
}

.dd-link a:hover,
.dd-link a:active {
  color: var(--primary-color);
  text-decoration: underline;
}

.down-arrow-icon,
.up-arrow-icon {
  font-size: 1.6rem;
  color: var(--primary-color);
  transition: display 200ms ease-in-out;
}

.up-arrow-icon {
  display: none;
}

.not-visible {
  display: none !important;
}

.visible {
  display: block !important;
}

#menu-icon {
  display: none;
}

.close-btn {
  align-self: flex-start;
  color: var(--white);
  width: 3.2rem;
  height: 3.2rem;
  margin-top: -2.3rem;
  transform: translateX(-1.6rem);
  cursor: pointer;
}

#responsive-menu-container {
  display: none;
}

#responsive-menu {
  background-color: var(--primary-color);
  position: absolute;
  top: 12rem;
  left: 101.5rem;
  z-index: 4000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 58rem;
  height: 75rem;
  padding: 4.1rem 2.3rem 4.1rem 11.9rem;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
}

.r-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2.3rem;
  list-style-type: none;
}

.r-active {
  font-weight: 700 !important;
  text-decoration: none !important;
  cursor: pointer;
}

.responsive-link a:link,
.responsive-link a:visited,
.responsive-link {
  color: var(--white);
  font-size: 2rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 300ms ease-in-out;
  text-align: left;
}

.responsive-link a:hover,
.responsive-link a:active,
.responsive-link:hover,
.responsive-link:active {
  text-decoration: underline;
}

#up-arr {
  display: none;
}

.heading {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--white);
}

h1 {
  font-size: 8.3rem;
  font-weight: 700;
}

.cta:link,
.cta:visited {
  border: 2px solid transparent;
  box-shadow: none;
  padding: 1.1rem 2.6rem;
  background-color: var(--primary-color);
  text-decoration: none;
  color: var(--white);
  font-weight: 400;
  font-size: 2.3rem;
  transition: all 250ms ease-in-out;
}

.cta:hover,
.cta:active {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.25);
}

.heading,
.cta:link,
.cta:visited {
  z-index: 3;
  margin-left: 10.5rem;
}

/* Services section */

.services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0 !important;
}

.section-heading {
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #86a1b0;
  font-weight: 700;
}

h2:not(.who-we-are-section h2) {
  font-size: 2.9rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 2rem;
  text-align: center;
}

.services {
  display: flex;
  gap: 7.4rem;
  padding: 15rem 10.5rem;
}

.service-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.6rem;
  text-align: center;
}

.service-title {
  font-size: 2rem;
  font-weight: 500;
}

.service-description {
  color: #6a6a6a;
}

.service-description,
.service-page:link,
.service-page:visited {
  font-size: 1.2rem;
}

.service-page:link,
.service-page:visited {
  color: var(--link-color);
  transition: all 250ms ease-in-out;
  margin-top: 2rem;
}

.service-page:hover,
.service-page:active {
  color: var(--primary-color);
}

.key-icon,
.person-icon,
.layers-icon,
.money-icon {
  height: 6.6rem;
  width: 6.6rem;
  color: var(--primary-color);
}

/* Who We Are section */

.who-we-are-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--white);
  gap: 7.4rem;
  padding: 3.2rem 3.2rem 3.2rem 2rem;
}

.who-we-are-section h2 {
  font-size: 3.6rem;
}

.who-we-are-text {
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.7;
}

.who-we-are-img {
  width: 60rem;
  height: 40rem;
  object-fit: cover;
  object-position: center top;
}

.text-container {
  width: 60rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 3.6rem;
}

/* Testimonials section */

.testimonials-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 8.3rem !important;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  margin: 10.5rem 0;
  gap: 6.6rem;
  width: 110rem;
}

.row {
  display: flex;
  gap: 5.2rem;
}

.testimonial {
  padding: 3.6rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: var(--white);
  width: 85rem;
}

.initials {
  border-radius: 50%;
  background-color: #5686ae;
  width: 5.8rem;
  height: 5.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 600;
}

.five-stars {
  display: flex;
  gap: 8px;
  margin-bottom: -1.2rem;
}

.star {
  width: 2rem;
  height: 2rem;
  color: #a76900;
}

.testimonial-text {
  font-size: 1.6rem;
  line-height: 1.5;
}

.testimonial-author {
  font-size: 1.4rem;
  color: #6a6a6a;
}

.testimonials-page:link,
.testimonials-page:visited {
  font-size: 1.8rem;
  color: var(--link-color);
  transition: color 250ms ease-in-out;
}

.testimonials-page:hover,
.testimonials-page:active {
  color: var(--primary-color);
}

/* FAQ section */

.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8.3rem 4.6rem 8.3rem 6.6rem;
}

.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7.4rem;
  width: 90rem;
}

h3 {
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
}

.questions {
  display: flex;
  flex-direction: column;
  width: 90rem;
}

.questions span {
  font-size: 2rem;
  padding-right: 2rem;
}

.questions-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: 2rem 2rem 2.3rem;
  background-color: var(--light-primary);
  transition: all 200ms ease-in-out;
  cursor: pointer;
}

.questions-box:hover,
.questions-box:active {
  background-color: #b6c7cf;
}

.closing-box {
  border-bottom: none;
}

.questions-icon {
  width: 1.8rem;
  height: 1.8rem;
  cursor: pointer;
}

.answer {
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.6;
  display: none;
  background-color: var(--white);
  padding: 1.6rem 1.6rem 2rem;
}

.open {
  display: block;
}

/* Footer */

footer {
  margin: 10.5rem 15rem 3.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 3.6rem;
}

.footer-img {
  display: flex;
  justify-content: center;
}

.footer-img img {
  width: 15%;
  height: 15%;
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-align: center;
  font-size: 1.6rem;
}

.sticky {
  position: fixed;
}

.solid {
  background-color: rgb(245, 245, 245);
}
