@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap");
:root {
  --color-gray-100: hsl(220, 12%, 98%);
  --color-gray-200: hsl(220, 12%, 90%);
  --color-gray-300: hsl(220, 8%, 46%);
  --color-gray-400: hsl(220, 5%, 39%);
  --color-gray-500: hsl(220, 7%, 17%);
  --color-dark-100: hsl(240, 10%, 15%);
  --color-dark-200: hsl(240, 10%, 12%);
  --color-dark-300: hsl(240, 10%, 9%);
  --color-dark-400: hsl(240, 10%, 6%);
  --color-dark-500: hsl(0, 0%, 100%);
  --color-blue-100: hsl(217, 80%, 65%);
  --color-blue-200: hsl(217, 80%, 60%);
  --color-blue-300: #A89C24;
  --color-blue-400: hsl(217, 80%, 50%);
  --color-blue-500: hsl(217, 80%, 45%);
  --shadow-small: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
     rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  --shadow-medium: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
     rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  --shadow-large: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
     rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  --shadow-extra: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
     rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Cairo", ui-sans-serif, sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-gray-100);
  background-color: var(--color-dark-500);
  overflow: auto;
}

main {
  overflow: hidden;
}

section {
  overflow: hidden;
  height: 100vh;
}

a,
button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  border: none;
  outline: none;
  color: inherit;
  background: unset;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: inherit;
  line-height: 1.25;
  text-wrap: balance;
  word-wrap: break-word;
}

p,
li {
  font-family: inherit;
  line-height: 1.5;
  text-wrap: pretty;
  word-wrap: break-word;
}

img,
svg,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.section {
  padding-block: 6rem 3rem;
}

.container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container1 {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

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

.truncate {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.title-small {
  font-family: inherit;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
}
.title-medium {
  font-family: inherit;
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
}
.title-large {
  font-family: inherit;
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: black;
}

.text-small {
  font-family: inherit;
  font-size: 0.85rem;
  line-height: 1.5;
}
.text-base {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-gray-300);
}
.text-medium {
  font-family: inherit;
  font-size: 1.15rem;
  line-height: 1.5;
}
.text-large {
  font-family: inherit;
  font-size: 1.3rem;
  line-height: 1.5;
}
.text-upper {
  text-transform: uppercase;
}
.text-lower {
  text-transform: lowercase;
}
.text-capital {
  text-transform: capitalize;
}

.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semi {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

.btn {
  display: inline-flex;
  font-family: "Cairo";
  font-size: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  line-height: 1.5;
  align-items: end;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  vertical-align: middle;
  -moz-column-gap: 0.35rem;
       column-gap: 0.35rem;
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  border-radius: 3rem;
  transition: all 0.25s ease;
}
.btn-primary {
  color: var(--color-gray-100);
  background-color: var(--color-blue-300);
  box-shadow: var(--shadow-medium);
}
.btn-neutral {
  color: var(--color-dark-300);
  background-color: var(--color-gray-100);
  box-shadow: var(--shadow-medium);
}
.btn-darken {
  color: var(--color-gray-100);
  background-color: var(--color-dark-100);
  box-shadow: var(--shadow-medium);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
}
.header.on-scroll {
  background-color: #A89C24;
  box-shadow: var(--shadow-medium);
}
.header .menu-item {
  color: #fff !important;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: baseline;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  width: 100%;
  height: 4rem;
  gap: 10px;
  margin-inline: auto;
}

.brand {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-block: 4rem;
  background-color: var(--color-dark-400);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}
.menu.is-active {
  top: 0;
  left: 0;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
}
.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-gray-400);
}
.menu-block {
  margin-left: auto;
}
@media screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: initial;
    width: auto;
    padding: 0;
    margin-left: 0px;
    background: unset;
    box-shadow: unset;
    transition: unset;
  }
  .menu .menu {
    margin-right: 0px;
    margin-left: 0px !important;
  }
  .menu .brand {
    color: var(--color-dark-100) !important;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    margin-inline: auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-left: 2rem;
  }
}

.burger {
  cursor: pointer;
  position: relative;
  display: block;
  order: -1;
  z-index: 10;
  width: 1.5rem;
  height: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  visibility: visible;
}
@media screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 2px;
  background-color: var(--color-gray-100);
  transition: all 0.25s ease;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  left: -1rem;
  opacity: 0;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.overlay {
  position: fixed;
  display: none;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: black;
  transition: all 0.3s ease;
}
.overlay.is-active {
  display: block;
}

.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr max-content;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
}
.banner-image {
  display: block;
  max-width: 20rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  justify-self: center;
}
@media screen and (min-width: 48rem) {
  .banner-image {
    max-width: 16rem;
    order: 1;
  }
}
@media screen and (min-width: 64rem) {
  .banner-image {
    max-width: 24rem;
    margin-right: 5rem;
  }
}
.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: right;
  row-gap: 1.5rem;
  width: 100%;
}
.banner-link {
  position: absolute;
  display: grid;
  top: 30%;
  right: 1.5rem;
  justify-items: center;
  row-gap: 0.5rem;
  visibility: hidden;
}
@media screen and (min-width: 64rem) {
  .banner-link {
    visibility: visible;
  }
}
.banner-link > * {
  font-size: 1.25rem;
  line-height: inherit;
  color: var(--color-gray-100);
}
.banner-link::before, .banner-link::after {
  content: "";
  position: absolute;
  width: 4rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: var(--color-gray-100);
}
.banner-link::before {
  top: -3rem;
}
.banner-link::after {
  bottom: -3rem;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}/*# sourceMappingURL=style.css.map */