*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'DM Sans', sans-serif;
}

.main{
    min-height: 100vh;
    background: url("../img/main_bg.svg") no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.path_1{
    position: absolute;
    top: 0;
    left: 4%;
    width: 25vw;
}

.path_2{
    position: absolute;
    top: 0;
    right: 0;
    width: 44vw;
}

.path_3{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44vw;
}

.main_inner{
    position: relative;
    z-index: 99;
}

.site_logo{
    display: flex;
    justify-content: center;
    padding: 50px;
}

.site_logo a{
    display: block;
    max-width: 350px;
    width: 100%;
}


.site_logo a img{
    width: 100%;
}

.wrap_inputs{
    max-width: 500px;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}

#select_language ~ .nice-select{
    background-color: #fff;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.nice-select:after {
    height: 8px;
    right: 18px;
    width: 8px;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #fff;
}

.nice-select{
    height: 54px;
    padding-left: 25px;
    padding-right: 25px;
}

.nice-select span{
    line-height: 54px;
    color: rgb(102, 102, 102);
}

.nice-select .list {
    width: 100% !important;
}

.wrap_select{
    height: 54px;
}

.input_text{
    position: relative;
    padding-right: 120px;
}

.input_text input{
    text-overflow: ellipsis;
    width: 100%;
    border: none;
    outline: none;
    height: 50px;
    padding: 10px 25px;
    background: #fff;
    border-radius: 50px 0 0 50px;
    -webkit-border-radius: 50px 0 0 50px;
    -moz-border-radius: 50px 0 0 50px;
    -ms-border-radius: 50px 0 0 50px;
    -o-border-radius: 50px 0 0 50px;
}

.input_text input::placeholder{
    font-size: 14px;
    color: rgb(102, 102, 102);
}


.input_text button{
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: #6DB7F2;
    color: #fff;
    outline: none;
    border: none;
    border-radius: 0 50px 50px 0;
    -webkit-border-radius: 0 50px 50px 0;
    -moz-border-radius: 0 50px 50px 0;
    -ms-border-radius: 0 50px 50px 0;
    -o-border-radius: 0 50px 50px 0;
}

.site_h1{
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    max-width: 820px;
    line-height: 1.4;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.start_btn{
    display: block;
    background: #6DB7F2;
    color: #fff;
    font-weight: 500;
    padding: 12px 50px;
    border-radius: 100px;
    width: fit-content;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    text-decoration: none;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.start_btn:hover,
.start_btn:focus{
    color: #fff;
    background: #3a84c0;
}

.chart_box{
    max-width: 900px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 80px;
    padding-right: 80px;
    background: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-bottom: 60px;
    box-shadow:  -1px 1px 12px #2f2f2f27;
}

.chart_row{
    width: fit-content;
}

.chart_row li{
    padding: 12px 30px;
    background: #E9F5FF;
    color: #2F2F2F;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.chart_row span{
    font-size: 14px;
    color: #929292;
}

.record_boxes{
    display: flex;
    justify-content: center;
}

.record_box{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.record_box:not(:last-child){
    margin-right: 6vw;
}

.record_box a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 24px;
    color: #6DB7F2;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    background: #fff;
    box-shadow:  0 1px 8px #2f2f2f10;

}

.record_box p{
    color: #2F2F2F;
    font-weight: 500;
}

.site_h2{
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.wrap_chart{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.chart_box2{
    padding: 35px 25px;
    box-shadow:  -1px 1px 12px #2f2f2f18;
}

/* path line */
.path_line,
.path_line2{
    position: relative;
}

.path_line::after,
.path_line2::after{
    content: '';
    position: absolute;
    bottom: -26px;
    right: -5px;
    width: 100%;
    height: 50px;
    background: url("../img/line.svg") no-repeat;
    background-size: 100% 100%;
}

.path_line2::after{
    width: 95%;
    right: 0;
}



/* Responsive Code */
@media(max-width: 992px){
    .pad_x_lg{
        padding-left: 35px; 
        padding-right: 35px; 
    }
    .path_1 {
        left: -4%;
    }
    .path_2 {
        right: -8%;
    }
    .chart_box {
        padding-left: 50px;
        padding-right: 50px;
    }
    .chart_box2{
        padding: 35px 25px;
    }
}

@media(max-width: 850px){
    .wrap_chart{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .wrap_chart{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
        margin-bottom: 0;
    }
    .chart_box2{
        margin-bottom: 50px;
    }
}

@media(max-width: 768px){
    .pad_x_lg{
        padding-left: 30px; 
        padding-right: 30px; 
    }
    .path_1 {
        width: 30vw;
        left: -14%;
    }
    .path_2 {
        width: 50vw;
        right: -18%;
    }
    .chart_box {
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media(max-width: 620px){
    .path_2 {
        right: -22%;
    }
    .path_1 {
        width: 25vw;
    }
    .site_logo a{
        max-width: 420px;
    }
    .wrap_inputs{
        max-width: 460px;
    }
    
}

@media(max-width: 567px){
    .pad_x_lg{
        padding-left: 25px; 
        padding-right: 25px; 
    }
    .site_logo a{
        max-width: 380px;
        width: 94%;
    }
    .wrap_inputs{
        max-width: 420px;
    }
    .site_h1{
        padding-left: 0;
        padding-right: 0;
    }
    .chart_box {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media(max-width: 500px){
    .site_logo a{
        max-width: 350px;
    }
    .wrap_inputs{
        max-width: 390px;
    }
}

@media(max-width: 480px){
    .pad_x_lg{
        padding-left: 20px; 
        padding-right: 20px; 
    }
    .wrap_select,
    .nice-select,
    .input_text input{
        height: 45px;
    }
    .input_text{
        padding-right: 90px;
    }
    .nice-select span{
        line-height: 45px;
    }
    .input_text button {
        width: 90px;
    }
}
