@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400&display=swap');



* {
    box-sizing: border-box;
    outline: none;
}

html {
    height: 100%;
    font-size: 10px;
    /* scroll-behavior: smooth; */
}

a,
button {
    transition: all .25s ease-in-out;
    text-decoration: none;
}

body {
    font: 300 1.4rem/1.3 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #9da1a6;    
}

h1 {
    margin: 0;
    font-size: 6rem;
    font-weight: 900;
}

h2 {
    margin: 0;
    font-size: 6rem;
    font-weight: 900;
}

.bg {
    min-width: 100vw;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}

.container {
    margin: auto;
    border: 1px solid #111a28;
    border-radius: 10px;
    width: 90vw;
    background: #111a28;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 60vh;
}

.section{
    /* outline: 1px solid red; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.section--left {
    width: 60%;
}

.section--right {
    width: 40%;
    padding: 75px 5% 75px 2%;
}

.section__logo {
    /* outline: 1px solid red; */
    margin: 20px auto auto 20px;
    width: 20%;
}

.section__pic-container {
    /* outline: 1px solid red; */
    margin: 60px auto;
    width: 80%;
    height: 40vh;
    display: flex;
}
.section__pic {
    /* outline: 1px solid red; */
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    

}

.section__circles {
    /* outline: 1px solid red; */
    display: flex;
    justify-content: space-between;
    margin: auto  auto 15px auto;
    min-width: 21%;

}

.circle {
    /* outline: 1px solid red; */
    fill: #1f273f;
    transition: all .25s ease-in-out;
    border: 2px solid transparent;
    border-radius: 50%;
    margin: auto 3px;
}

.circle--checked {
    border: 2px solid #7b8088;
}

.circle:hover,
.circle:active,
.circle:focus {
    /* outline: 1px solid red; */
    border: 2px solid #7b8088;
}



.circle--white {
    fill: #fff;
}

.circle--red {
    fill: #ed3333;
}

.circle--blue {
    fill: #29e3ea;
}


.section__title {
    font-size: 2.4rem;
    line-height: 1.1;
    font-weight: 400;
    min-width: 100%;
    margin: auto auto 15px auto;
}

.section__subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: 300;
    min-width: 100%;
}

.section__stars {
    width: 100%;
    line-height: 1;
    margin:  auto auto 0 auto;
}

.form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto auto auto;
}

.form__select {
    width: 40%;
    padding: 8px 10px;
    border: 1px solid #7b8088;
    background: #111a28;
    cursor: pointer;
    margin: 30px 2px 30px 0;
    text-align: center;

}

.form__select:hover,
.form__select:active,
.form__select:focus {
    background: #7b8088;
    color: #111a28;
}



.form__btn {
    display: inline-block;
    background: #202835;
    border: 1px solid #7b8088;
    width: 100%;
    margin: auto;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all .25s ease-in-out;
}

.form__btn:hover,
.form__btn:active,
.form__btn:focus {
    background: #9da1a6;
    color: #202835;
}

.radio:not(:checked)+.section__pic {
display: none;
}



.gold {
    color: #f7bf16;
}

.hide {
    display: none;
}




@media screen and (max-width:768px) {

    .section__pic-container {
        margin: 30px auto;
    }
    .section--right {
        width: 40%;
        padding: 30px 5% 30px 2%;
    }
}

@media screen and (max-width:576px) {

    .section__pic-container {
        margin: 15px auto;
    }
    .section--left {
        width: 100%;
    }
    
    .section--right {
        width: 100%;
        padding: 20px 5% 20px 2%;
    }
    
    .container {
        margin: 5px auto;
    }
    .section__stars {
        width: 100%;
        line-height: 1;
        margin:  15px auto 0 auto;
    }
}