/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@font-face {
    font-family: 'Jost';
    src: url('/font/Jost/Jost-VariableFont_wght.ttf');
}

@font-face {
    font-family: 'GlitchGoblin-2O87v';
    src: url('/font/GlitchGoblin-2O87v.ttf');
}


a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
    color: #EEEEEE;
    font-style: normal;
    line-height: normal;
    font-family: Jost;
}

a {
    text-decoration: none;
}

body {
    background-color: #1E1E1E;
}

h1 {
    font-size: 32px;
    font-family: GlitchGoblin-2O87v;
}

header {
    width: 100%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 300px 30px 100px;

}

nav {
    display: flex;
    justify-content: space-between;
}

nav>a {
    padding: 0px 30px;
    padding-left: 0px;
}

main {
    padding-top: 34px;
}

h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 64px;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 9px;
}

section {
    flex-direction: column;
    display: flex;
    align-items: center;
    padding-bottom: 64px;
}

.card {
    display: flex;
    width: 60%;
    height: 204px;
    border-radius: 50px;
    background-color: #393E46;
    margin-bottom: 45px;
}

.card_content {
    display: flex;
    padding: 40px 0px 50px 37px;
}

.card_content_text {
    padding: 25px;
    padding-top: 5px;
    width: 228px;
}

.card_content_radio {
    padding: 25px;
    padding-top: 5px;
}

.goto_container {
    display: flex;
    align-items: center;
    padding-top: 100px;
    margin-left: 200px;


}

.goto_container:hover>svg {
    animation: 0.5s infinite alternate goto_anim;
}

@keyframes goto_anim {
    from {
        margin-left: 0px;
    }

    to {
        margin-left: 15px;
    }
}

.goto_container>p {
    font-size: 24px;
    font-weight: 700;
    padding-right: 15px;
}

.radio_container {
    padding-top: 15px;
}

.radio_btn {
    border-radius: 10px;
    border: 2px solid #D9D9D9;
    background: #D9D9D9;
    width: 75px;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
    margin-left: 10px;
}

#restart_btn {
    margin-left: 30px;
}

#amount_input {
    padding-top: 35px;
    border: none;
    box-shadow: none;
    color: #D9D9D9;
    width: 100px;
    font-size: 18px;
    background-color: transparent;
    border-bottom: 2px solid #EEEEEE;
}

input:focus {
    outline: none;
}

footer {
    box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.25);
    height: 60px;
}

footer>p {
    padding-top: 20px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.project_card {
    box-shadow: 21px 21px 42px 0px rgba(56, 173, 239, 0.25);
}

.service_card {
	box-shadow: 21px 21px 42px 0px rgba(78, 204, 163, 0.25);

}

.etc_card {
    box-shadow: 21px 21px 42px 0px rgb(237 22 75 / 25%);
}

a {
    display: flex;
}



@media (max-width: 900px) {

    .header_container {
        padding: 10px 100px 10px 10px;
        flex-direction: column;
        align-items: normal;
    }

    .goto_container {
        margin-left: 100px;
    }

    nav>a {
        padding-top: 10px;
        padding-bottom: 0px;
        font-weight: 700;
    }

    section {
        /* display: block; */
        padding-bottom: 16px;
    }

    h2 {
        margin-bottom: 32px;
    }

    .card {

        width: 90%;
        height: 150px;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .card_content {
        padding: 10px 0px 50px 10px;
    }

    .goto_container{
        display: none;
    }

    #restart_btn, #prev_btn, #next_btn{
        display: none;
    }

    .radio_container{
            padding-top: 0px;
    }

}

@media (min-width: 2300px) {

    .goto_container {
        margin-left: 650px;
    }
}

@media (min-width: 1500px){
	.goto_container {
		margin-left: 400px;
	}
}
