@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;
}

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 {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 140%;
  margin: 0% !important;
  color: #0098b9;
}

.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;
  max-width: 1600px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  height: 100%;
}

.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: 62rem) {
  .navbar {
    display: flex;
    justify-content: space-between;
  }

  .navbar-block {
    position: initial;
    height: initial;
    opacity: 1;
    overflow: auto;
    pointer-events: visible;
    background: none;
    transition: none;
  }
}

.menu {
  padding-block: 1rem;
  padding-inline: auto;
}

.menu-link {
  font-size: var(--text-base);
  font-weight: 500;
  line-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  color: var(--color-black-500);
  transition: color 0.3s ease;
}

@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;
  }

  .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;
}

.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;
}

.dropdown-link {
  font-size: 14px;
  font-weight: 400;
  line-height: inherit;
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.dropdown-link:hover {
  color: #97cd64;
}

.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 screen and (min-width: 62rem) {
  .dropdown-toggle {
    /* -moz-column-gap: 0.35rem; */
    /* column-gap: 0.05rem; */
    pointer-events: none;
  }

  .dropdown-content {
    position: absolute;
    left: 13%;
    right: 13%;
    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(3, minmax(0, 1fr));
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    max-width: 75rem;
    margin-inline: auto;
  }

  .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-items-brd {
    border-right: 2px solid #ccc;
  }

  .dropdown-block {
    padding-top: unset;
    padding-inline: unset;
  }

  .dropdown:hover>.dropdown-content {
    cursor: initial;
    top: 3.75rem;
    opacity: 1;
    pointer-events: initial;
    z-index: 999;
}

  .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;
}

.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: 62rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

@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;
}
}