@import "custom-colors.css";

*{
    font-family: 'Source Sans 3', sans-serif;
    text-align: center;
}


/* SECTION */
section{
    padding-top: 50px;
    padding-bottom: 50px;
}
.section-header{
    text-align: center; 
    color: var(--custom-blue);
    background-image: url('https://d27535ieqsl1sy.cloudfront.net/S3Assets/banner-white.png'); 
    background-size: contain; 
    background-repeat: no-repeat; 
    background-position: center;  
}
.section-header-white{
    color: var(--bs-white);
    background-image: url('https://d27535ieqsl1sy.cloudfront.net/S3Assets/banner.png'); 
    background-size: contain; 
    background-repeat: no-repeat; 
    background-position: center;  
    height: 100px;
}


/* TEXT */
.main-text{
    color: var(--dark-brown)
}


/* BUTTONS */
#btn-main {
    background-color: var(--custom-blue);
    color: white;
    border: 1px solid var(--custom-blue);
}
#btn-main:hover {
    background-color: var(--dark-blue);
    color: white;
    border: 1px solid var(--custom-blue);
}
#btn-two {
    background-color: white;
    color: var(--custom-blue);
    border: none;
}
#btn-two:hover {
    background-color: var(--custom-blue);
    color: white;
}
#btn-three {
    background-color: white;
    color: var(--custom-blue);
    border: none;
}
#btn-three:hover {
    background-color: var(--dark-blue);
    color: white;
}
.btn-dark-blue{
    background-color: var(--dark-blue);
    color: white;
    border: none;
}
.btn-dark-blue:hover{
    background-color: var(--custom-blue);
    color: white;
}


/* NAVBAR */
.navbar-brand:hover{
    animation: logo-animation 1s 1;
}
@keyframes logo-animation {
    0%{
        transform: rotate(140deg) scale(1);
    }
    50%{
        transform: rotate(0deg) scale(.9);
    }
    80%{
        transform: rotate(0deg) scale(1.02);
    }
    100%{
        transform: rotate(0deg) scale(1);
    }
}
#nav-link {
    font-size: large;
    color: var(--dark-blue);
    text-transform: capitalize;
    padding: 10px;
}
#nav-link:hover {
    color: white;
    background-image: url('https://d27535ieqsl1sy.cloudfront.net/S3Assets/banner.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.navbar .bg{
    background-image: url('https://d27535ieqsl1sy.cloudfront.net/S3Assets/nav-background-b.png');
    background-size: cover;
}
#mobile-call-tag{
    background-color: var(--custom-blue);
}
#mobile-call-tag:hover{
    background-color: var(--dark-blue);
}


/* FOOTER */
footer{
    background-color: var(--custom-blue);
    box-shadow: 1px 1px 5px black;
}
footer h5{
    color: white;
    text-decoration: underline;
}
footer a{
    color: white;
    text-decoration: none;
}
footer a:hover{
    color: white;
    text-decoration: none;
}
footer p {
    color: white;
}

/* FORM PROGRESS */
.tab {
    display: none;
  }
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}
.step.active {
    opacity: 1;
}
.step.finish {
    background-color: var(--custom-blue);
}