input,
textarea,
select,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    text-decoration: none;
    outline: none;
    list-style: none;
    padding: 0;
}

a,
a:hover,
a:focus,
*:focus-visible {
    cursor: pointer;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    text-decoration: none;
    outline: none;
}

button:focus {
    outline: none;
    border: none;
}

button:focus,
input:focus {
    box-shadow: none !important;
}

button {
    cursor: pointer;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    transition: all 0.9s ease-out;
    transform-origin: center;
    transform: scale(1, 1);
}

.container-xxl {
    max-width: 1300px;
}
/* .icon {
    display: inline-block;
    animation: like 6s infinite linear;
    font-size: 40px;
  }
  
  @keyframes like {
    0% {
      animation-timing-function: ease-in;
      transform: rotate( 0deg ) scale( 1 );
    }
    25% {
      animation-timing-function: ease-out;
      transform: rotate( -180deg ) scale( 1.4 );
    }
    50%, 100% {
      transform: rotate( -360deg ) scale( 1 );
    }
  }; */