@font-face {
    font-family: 'Inter';
    src: url('/font/Inter-VariableFont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'InterBold';
    src: url('/font/Inter-VariableFont.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root{

}

body{
left: 0;
top: 0; 
font-family: 'Inter', sans-serif;
width: 100%;
height: 100svh;
padding: 0;
margin: 0;
}

p {
font-family: 'Inter', sans-serif;
color: #000;
font-size: 12px;
margin-top: 5px;
margin-bottom: 5px;
}

.ico-refresh {
    width: auto;
    height: 20px;
    animation: spin 4s cubic-bezier(0.19, 1, 0.22, 1) infinite;
    margin-bottom: 0px;
}

.header-p {
    font-family: 'InterBold', sans-serif;
    color: #09477E;
    font-size: 14px;
    font-weight: 900;
    margin-top: 30px;
}

.main-div {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}

.ctn-holder {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: auto;
    height: auto;
    margin-left: 70px;
    margin-right: 70px;
}

.btn-holder {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-top: 45px;
}

.btn-1 {
    height: 50px;
    width: 31%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid #C8C8C8;
    border-radius: 15px;
    transform: scale(1);
    
}

.btn-1.btn-1:hover {
    transform: scale(1.075);
    transition: 1s cubic-bezier(0.23, 1, 0.320, 1);
} 



@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
         transform: rotate(360deg);
    }
}

@media (min-width: 500px) {
    .ctn-holder {
        margin-left: 120px;
        margin-right: 120px;
    }
}


@media (min-width: 600px) {
    .ctn-holder {
        margin-left: 140px;
        margin-right: 140px;
    }
}

@media (min-width: 680px) {
    .ctn-holder {
        margin-left: 200px;
        margin-right: 200px;
    }
}

@media (min-width: 900px) {
    .ctn-holder {
        margin-left: 280px;
        margin-right: 280px;
    }
}

@media (min-width: 1200px) {
    .ctn-holder {
        margin-left: 350px;
        margin-right: 350px;
    }
}

@media (min-width: 1350px) {
    .ctn-holder {
        margin-left: 450px;
        margin-right: 450px;
    }
}