@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
*{
    margin: 0px;
    padding: 0px;
}
body{
    font-family: 'Open Sans', sans-serif;
}

:root{
    --font:  'Open Sans', sans-serif;
    --success: #5db448;
    --success-deep: #26830f;
    --black-color:#242527;
}

.home__card{
    margin-top: 15px;
    padding: 25px;
    border: 2px solid #ddd;
}

.main__title{
    font-family:var(--font);
    font-size: 33px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 15px;
}
.top_banner_img > img{
    border-radius: 15px;
    margin-bottom: 25px;
    width: 100%;
}

.content__text h5{
    font-family: var(--font);
    font-size: 20px;
    font-weight: bold;
    color: var(--black-color);
    margin-bottom: 20px;
}
.test__area p,
.content__text p{
    font-size: 20px;
}

.content__text strong{
    font-weight: 700;
}

.listed_features{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.listed_features > li{
    display: flex;
    gap: 5px;
    font-family: var(--font);
    color: var(--black-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.check:before {
    content: '\2714';
    font-style: normal;
    margin-right: 5px;
}

.test__area {
    margin-top: 25px;
}

.test__area h2{
    font-family: var(--font);
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 18px;
}

.otherPages{

}

.otherPages h1.page__title{
    font-family: var(--font);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black-color);
}

.otherPages .last__update{
    font-family: var(--font);
    font-size: 25px;
    text-align: right;
    color: var(--black-color);
    font-weight: 700;
}
.otherPage__item {
    margin-bottom: 30px;
}
.otherPage__item h3{
    font-family: var(--font);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 17px;
}
.otherPage__item p{
    font-size: 16px;
    line-height: 1.5;
}
.text-underline{
    text-decoration: underline;
}
.window__item{
    margin-top: 25px;
}
.window__item .window__title{
    font-family: var(--font);
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 25px;
}
.btn__custom{
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    width: 100%;
    border-color: var(--success);
    background: var(--success);
    transition: 0.5s;
}
.window__item .card__load{
    background: #fff;
    border-top: 5px solid var(--success);
    box-shadow: 0 0 10px #dcdcdc;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}
.btn__custom:hover{
    color: #fff;
    border-color: var(--success-deep);
    background: var(--success-deep);
}
.card__load{
    width: 100%;
    padding: 10px;
}

.success__messages h3{
    font-family: var(--font);
    font-weight: 700;
    margin-bottom: 15px;
}
.success__messages p{
    font-weight: 18px;
}
.success__messages h5,
.success__messages h4{
    font-family: var(--font);
    font-size: 20px;
    text-align: center;
    font-weight: 700;
}
#loadingCircle{
    font-size: 35px;
    display: none;
}
#loadingCircle.active{
    display: block;
}
.sesitive__area{
    position: relative;
    min-height: 250px;
}

#loadingCircle{
    position: absolute;
    top: calc(50% - 10px );
    left: calc(50% - 20px);
}
footer{
    border-top: 1px solid #aaaaaa;
    background: #e4e4e4;
}

/* Responsive */

@media only screen and (max-width:550px) {
    .card{
        border: none;
        padding: 0;
    }
    .home__card{
        padding: 0px;
    }
    .main__title{
        font-size: 25px;
    }
    .top_banner_img > img{
        border-radius: 5px;
    }
    .content__text h5{
        font-size: 16px;
        line-height: 1.4;
    }
    .test__area p, .content__text p{
        font-size: 14px;
    }
    .listed_features > li{
        margin-bottom: 5px;
        gap: 2px;
        font-size: 14px;
    }
    
    .test__area h2{
        font-size: 24px;
        margin-bottom: 5px;
    }
    .window__item .window__title{
        font-size: 24px;
        margin-bottom: 10px;
    }

    .btn__custom{
        font-size: 20px;
        margin-bottom: 10px!important;
    }

    .sesitive__area{
        min-height: 150px;
    }

    .card__load h2{
        font-size: 18px;
    }
    .window__item .card__load{
        padding: 25px 20px;
    }
    .success__messages p{
        font-size: 14px;
    }
    .success__messages h3{
        font-size: 24px;
    }
    .success__messages h5, .success__messages h4{
        font-size: 14px;
    }
    .otherPages h1.page__title{
        font-size: 25px;
        margin-bottom: 5px;
    }
    .otherPages .last__update{
        font-size: 16px;
        text-align: center!important;
        margin-bottom: 30px;
    }
    .otherPage__item h3{
        font-size: 18px;
        margin-bottom: 5px;
    }
    .otherPage__item p{
        font-size: 14px;
    }

    .otherPage__item ul li{
        font-size: 14px;
    }
}