* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #00b4f6;
    --primary-color-2: #029ed6;
    --secondary-color: #2f0061;
    --light-color: #f1efef;
    --white-color: #fff;
    --dark-color: #373636;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

div,
ul,
li,
p,
a {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
p {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
}


.container {
    margin-inline: auto;
    width: min(90%, 80rem);
    /* border: solid tomato; */
}

.container-narrow {
    margin-inline: auto;
    width: min(70%, 60rem);
    /* border: solid tomato; */
}

section {
    padding: 4rem 0;
    overflow: hidden;
}

a {
    color: var(--dark-color);
    text-decoration: none;
}

.heading{
    /* font-family: 'Lato', sans-serif; */
    font-family: 'Alata', sans-serif;

    margin-bottom: 20px;
    font-size: 3rem;
}
.subheading{
    font-family: 'Lato', sans-serif;
    margin-bottom: 15px;
    font-size: 2rem;
}
.paragraph{
    color: var(--dark-color);
    font-size: 18px;
}
.custom-text-primary {
    color: var(--primary-color);
}

.custom-text-secondary {
    color: var(--secondary-color);
}

.text-justify {
    text-align: justify;
}

.text-capital {
    text-transform: uppercase;
}

.button-custom{
    outline: none;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    background-color: var(--primary-color);
    color: var(--white-color);
    position: relative;
}
.button-custom:hover{
    color: #fff;
}
.button-custom::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    transition: all 0.2s;
    background-color: var(--primary-color-2);
    transform-origin: 0 0;
    transform: scale(0);
    transition-timing-function: ease;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.button-custom:hover::before{
    color: white;
    transform: scale(1);
}

.button-custom-outline{
    background: none;
    border: 2px solid var(--primary-color);
    font-family: "montserrat",sans-serif;
    text-transform: uppercase;
    padding: 12px 20px;
    font-size: 18px;
    min-width: 200px;
    margin: 10px;
    cursor: pointer;
    transition: color 0.4s linear;
    position: relative;
    color: var(--primary-color);
  }
  .button-custom-outline:hover{
    color: #fff;
  }
  .button-custom-outline::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: transform 0.5s;
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5,1.6,0.4,0.7);
  }
  .button-custom-outline::before{
    transform: scaleX(0);
  }
  .button-custom-outline:hover::before{
    transform: scaleX(1);
  }