@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-white-100: hsl(0, 0%, 100%);
  --color-white-200: hsl(0, 0%, 95%);
  --color-white-300: hsl(0, 0%, 85%);
  --color-white-400: hsl(0, 0%, 75%);
  --color-white-500: hsl(0, 0%, 65%);
  --color-white-600: hsl(0, 0%, 55%);
  --color-black-100: hsl(210, 17%, 12%);
  --color-black-200: hsl(210, 17%, 10%);
  --color-black-300: hsl(210, 16%, 8%);
  --color-black-400: hsl(210, 16%, 6%);
  --color-black-500: hsl(210, 15%, 4%);
  --color-black-600: hsl(210, 15%, 2%);
  --color-blue-100: hsl(212, 96%, 60%);
  --color-blue-200: hsl(213, 94%, 55%);
  --color-blue-300: hsl(217, 91%, 50%);
  --color-blue-400: hsl(221, 83%, 45%);
  --color-blue-500: hsl(224, 76%, 40%);
  --color-blue-600: hsl(226, 71%, 35%);
  --text-tiny: clamp(0.84rem, calc(0.12vw + 0.8rem), 0.89rem);
  --text-small: clamp(0.93rem, calc(0.13vw + 0.91rem), 1rem);
  --text-base: clamp(1.05rem, calc(0.15vw + 1.01rem), 1.12rem);
  --text-medium: clamp(1.18rem, calc(0.17vw + 1.14rem), 1.26rem);
  --text-large: clamp(1.32rem, calc(0.19vw + 1.28rem), 1.41rem);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  /* list-style: none; */
  /* list-style-type: none; */
  text-decoration: none;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}


.menu-link {
  color: #000;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
}


.menu-item .active {
  color: rgb(242, 132, 33) !important;
}


.menu-link:hover {
  color: rgb(242, 132, 33) !important;
}

html {
  font-size: 100%;
  font-style: normal;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: 'Popines, sans-serif';
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black-500);
  background-color: var(--color-white-100);
}

main,
section {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  border: none;
  outline: none;
  color: inherit;
  background: none;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.15;
  text-wrap: wrap;
  word-wrap: break-word;
}


p,
li {
  text-wrap: pretty;
  line-height: inherit;
  word-wrap: break-word;
}

img,
svg,
picture,
video {
  font-style: italic;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  shape-margin: 1rem;
  vertical-align: middle;
}

img,
svg {
  background-size: cover;
  background-repeat: no-repeat;
  image-rendering: crisp-edges;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}

.section {
  margin-inline: auto;
  margin-block: 5rem 2rem;
}

.container {
  /* max-width: 75rem; */
  height: auto;
  margin-inline: auto;
  /* padding-inline: 1.5rem; */
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-tiny {
  font-size: var(--text-tiny);
}

.text-small {
  font-size: var(--text-small);
}

.text-base {
  font-size: var(--text-base);
}

.text-medium {
  font-size: var(--text-medium);
}

.text-large {
  font-size: var(--text-large);
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  color: #FF6700;
  font-family: "DM Sans", sans-serif;
  line-height: 140%;
  font-size: 18px;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.font-medium a {
  color: #FF6700;
  font-family: "DM Sans", sans-serif;
  line-height: 140%;
  font-size: 18px;
  margin: 0;
  padding: 0;
  font-weight: 500;
  white-space: normal;
}

.font-semi {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.btn {
  display: inline-flex;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  align-items: center;
  justify-content: center;
  vertical-align: baseline;
  -moz-column-gap: 0.25rem;
  column-gap: 0.25rem;
  white-space: nowrap;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  border-radius: 0.25rem;
  transition: all 0.25s ease;
}

.btn-default {
  color: var(--color-black-500);
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
}

.btn-darken {
  color: var(--color-white-100);
  background-color: var(--color-black-500);
  box-shadow: var(--shadow-medium);
}

.header {
  position: static;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  /* max-width: 1600px;
  margin: 0 auto!important; */
  height: auto;
  background-color: var(--color-white-100);
  /* box-shadow: var(--shadow-medium); */
}

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-blue-300);
}

.navbar {
  width: 100%;
  margin-inline: auto;
  margin: 1% 0;
}

.navbar-block {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100vh - 4rem);
  opacity: 0;
  overflow: auto;
  pointer-events: none;
  background-color: var(--color-white-100);
  transition: opacity 0.4s ease;
  z-index: 9999;
}

.navbar-block.is-active {
  opacity: 1;
  pointer-events: initial;
}

@media screen and (min-width: 1025px) {
  .navbar {
    display: flex;
    justify-content: space-between;
  }

  .navbar-block {
    position: initial;
    height: 51px;
    opacity: 1;
    overflow: auto;
    pointer-events: visible;
    background: none;
    transition: none;
  }
}

.menu {
  padding-block: 1rem;
  padding-inline: auto;
}

.menu-link {
  font-size: 16px;
  color: rgb(0, 0, 0);
  font-weight: 400;
  text-transform: capitalize;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  padding: 5px 0px !important;
  margin: 9px 18px !important;
}

@media screen and (min-width: 62rem) {
  .menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    -moz-column-gap: 1rem;
    column-gap: 6px;
    height: 100%;
    padding: unset;
  }

  .menu-item {
    cursor: pointer;
    padding-inline: 0.5rem;
    margin: auto 0% !important;
    list-style: none;
  }

  .menu-link {
    padding: unset;
  }
}

.dropdown-toggle {
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 20px 0;
}

.dropdown-toggle i.bx {
  font-size: 1.3rem;
  line-height: inherit;
  transition: rotate 0.4s ease;
}

.dropdown-content {
  height: 0;
  overflow: hidden;
  background-color: var(--color-white-100);
  transition: height 0.5s ease;
}

.dropdown-column,
.dropdown-group,
.dropdown-items {
  display: grid;
}

.dropdown-group {
  padding-bottom: 1rem;
  padding-inline: 1.5rem;
}

.dropdown-title {
  display: flex;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  align-items: center;
  padding-inline: 1rem;
}

.dropdown-icon i.bx {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--color-blue-300);
}

.dropdown-items {
  row-gap: 0.8rem;
  padding-inline: 1rem;
  padding-top: 0.35rem;
  list-style: none;
}

.dropdown-link {
  font-size: 14px;
  font-weight: 400;
  line-height: inherit;
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  white-space: normal;
}

.dropdown-link:hover {
  color: rgb(242, 132, 33);
}

.dropdown-black {
  color: #000;
}

.dropdown-show>.dropdown-toggle i.bx {
  rotate: 180deg;
}

.dropdown-block {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  padding-top: 1rem;
  padding-inline: 1rem;
}


@media only screen and (min-width: 1025px) {
  .dropdown-toggle {
    /* -moz-column-gap: 0.35rem; */
    /* column-gap: 0.05rem; */
    pointer-events: none;
  }

  .dropdown-content {
    position: absolute;
    left: 0;
    right: 5%;
    top: 3.3rem;
    opacity: 0;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    pointer-events: none;
    background-color: var(--color-white-100);
    border-top: 2px solid var(--color-white-200);
    box-shadow: var(--shadow-large);
    transition: top 0.4s, opacity 0.3s ease;
  }

  .dropdown-column {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    -moz-column-gap: 2rem;
    column-gap: 1rem;
    max-width: 105rem;
    margin-inline: auto;
    width: 100%;
    white-space: normal;
  }

  .dropdown-group {
    align-content: baseline;
    row-gap: 0.55rem;
    padding-block: 2rem;
  }

  .dropdown-group:first-child,
  .dropdown-group:last-child {
    margin: unset;
  }

  .dropdown-items {
    padding-top: unset;
  }


  .dropdown-block {
    padding-top: unset;
    padding-inline: unset;
  }

  .dropdown:hover>.dropdown-content {
    list-style: none;
    cursor: initial;
    top: 2.25rem;
    opacity: 1;
    pointer-events: initial;
    z-index: 999;
    width: 100%;
  }

  .dropdown:hover>.dropdown-toggle i.bx {
    rotate: 180deg;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 1.5rem;
  height: 1rem;
  border: none;
  outline: none;
  visibility: visible;
  float: inline-end;
}

.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.15px;
  opacity: 1;
  rotate: 0deg;
  border-radius: 0.15rem;
  background-color: var(--color-black-500);
  transition: all 0.3s 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;
  rotate: 135deg;
}

.burger.is-active>.burger-line:nth-child(2) {
  opacity: 0;
}

.burger.is-active>.burger-line:nth-child(3) {
  top: 0.5rem;
  rotate: -135deg;
}

@media screen and (min-width: 1025px) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

@media (max-width: 1024px) {

  .dropdown-content {
    max-height: 0;
    overflow: hidden;
    width: 95%;
    transition: max-height .4s ease;
  }

  .dropdown-show .dropdown-content {
    max-height: 1465px;
    /* big enough value */
  }

}

@media only screen and (max-width : 1500px) {
  .dropdown-content {
    width: 84%;
  }
}

@media only screen and (max-width:1300px) {
  .menu {
    column-gap: 0.2rem;
  }
}

@media only screen and (max-width:1200px) {
  .menu-link {
    font-size: 13.5px !important;
  }
}

@media only screen and (max-width:1125px) {
  .menu {
    justify-content: space-between;
  }
}


/* ===============================
   MOBILE + TABLET RESPONSIVE FIX
   =============================== */

@media (max-width: 1024px) {

  /* HEADER */
  .navbar-inner {
    padding: 10px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* MOBILE MENU PANEL */
  .navbar-block {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: 830px;
    background: #fff;
    transition: 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 9999;
  }

  .navbar-block.is-active {
    left: 0;
    opacity: 1;
    pointer-events: auto;
  }

  /* MENU STACK */
  .menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
    gap: 10px;
  }

  .menu-item {
    width: 100%;
    border-bottom: 1px solid #eee;
    list-style: none;
  }

  .menu-link {
    display: block;
    width: 100%;
    padding: 14px 0 !important;
    margin: 0 !important;
    font-size: 16px !important;
    text-align: left;
  }

  /* DROPDOWN FIX */
  .dropdown-content {
    position: static;
    height: 0;
    opacity: 1;
    box-shadow: none;
    border: none;
    transition: height .35s ease;
  }

  .dropdown-show .dropdown-content {
    height: auto;
    padding-bottom: 10px;
  }

  .dropdown-column {
    grid-template-columns: 1fr;
  }

  .dropdown-group {
    padding: 10px 0;
  }

  .dropdown-link {
    color: #000;
    padding: 8px 0;
    display: block;
    font-size: 14px;
  }

  /* ENABLE CLICK */
  .dropdown-toggle {
    pointer-events: auto;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

}

.last-menu {
  font-size: 16px;
  text-decoration: none;
  color: #fff !important;
  font-weight: 500;
  text-transform: capitalize;
  font-family: "DM Sans", sans-serif;
  background: #FF6700;
  display: flex;
  align-items: center;
  padding: 0px 13px;
}

.last-menu a {
  color: #fff !important;
}

.last-menu:hover a {
  color: #000 !important;
}

/* ===============================
   LARGE TABLETS (1024–1200px)
   =============================== */

@media (min-width:1025px) and (max-width:1200px) {

  .menu-link {
    font-size: 14px !important;
    margin: 10px 12px !important;
  }

  .dropdown-column {
    grid-template-columns: repeat(2, 1fr);
  }


}

@media only screen and (max-width:1000px) {
  .last-menu {
    font-size: 16px;
    padding: 0;
    background-color: transparent;
  }

  .last-menu a {
    color: #000 !important;
  }

  .last-menu:hover a {
    color: #000 !important;
  }
}


/* ===============================
   SMALL PHONES
   =============================== */

@media (max-width:480px) {

  .navbar-block {
    width: 90%;
  }

  .menu-link {
    font-size: 15px !important;
  }

}



/* AFTER scroll */
.header-scrolled .navbar-block {
  top: 70px;
}