section.main {
    background-image: url(images/insurance-agent.jpg);
    background-size: cover;
    background-position: center center;
}

.blackout {
    /*background: rgba(0,0,0,0.5);*/
}

.main-form-container {
    background: #fff;
    padding: 20px;
}

.header-small-menu li:nth-child(3) a {
    border-bottom: 2px solid #304345;
    padding-bottom: 5px;
}

.form-group input {
    width: 100%;
    border: none;
    background: #F4F7FA;
    height: 42px;
    color: #000;
}

.form-group label {
    position: absolute;
    margin-top: 12px;
    margin-left: 10px;
    font-weight: 100;
    transition: all .3s;
    color: #333;
}

.form-group.active label {
    font-size: 10px;
    background: #fff;
    margin-top: -7px;
    margin-left: 10px;
    padding: 0px 5px;
    color: #333;
}

.form-title {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 16px;
}

.btn.btn-gradient {
    border: none;
    background: linear-gradient(86.86deg, #6BC707 -6.46%, #B2D503 66.23%, #FAFF00 145.24%);
    color: #fff;
    transition: all .6s;
    height: auto;
    padding: 10px 20px;
}

.btn.btn-gradient:hover {
    border: none;
    background: linear-gradient(86.86deg, #6BC707 -6.46%, #B2D503 56.23%, #FAFF00 125.24%);
    color: #fff;
}

.btn.btn-black {
    border: none;
    background: #000;
    color: #fff;
    transition: all .6s;
    height: 42px;
    padding: 6px 20px;
}

.btn.btn-black:hover {
    border: none;
    background: #222;
    color: #fff;
}

.rounded-tile {
    background-size: cover;
    border-radius: 15px;
    border: 1px solid #eaeaea;
    position: relative;
    margin-bottom: 30px;
    display: block;
    color: inherit;
    overflow: hidden
}

.rounded-tile .tile-content {
    position: absolute;
    width: calc(100% - 60px);
    top: 30px;
    left: 30px;
    font-size: 18px;
    font-weight: 500
}

.green-bg {
    background: #DFF9DD;
}

.gray-bg {
    background: #F6F6F6;
}

.c-block {
    background: url('images/Mask Group.png') #CDF5CA;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.c-block-2 {
    background: url('images/image 47.png') #F4E3FF;
    background-repeat: no-repeat;
    background-position: right bottom;
}


/* Style the buttons that are used to open and close the acc panel */

.acc {
    cursor: pointer;
    transition: 0.4s;
    margin-bottom: 10px;
}

.acc.active .cir {
    animation: unset;
}

.cir {
    background: rgb(121, 181, 55);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: relative;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite forwards;
    box-shadow: 0 0 0 2em transparent;
}

.cir::after {
    content: "";
    display: block;
    position: absolute;
    left: 17px;
    top: 24px;
    height: 3px;
    width: 18px;
    background-color: white;
}

.acc .cir::before {
    content: "";
    display: block;
    position: absolute;
    left: 24px;
    top: 16px;
    height: 18px;
    width: 3px;
    background-color: white;
}

.acc.active .cir::before {
    display: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #4caf4f8b;
    }
    50% {
        box-shadow: 0 0 0 2em transparent;
    }
    100% {
        box-shadow: 0 0 0 2em transparent;
    }
}

.pulse {
    animation: pulse 12s infinite forwards;
    box-shadow: 0 0 0 2em transparent;
}

.acc__title {}


/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */

.active,
.acc:hover {}

.panel {
    display: none;
    overflow: hidden;
    background-color: transparent;
}

.left-bottom {
    position: absolute;
    left: 20px;
    bottom: 15px;
    width: 80px;
    display: block;
}

.right-bottom {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 80px;
    display: block;
}

.center-bottom {
    position: absolute;
    right: 90px;
    bottom: 10px;
    width: 80px;
    display: block;
}

#form-block {
    position: relative;
    background-color: #F2F4F8;
    z-index: 1000;
}

#form-block input,
#popup-form input {
    border: 2px solid #1A1B20;
    box-sizing: border-box;
    border-radius: 35px;
    font-weight: 500;
    font-size: 18px;
    color: #333;
    padding: 10px 25px;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 15px;
}

#form-block input.error,
#popup-form input.error {
    border-color: #ff6c40;
}