

.white {
    color: var(--main-white-color);
}

.vidSpin {
    max-height: 450px;
    margin-top: 45px;
}

h1 {
    margin-top: 0;
}

/* .main-heading {
    padding-left: 16px;
} */

.sect1 {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-bottom: 40px;
}

.sect1-content {
    background-color: #0066ff;
    padding: 40px;
    position: relative;
}

.sect1 img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
    background: rgb(242,242,242);
    background: linear-gradient(141deg, rgba(242,242,242,1) 0%, rgba(221,221,221,1) 100%);
}

li {
    list-style-type: none;
}

ul li:before {
    content: '✓';
    color: #ffc005;
    font-weight: bolder;
    transition: ease all .5s;
    margin-right: 5px;
}

ul li {
    font-size: 1.7em;
    color: var(--main-white-color);
}


/* Section 2 */

.sect2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #ddd;
    /* background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(198, 198, 198, 1) 70%, rgba(219, 219, 219, 1) 71%, rgba(255, 255, 255, 1) 100%); */
    margin-bottom: 60px;
}


/*Form button style*/

#mainForm {
    padding: 30px;
    border-radius: 10px;
    margin: auto 30px;
    /* background-color: rgba(136, 136, 136, 0.25);
    backdrop-filter: blur(5px); */
}

.shape {
    width: 300px;
    padding: 5px;
    margin: 15px auto;
    display: block;
    border-radius: 6px;
    border-style: none;
    height: 1.8rem;
}

.cta {
    display: block;
    margin: auto;
    background-color: #ff0340;
    border: none;
    font-weight: bold;
    padding: 10px;
    width: 20%;
    font-family: 'oswald', sans-serif;
}

@media only screen and (max-width: 1200px) {
    .cta {
        width: 40%;
    }
}

.cta a {
    color: #fff;
    font-size: 14px;
}

.cta:hover {
    background-color: #c70300;
}

.errorText {
    color: #c70300;
    text-align: center;
    font-size: small;
}

@media only screen and (max-width: 800px) {
    .sect1 {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 800px) {
    .sect1 img {
        display: none;
    }
}

@media only screen and (max-width: 800px) {
    .sect2 {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 800px) {
    h1 {
        font-size: 2.5rem;
    }
    ul li {
        font-size: 1.3em;
    }
}

.tracking-in-contract-bck {
    -webkit-animation: tracking-in-contract-bck 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-contract-bck 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}


/**
* ----------------------------------------
* animation tracking-in-contract-bck
* ----------------------------------------
*/

@-webkit-keyframes tracking-in-contract-bck {
    0% {
        letter-spacing: 1em;
        -webkit-transform: translateZ(400px);
        transform: translateZ(400px);
        opacity: 0;
    }
    40% {
        opacity: 0.6;
    }
    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes tracking-in-contract-bck {
    0% {
        letter-spacing: 1em;
        -webkit-transform: translateZ(400px);
        transform: translateZ(400px);
        opacity: 0;
    }
    40% {
        opacity: 0.6;
    }
    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}