/*
Table Of Contents
=========================
- Default Typography
- Custom Typography
=========================
*/

/*
--------------------------
- Default Typography
--------------------------
*/


/*
--------------------------
- Custom Typography
--------------------------
*/

@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&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');

/* 
.poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.exo {
  font-family: "Exo", sans-serif;
}
*/


body {
  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 400;
  color: var(--heading);
}
/* variable color code */
:root {
  --white: #ffffff;
  --black: #000000;

  --blue: #2b97e8;
  --orange: rgba(241, 90, 35, 1);
  --peel: rgba(246, 147, 52, 1);
  --yellow: rgba(254, 201, 5, 1);

  --dark: #272931;
  --darkBright: #1c1c1c;
  --bg-color: #050505;


  --heading: #f5f5f5;
  --para: #bdc3c7;
  
  
  /* font variable */
  --font-exo: "Exo", sans-serif;
  --font-poppins: "Poppins", sans-serif;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-exo);
}
p {
  font-family: var(--font-poppins);
  margin: 0px;
  padding: 0px;
}
span {
  font-family: var(--font-poppins);
}
ul {
    margin: 0;
    list-style-type: none;
}
a,
a:visited {
    text-decoration: none;
    font-family: var(--font-poppins);
    font-weight: normal;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    outline: 0;
}
a {
    color: var(--black);
    font-family: var(--font-poppins);
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
}
a:hover,
a:active {
    text-decoration: none;
    outline: 0;
}
a:focus {
    text-decoration: none;
    outline: 0;
}
button {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.container::after,
.container::before,
.row::after,
.row::before,
.navbar::after,
.navbar::before,
.nav::after,
.nav::before {
  display: none;
}

a, 
button, 
[role="button"], 
input[type="submit"], 
input[type="button"], 
label {
    cursor: url("{{ asset('assets/images/company-info/macaw-fav2.png') }}") 12 12, pointer !important;
}

.mac_button {
    display: inline-block;
    --white: #fff;
    --bg: #080808;
    --radius: 10px;
    outline: none;
    cursor: pointer;
    border: 0;
    position: relative;
    border-radius: var(--radius);
    background-color: var(--bg);
    transition: all 0.2s ease;
    box-shadow: inset 0 0.3rem 0.9rem rgba(255, 255, 255, 0.3),    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.7),    inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.5),    0 3rem 3rem rgba(0, 0, 0, 0.3),    0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
    -webkit-border-radius: var(--radius);
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}
.mac_button .wrap {
    font-size: 25px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 30px;
    border-radius: inherit;
    position: relative;
    overflow: hidden;
}
.mac_button .wrap p {
    display: flex;
    align-items: center;
    color: var(--white) !important;
    gap: 12px;
    margin: 0px !important;
    mask-image: linear-gradient(to bottom, var(--blue) 100%, transparent);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transform: translateY(2%);
    -webkit-transform: translateY(2%);
    -moz-transform: translateY(2%);
    -ms-transform: translateY(2%);
    -o-transform: translateY(2%);
}
.mac_button .wrap::before,
.mac_button .wrap::after {
  content: "";
  position: absolute;
  transition: all 0.3s ease;
}
.mac_button .wrap::before {
  left: -15%;
  right: -15%;
  bottom: 25%;
  top: -100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
}
.mac_button .wrap::after {
  left: 6%;
  right: 6%;
  top: 12%;
  bottom: 40%;
  box-shadow: inset 0 10px 8px -10px rgba(255, 255, 255, 0.8);
  background: linear-gradient(    180deg,    rgba(255, 255, 255, 0.3) 0%,    rgba(0, 0, 0, 0) 50%,    rgba(0, 0, 0, 0) 100%  );
  border-radius: 8px 8px 0 0;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  -o-border-radius: 8px 8px 0 0;
}
.mac_button:hover {
  box-shadow:
    inset 0 0.3rem 0.5rem rgba(255, 255, 255, 0.4),
    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.7),
    inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.7),
    0 3rem 3rem rgba(0, 0, 0, 0.3),
    0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
}
.mac_button:hover .wrap::before {
  transform: translateY(-5%);
  -webkit-transform: translateY(-5%);
  -moz-transform: translateY(-5%);
  -ms-transform: translateY(-5%);
  -o-transform: translateY(-5%);
}
.mac_button:hover .wrap::after {
  opacity: 0.4;
  transform: translateY(5%);
  -webkit-transform: translateY(5%);
  -moz-transform: translateY(5%);
  -ms-transform: translateY(5%);
  -o-transform: translateY(5%);
}
.mac_button:hover .wrap p {
  transform: translateY(-4%);
  -webkit-transform: translateY(-4%);
  -moz-transform: translateY(-4%);
  -ms-transform: translateY(-4%);
  -o-transform: translateY(-4%);
}
.mac_button:active {
  box-shadow:    inset 0 0.3rem 0.5rem rgba(255, 255, 255, 0.5),    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.8),    inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.4),    0 3rem 3rem rgba(0, 0, 0, 0.3),    0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
  transform: translateY(4px);
  -webkit-transform: translateY(4px);
  -moz-transform: translateY(4px);
  -ms-transform: translateY(4px);
  -o-transform: translateY(4px);
}

