/**
 * Interpolates values between breakpoints for a given CSS property.
 *
 * @param $property
 * @param $breakpoints: $screensize1, $value1, $screensize2, $value2, [...]
 * usage:
 * @include interpolate(--padding-left, 400px, 20px, 800px, 100px, 1200px, 131px);
 * Returns a calc function and media queries for the specified breakpoints.
 */
:root {
  --clr-saeed-blue: #003669;
  --clr-light-grey: #e5e8eb;
  --clr-mid-grey: #809bb4;
  --clr-dark-grey: #677481;
  --bricks-color-primary: var(--clr-saeed-blue);
  --font-accent: "Titillium Web";
  --font-heading: "Open Sans", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --padding-page: 20px;
  --padding-profile: 80px;
  --padding-card: 30px;
  --font-size-h1: 26px;
  --font-size-h2: 20px;
  --font-size-h3: 18px;
  --font-size-nav: 16px;
  --logo-width: 230px;
  --mobile-block-width: 600px;
}
@media (min-width: 768px) {
  :root {
    --padding-page: calc(8.9285714286vw - 48.5714285714px);
  }
}
@media (min-width: 1440px) {
  :root {
    --padding-page: 80px;
  }
}
@media (min-width: 900px) {
  :root {
    --padding-profile: calc(9.2592592593vw - 3.3333333333px);
  }
}
@media (min-width: 1440px) {
  :root {
    --padding-profile: 130px;
  }
}
@media (min-width: 375px) {
  :root {
    --padding-card: calc(5.7142857143vw + 8.5714285714px);
  }
}
@media (min-width: 900px) {
  :root {
    --padding-card: calc(3.7037037037vw + 26.6666666667px);
  }
}
@media (min-width: 1440px) {
  :root {
    --padding-card: 80px;
  }
}
@media (min-width: 375px) {
  :root {
    --font-size-h1: calc(1.1299435028vw + 21.7627118644px);
  }
}
@media (min-width: 1260px) {
  :root {
    --font-size-h1: 36px;
  }
}
@media (min-width: 375px) {
  :root {
    --font-size-h2: calc(0.9039548023vw + 16.6101694915px);
  }
}
@media (min-width: 1260px) {
  :root {
    --font-size-h2: 28px;
  }
}
@media (min-width: 375px) {
  :root {
    --font-size-h3: calc(1.0169491525vw + 14.186440678px);
  }
}
@media (min-width: 1260px) {
  :root {
    --font-size-h3: 27px;
  }
}
@media (min-width: 1080px) {
  :root {
    --font-size-nav: calc(1.1111111111vw + 4px);
  }
}
@media (min-width: 1260px) {
  :root {
    --font-size-nav: 18px;
  }
}
@media (min-width: 375px) {
  :root {
    --logo-width: calc(35.2941176471vw + 97.6470588235px);
  }
}
@media (min-width: 460px) {
  :root {
    --logo-width: 260px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--clr-dark-grey);
  background-color: var(--clr-light-grey);
}

.brxe-container {
  width: 100%;
  max-width: 1340px;
  padding-inline: var(--padding-page);
}

section {
  padding-top: 80px;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--clr-saeed-blue);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

body.bricks-is-frontend :focus {
  outline: none;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.shadow, #saeed-canada-contact-form .input,
#saeed-canada-contact-form input:not([type=submit]),
#saeed-canada-contact-form select,
#saeed-canada-contact-form textarea, .card {
  box-shadow: 0px 20px 25px 0px rgba(31, 41, 55, 0.1), 0px 10px 10px 0px rgba(31, 41, 55, 0.04);
}

.banner {
  background: var(--clr-saeed-blue);
  background-image: url("/wp-content/uploads/BANNER.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -82px;
  width: 100%;
  height: 600px;
}

.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.banner-inner h1 {
  font-family: var(--font-accent);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .card-grid {
    grid-template-columns: 1fr;
    max-width: var(--mobile-block-width);
    margin-inline: auto;
  }
}

.card {
  background: white;
  padding: var(--padding-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-wrap-style: pretty;
}
.card h2 {
  text-align: center;
}

.profile .card {
  margin-bottom: 30px;
}
.profile .card h1 {
  text-align: left;
  margin-bottom: 0.3em;
}
.profile .desktop-image {
  display: block;
}
.profile .mobile-image {
  display: none;
}
@media screen and (max-width: 1024px) {
  .profile {
    max-width: var(--mobile-block-width);
    margin-inline: auto;
  }
  .profile .desktop-image {
    display: none;
  }
  .profile .mobile-image {
    display: block;
    margin-bottom: 30px;
    max-width: 75%;
  }
  .profile .profile-header {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.two-col {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--padding-profile);
}
@media screen and (max-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--padding-card);
  }
  .two-col .right {
    padding-top: var(--padding-card);
    border-top: 1px solid var(--clr-light-grey);
  }
}
.two-col h3 {
  color: #979ea6;
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2em;
}
.two-col .right {
  display: flex;
  flex-direction: column;
}
.two-col .right img {
  margin-inline: auto;
  margin-bottom: 32px;
}

#brx-header {
  position: fixed;
  z-index: 1000;
}
#brx-header .header {
  background-color: var(--clr-saeed-blue);
  transition: background-color 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}
#brx-header .header.transparent {
  background-color: transparent;
}
#brx-header .header.scrolled {
  background-color: var(--clr-saeed-blue);
}

#logo {
  width: var(--logo-width);
  height: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding-block: 12px;
}

#nav {
  color: white;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: var(--font-size-nav);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 10000;
}
#nav .brx-nav-nested-items {
  gap: 40px;
}

h3.divider {
  font-family: var(--font-accent);
  color: var(--clr-saeed-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  text-align: center;
  margin: 40px 0;
  width: 100%;
  padding-inline: var(--padding-page);
  margin: 0;
  padding-bottom: 30px;
}
h3.divider::before, h3.divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #2c5282;
}
h3.divider::before {
  margin-right: 20px;
}
h3.divider::after {
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  h3.divider {
    max-width: var(--mobile-block-width);
    margin-inline: auto;
  }
}

.form-wrap {
  margin-inline: auto;
  width: 100%;
  max-width: 900px;
  padding-bottom: var(--padding-card);
}
@media screen and (max-width: 1024px) {
  .form-wrap {
    max-width: var(--mobile-block-width);
  }
}

#saeed-canada-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#saeed-canada-contact-form .input,
#saeed-canada-contact-form input:not([type=submit]),
#saeed-canada-contact-form select,
#saeed-canada-contact-form textarea {
  color: var(--clr-dark-grey);
  padding: 20px;
  line-height: 1;
}
#saeed-canada-contact-form input::-moz-placeholder, #saeed-canada-contact-form textarea::-moz-placeholder {
  text-transform: uppercase;
  color: var(--clr-mid-grey);
  font-size: 14px;
  letter-spacing: 0.03em;
}
#saeed-canada-contact-form input::placeholder,
#saeed-canada-contact-form textarea::placeholder {
  text-transform: uppercase;
  color: var(--clr-mid-grey);
  font-size: 14px;
  letter-spacing: 0.03em;
}
#saeed-canada-contact-form .form-group {
  padding-bottom: 10px;
}
#saeed-canada-contact-form .form-group:nth-child(5),
#saeed-canada-contact-form .form-group:nth-child(6),
#saeed-canada-contact-form .form-group:nth-child(7) {
  grid-column: span 2;
}
#saeed-canada-contact-form .bricks-button {
  background-color: var(--clr-saeed-blue);
  color: white;
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-inline: auto;
  margin-top: 24px;
  padding: 15px 40px;
  border-radius: 0;
  transition: background-color 0.3s ease;
}
#saeed-canada-contact-form .bricks-button:hover {
  background-color: black;
}
@media screen and (max-width: 1024px) {
  #saeed-canada-contact-form {
    display: flex;
    flex-direction: column;
  }
}

.address-block {
  padding-inline: var(--padding-page);
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  transition: color 0.3s ease;
}
.address-block a {
  text-decoration: underline;
}
.address-block a:hover {
  color: var(--clr-saeed-blue);
}

footer {
  background-color: var(--clr-saeed-blue);
  color: white;
  padding-bottom: 60px;
  text-wrap-style: balanced;
}
footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  font-size: 14px;
  font-weight: bold;
  max-width: var(--mobile-block-width);
  margin-inline: auto;
}
footer .footer-inner a {
  text-decoration: underline;
}
footer .footer-inner .legal {
  font-size: 12px;
  font-weight: normal;
  color: var(--clr-mid-grey);
}

.brxe-toggle {
  --brxe-toggle-scale: 0.5;
  --brxe-toggle-bar-radius: 0;
  z-index: 99999;
}

#saeed-nav.brx-open .brx-nav-nested-items {
  background-color: var(--clr-saeed-blue);
  align-items: center;
}

.heading-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 100px;
}

.top-line {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.alternating-text {
  position: absolute;
  width: 100%;
  opacity: 0;
  line-height: 1.2;
  transition: opacity 0.5s ease-out;
}

.alternating-text.active {
  opacity: 1;
}

.alternating-text.typing .letter {
  opacity: 0;
  animation: typeIn 0.05s forwards;
}

.bottom-line {
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.5s ease-out 1s forwards;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes typeIn {
  to {
    opacity: 1;
  }
}
/* Initial hidden state for header elements */
#logo,
li.menu-item {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInSlideDown 0.6s ease-out forwards;
}

/* Staggered animation delays */
#logo {
  animation-delay: 0.2s;
}

li.menu-item:nth-child(1) {
  animation-delay: 0.3s;
}

li.menu-item:nth-child(2) {
  animation-delay: 0.4s;
}

li.menu-item:nth-child(3) {
  animation-delay: 0.5s;
}

li.menu-item:nth-child(4) {
  animation-delay: 0.6s;
}

/* Keyframe animation */
@keyframes fadeInSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#saeed-nav li a {
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--clr-light-grey);
}
#saeed-nav li a:hover {
  color: white;
}
#saeed-nav li a::before, #saeed-nav li a::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--clr-mid-grey);
  top: 100%;
  left: 0;
  pointer-events: none;
}
#saeed-nav li a::before {
  content: "";
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}
#saeed-nav li a:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 2, 1);
}

:root {
  --transition: opacity 0.5s ease, transform 2s cubic-bezier(0.01, 0.42, 0.1, 0.98);
}

.bricks-is-frontend {
  /* ANIMATION STYLES */
}
@media (prefers-reduced-motion: no-preference) {
  .bricks-is-frontend .fade-in {
    opacity: 0;
    transition: opacity 1s ease;
  }
  .bricks-is-frontend .scale-down {
    opacity: 0;
    transform: scale(1.2);
    transition: var(--transition);
  }
  .bricks-is-frontend .scale-up {
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
  }
  .bricks-is-frontend .slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
  }
  .bricks-is-frontend .slide-down {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
  }
  .bricks-is-frontend .slide-left {
    opacity: 0;
    transform: translate3d(20%, 0, 0);
    transition: var(--transition);
  }
  .bricks-is-frontend .slide-right {
    opacity: 0;
    transform: translate3d(-20%, 0, 0);
    transition: var(--transition);
  }
}
.bricks-is-frontend .animated {
  opacity: 1;
  transform: translateZ(0);
}/*# sourceMappingURL=saeed-canada.css.map */