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;
}
.hero .display-2{
    font-size:2rem
}
.hero-img{
    max-width:12rem;
}

.card-hover .card:hover {
    transition: all 0.3s ease-out;
    box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
}

.grid {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 1rem;
}

.polygon {
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    background: #fff;
    background: linear-gradient(90deg, rgba(255,255,255,1) 50%, #dabcff 100%);
}
.gradient-violet {
    background: #fff;
    background: linear-gradient(90deg, rgba(255,255,255,1) 50%, #dabcff 100%);
}



.options > div > label:hover {
    background-color: #007fbb;
    color: #fff !important;
    transition: ease-in .2s;
    cursor: pointer;
}

.options label {
    width: 100%;
    height: 100%;
    min-height: 1rem;
    border: 1px solid #007fbb;
    font-weight: 700;
    color: #444;
    border-radius: 50rem;
    text-align: center;
    padding: .75rem 1rem;
    font-size: 1.25rem;
}

.options input[type=radio] {
    position: absolute;
    top: -10rem;
    left: -10rem;
    visibility: hidden;
}

    .options input[type=radio]:checked + label {
        background-color: #007fbb;
        color: #fff;
        transition: ease-in .2s;
    }

    .options input[type=radio]:not(:checked):disabled + label {
        /*background-color: #efefef;*/
        color: #aaa
    }

        .options input[type=radio]:not(:checked):disabled + label:hover {
            background-color: #fff;
            color: #aaa !important;
        }



@media (min-width: 768px) {
    .hero-img {
        max-width: 30rem;
    }
    .hero .display-2 {
        font-size: 4.5rem
    }
    .grid {
        grid-template-columns: repeat(2,1fr);
        gap: 2rem;
    }
    .options label {
        padding: 1rem 1rem;
    }
}