:root{
    --border-radius: 30px;
}
*,
*::before,
*::after{
    box-sizing: border-box;
}
html,
body{
    max-width: 100vw;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: antiquewhite;
    opacity: 1;
    transform: scale(1);
}
.sct-body{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 40px;
}
.sct-body__container{
    max-width: 70%;
    width: 45%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
}
.sct-body__container__logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 30px;
    background-color: rgb(140, 189, 63);
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    margin-bottom: 20px;
}
.sct-body__container__logo img{
    width: 150px;
}
.sct-body__container__site-update{
    padding: 8px;
    border-radius: 16px;
    background-color: rgb(212, 208, 202);
}
p{
    margin: 0;
}
.sct-body__container__title{
    width: 100%;
    height: auto;
    padding: 0 2%;
    text-align: center;
}
.sct-body__container__title h1{
    font-size: 45px;
    color: #000;
    margin: 0;
}
.sct-body__container__paragraph{
    width: 100%;
    height: auto;
    padding: 0 3%;
    text-align: center;
}
.sct-body__container__paragraph p{
    font-size: 20px;
    color: #252525;
}
.sct-body__container__row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 15px 3%;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    margin: 10px 0 30px;
}
.sct-body__container__row-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
    height: auto;
    width: calc(33% - 40px);
    min-width: 220px;
    border-radius: 10px;
    background-color: rgb(212, 208, 202);
    transition: all 0.3s ease;
}
.sct-body__container__row-item:hover{
    transform: scale(1.02);
    
    background-color: #000;
}
.sct-body__container__row-item:hover i, 
.sct-body__container__row-item:hover h4, 
.sct-body__container__row-item:hover p{
    color: #fff;
}
.sct-body__container__row-item i{
    font-size: 30px;
    margin: 5px 0 10px;
}

.sct-body__container__row-item h4{
    font-size: 16px;
    color: #000;
    margin: 0;
    padding: 0;
    text-align: center;
}
.sct-body__container__row-item p{
    font-size: 14px;
    color: #252525;
    margin: 0;
    padding: 0;
    text-align: center;
}
.sct-body__divider{
    width: 60%;
    height: 1px;
    background-color: #dddddd;
}
.sct-body__form-space{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    margin: 30px 0 30px;
}
.sct-body__form-space p{
    margin: 0;
    font-size: 16px;
    color: #252525;
    text-align: center;
    margin-bottom: 10px;
}
.sct-body__form-space__inner-row{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap
}
.sct-body__form-space__inner-row input{
    background-color: #dddddd;
    border-radius: 10px;
    padding: 14px 40px 14px 40px;
    height: 48px;
    border: none;
}
.icon-form{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: fit-content;
    height: fit-content;
}
.icon-form i{
    font-size: 20px;
}
.sct-body__form-space__inner-row button{
    padding: 14px 16px;
    border-radius: 8px;
    border: none;
    background-color: #0244fc;
    color: #fff;
}
.sct-body__container__end{
    width: 100%;
    height: auto;
    padding: 20px 0;
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: #dddddd;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
.sct-body__container__end p{
    margin: 0;
    font-size: 14px;
    color: #252525;
}
.sct-body__container__end a{
    text-decoration: none;
}
.copri-input{
    width: fit-content;
    height: fit-content;
    position: relative;
    height: 48px;
}

.mgx-footer{
    max-width: 70%;
    width: 45%;
    border-radius: 30px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin: 40px 0 20px;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.6);
    background-color: #fff;
}
.mgx-footer img{
    height: 60px;
}
.mgx-footer__col{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    padding-left: 5px;
}
.mgx-footer__col p{
    font-size: 16px;
    margin: 0;
}
.subparagraph{
    font-size: 12px !important;
    color: #757575;
}
.mgx-footer__col__end{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: flex-end;
    padding-left: 5px;
    margin-left: auto;
}
.mgx-footer__col__end p{
    font-size: 16px;
    margin: 0;
}
.body-animation{
    transform: scale(0.8);
    opacity: 0;
}