:root {
  --primary-color: #f59628;
  --secondary-color: #26283d;
  --accent-color: #828282;
}

@font-face {
  font-family: "BR Sonoma Regular";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/BRSonoma-Regular-BF654c45266c042.woff") format("woff");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
  font-family: "Work Sans", sans-serif;
  color: var(--secondary-color);
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "BR Sonoma Regular", sans-serif;
  line-height: normal;
}
#root,
#__next {
  isolation: isolate;
}

.heading-xxl {
  font-size: clamp(60px, 10vw, 120px);
}

.heading-lg {
  font-size: clamp(30px, 4vw, 65px);
}

.heading-md {
  font-size: clamp(24px, 3vw, 40px);
}

.heading-sm {
  font-size: clamp(20px, 2vw, 30px);
}

.heading-xs {
  font-size: 20px;
}

.landing {
  position: relative;
  min-height: 100vh;
  background: url("../assets/fortis-college-hero-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.landing::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  z-index: 0;
  clip-path: polygon(13% 0, 35% 0, 68% 100%, 18% 100%);
  opacity: 0.3;
}

.landing__layout {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 3vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.landing__content {
  align-self: center;
  padding-block: 5rem;
  flex: 1;
}

.landing__content p {
  text-align: justify;
}

.landing__content div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.landing__layout img {
  height: 600px;
  min-height: 80vh;
  object-fit: contain;
}

.landing__coming-soon {
  align-self: flex-start;
  display: inline-block;
  color: var(--primary-color);
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(130, 130, 130, 0.512);
}

@media screen and (min-width: 992px) {
  .landing__layout {
    flex-direction: row;
    justify-content: space-between;
  }

  .landing__layout img {
    align-self: flex-end;
  }

  .landing__content div {
    max-width: 50vw;
  }
}

@media screen and (min-width: 1450px) {
  .landing__layout {
    padding: 0 3rem;
  }
}
