html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background: rgb(255,255,255);
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(191,216,238,1) 100%);
    /*    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(191,216,238,1) 100%);*/
}

/* GOOGLE FONTS */
.anybody-h1 {
    font-family: "Anybody", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #222F3F;
    font-size: 2em;
}

.anybody-brand {
    font-family: "Anybody", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #222F3F;
    font-size: 1.60em;
    line-height:1.2;
    margin: 0px 15px;
}

/* Karla */
.karla-h4 {
    font-family: "Karla", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.karla-content-large {
    font-family: "Karla", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.karla-content-base {
    font-family: "Karla", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.karla-content-small {
    font-family: "Karla", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Lato */
.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
}

/* END GOOGLE FONTS */


/** Gradient Button **/
.fancy-btn-wrap {
    position: relative;
    background: linear-gradient(180deg, rgba(250,212,7,1) 0%, rgba(236,123,5,1) 100%);
    padding: 3px;
    border-radius: 999px;
    -webkit-box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.3);
    box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.3);
}

.fancy-btn {
    transition: all .3s;
    display: block;
    background: #3887c9;
    color: #fad407;
    border-radius: 999px;
    padding: 10px 30px;
    text-align: center;
    font-family: 'Lato',Arial,sans-serif;
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    text-decoration: none;
}

    .fancy-btn:hover {
        background: #1b629a;
        color: #fad407;
    }
