* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "ORLANDE";
  src: url("../font/ORLANDE.TTF") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

@media (min-width: 576px) {
  .container {
    padding: 0px 24px !important;
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 786px) {
  .container {
    padding: 0px 32px !important;
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .container {
    padding: 0px 40px !important;
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0px 40px !important;
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0px 120px !important;
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1920px) {
  .container {
    padding: 0px 200px !important;
    width: 100%;
    max-width: 100%;
  }
}

a {
  text-decoration: none !important;
}

p {
  font-size: 18px;
}

.cursor-pointer {
  cursor: pointer;
}

@media only screen and (min-width: 280px) and (max-width: 575px) {
  p {
    font-size: 14px;
  }
}

/* --------cursor--------- */
html,
body,
* {
  cursor: none;
}

@media only screen and (min-width: 992px) {
  .cursor {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
  }

  .cursor2 {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #d90d36;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    z-index: 99999999999999999;
  }
}
