@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

body{
    background-color: #26425E;
}
#header, #main, #footer{
    max-width: 950px;
    margin: auto;
    text-align: center;
    background-color: #fff;
}
#header h6{
    font-size: 12px;
}
.footer-bg{
    position: relative;
    height: 500px;
    margin-top: -500px;
    background-image: url('../img/footer-bg.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    z-index: -9;
    clip-path: polygon(50% 0%, 100% 50%, 100% 100%, 0 100%, 0 50%);
}
h1,h2,h3,h4,h5,h6,p{
    color: #26425E;
    font-family: Montserrat;
}
.donut-chart-section{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.circle-container {
    display: block;
    width: 200px;
    height: 200px;
    margin: 20px auto 10px;
}
.circle{
    fill: #EBEBEB;
    stroke: #9A9A9A;
    stroke-width: 14;
    stroke-dasharray: 100;
    stroke-linecap: round;
    transition: stroke-dashoffset 3s;
}
.bad-circle{
    fill: rgba(255, 80, 80, 0.10);
    stroke: #FF5050;;
}
.average-circle{
    fill: rgba(247, 146, 30, 0.10);
    stroke: #F7931E;
}
.good-circle{
    fill: rgba(0, 169, 158, 0.10);
    stroke: #00A99D;
}
.circle-container text {
    fill: #26425E;
    font-size: 20px;
}
.average-message{
    padding: 4px;
    font-size: 12px; 
    color: #F7931E; 
    background-color: rgba(247, 146, 30, 0.10);
}
.bad-message{
    padding: 4px;
    font-size: 12px; 
    color: #FF5050; 
    background-color: rgba(255, 80, 80, 0.10);
}
.pie-container {
    display: block;
    width: 180px;
    height: 180px;
    margin: 20px auto 10px;
    background: #D9F2F0;
    border-radius: 50%;
    transform: rotate(-90deg);
}
.pie-circle {
    fill: none;
    stroke: #26425E;
    stroke-width: 32;
    transition: stroke-dasharray 3s;
}
.feedback{
    max-width: 450px;
    margin: auto;
    padding-bottom: 20px; 
    background-color: #F1F1F1;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px; 
}
.feedback > div{
    border-top-right-radius: 6px;
    border-top-left-radius: 6px; 
}
.feedback > h2{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-weight: 600;
}
.feedback h3{
    font-size: 36px;
}
.feedback p {
    font-size: 20px;
}
.feedback > p {
    margin: 1.2rem auto 0.2rem;    
}
.feedback i {
    font-size: 30px;
    margin-right: 10px;
}
.bad-block{
    border-bottom: 5px solid #FF5050;
}
.bad-block > div {
    background-color: #FF5050;
}
.bad-block > h2, .bad-block > p {
    color: #FF5050;
}
.average-block{
    border-bottom: 5px solid #F7931E;
}
.average-block > div {
    background-color: #F7931E;
}
.average-block > h2, .average-block > p{
    color: #F7931E;
}
.good-block{
    border-bottom: 5px solid #00A99D;
}
.good-block > div {
    background-color: #00A99D;
}
.good-block > h2, .good-block > p {
    color: #00A99D;
}
.find-btn{
    padding: 10px 30px; 
    border-radius: 40px; 
    background-color: #26425E; 
    color: #fff;
    font-size: 20px;
}
.find-btn:hover, .find-btn:active{
    background-color: #26425E; 
    color: #fff;
}
.find-btn i, .analysis-btn i {
    font-size: 36px !important;
    font-weight: 300;
    vertical-align: sub;
}
.bar-container {
    width: 100%;
    height: 206px;
}
.bar-container > div > div {
    width: 40px;
    transition: height 3s;
}
.analysis-btn{
    padding: 10px 30px; 
    border-radius: 40px; 
    border: 1px solid #00A99D; 
    background-color: transparent; 
    color: #00A99D;
    font-size: 20px;
}
.analysis-btn:hover, .analysis-btn:active{
    border: 1px solid #00A99D; 
    background-color: transparent; 
    color: #00A99D;
}
.vp-bg-navy{
    background-color: #26425E;
}
.vp-bg-teal, .vp-bg-good{
    background-color: #00A99D;
}
.vp-text-navy{
   color: #26425E;
}
.vp-text-teal{
   color: #00A99D;
}
.vp-bg-good{
    background-color: #00A99D;
}
.vp-bg-average{
    background-color: #F7931E;
}
.vp-bg-bad{
    background-color: #FF5050;
}
#callbackModal .btn-close{
    width: 20px;
    height: 20px;
    margin: 10px;
    line-height: 0px;
    background: #ccc;
}
#callbackModal .fa-xmark{
    margin-left: 2px;
    font-size: 18px;
}
#callbackModal .fa-phone{
    margin-top: 15px;
    margin-right: 8px;
    vertical-align: top;
    font-size: 30px;
}
#callbackModal a {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 600;
    text-decoration: none;
}
@media screen and (min-width: 480px) {
    .bar-container {
        width: 400px;
    }
    .feedback h2{
        font-size: 50px;
    }
    .feedback h3{
        font-size: 40px;
    }
    .feedback i {
        font-size: 36px;
    }

}
@media screen and (min-width: 768px) {
    .donut-chart-section {
        flex-direction: row;
    } 
    .donut-chart-section > div{
        width: 50%;
    }
    .bar-container {
        width: 500px;
    }  
    .bar-container > div > div {
        width: 50px;
    } 
    .pie-text{
        margin: 0 -20px;
    }       
}
@media screen and (min-width: 992px) {
    #header{
        border-top-right-radius: 6px;
        border-top-left-radius: 6px;
    }
    #footer{
        border-bottom-right-radius: 6px;
        border-bottom-left-radius: 6px;
    }
    .donut-chart-section > div{
        width: 25%;
    } 
    .feedback {
        padding-bottom: 36px;
    }
    .feedback h2{
        font-size: 60px;
    }
    .feedback i {
        font-size: 45px;
    }           
}