*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
    font-family: 'Work Sans', sans-serif;
}

:root{
    --primary: #2cbab2;
    --secondary: black;
    --text: #111;
    --white: #fff;
    --font: 'Work Sans', sans-serif;
}

body{
    font-family: var(--font);
    color: var(--text);
    line-height: 1.5;
    font-size: 1rem;
    overflow-x: hidden;
    position: relative;
  background-position: inherit;
  min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    background: #1CD8D2;
    background: -webkit-linear-gradient(to right, #93EDC7, #1CD8D2);
    background: linear-gradient(to right, #93EDC7, #1CD8D2);
}

body.body-show {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

a, a:hover, a:focus{
    text-decoration: none;
    transition: all 0.5s ease;
}

.row{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -8px;
    margin-left: -8px;
}

.col-md-6, .col-md-12, .col-md-4, .col-md-3,.col-md-2 {
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    width: 100%;
}

.col-md-6{
    flex: 0 0 auto;
    width: 50%;
}

.col-md-4{
    flex: 0 0 auto;
    width: 33.3333%;
}

.col-md-3{
    flex: 0 0 auto;
    width: 25%;
}

.col-md-2{
    flex: 0 0 auto;
    width: 20%;
}

.col-md-12{
    flex: 0 0 auto;
    width: 100%;
}

.text-upper{
    text-transform: uppercase;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px; 
  }

  .text-upper{
    text-transform: uppercase;
  }