* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100vh;
    width: 100%;
    font-family: Arial, sans-serif;
    overflow-y: auto;
}

.flex{
    display: flex;
    align-items: center;
    justify-content: center;
}

.center{
    width: 100%;
    flex-direction: column;
}

header{
    width: 100%;
    padding: 15px 0;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.header-print{
    width: 90%;
    max-width: 1400px;
    justify-content: flex-start;
}

.content{
    height: 100%;
    min-height: calc(100vh - 92px);
    width: 90%;
    max-width: 1400px;
}

.box{
    /* border: 1px solid #628060; */
    border-radius: 40px;
    margin: 20px 0;
    padding: 20px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

h1{
    margin: 20px 0;
    font-size: 52px;
    line-height: 52px;
    max-width: 90%;
    font-weight: 600;
    color: #5a7658;
}

header h1{
    margin: 0;
    font-weight: 700;
    color: #182A98;
}

header img{
    height: 52px;
    width: auto;
    margin-right: 20px;
}

h2{
    /* padding: 30px 60px; */
    /* width: fit-content; */
    font-size: 40px;
    /* border-radius: 40px 40px 0 0; */
    border-radius: 40px;
    color: #5a7658 ;
    background-color: #e0f1e0 ;
    /* clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0% 100%); */
    padding: 0 30px;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.2);; */
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

h3{
    margin: 20px;
    font-size: 32px;
    font-weight: 500;
}

h4{
    /* margin: 20px; */
    font-size: 32px;
    font-weight: 500;
    padding: 0 20px;
    width: fit-content;
    color: #5a7658 ;
    background-color: #e0f1e0 ;
    clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0% 100%);
}

p{
    margin: 10px;
    font-size: 28px;
}

.areabox{
    margin: 10px 0;
    padding: 10px ;
    border: 1px solid #ccc;
    border-radius: 20px;
    /* box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2); */
}

.a1{
    justify-content: space-between;
}

.a2{
    justify-content: space-between;
}

.url{
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
}

.text{
    flex-direction: column;
}

.btn{
    height: 200px;
    width: 200px;
    margin: 0 0 0 10px;
    padding: 10px 25px;
    border: 2px solid #CCC;
    font-size: 28px;
    font-weight: 600;
    border-radius: 10px;
    color: #628060;
    background-color: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    justify-content: space-evenly;
}

.btn:hover {
    color: white;                 
    background-color: #628060;   
    border: 2px solid #fff;
    box-shadow: 5px 10px 25px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn img{
    height: 60%;
}

.underline{
    text-decoration: underline;
}

.agencies{
    width: 100%;
    padding: 15px 0;
    font-size: 32px;
    font-weight: bold;
    line-height: 32px;
    color: #fff;
    background-color: #628060;
}

.agencies img{
    height: 48px;
    margin-right: 20px;
}

@media screen and (max-width: 1000px) {
    .areabox img{
        display: none;
    }
    .areabox{
        flex-direction: column;
        align-items: flex-start;
    }
    .btn{
        height: auto;
        width: calc(90vw - 75px);
        margin: 0 0 10px 10px;
    }
    .text{
        display: inline;
    }
}