﻿
/* ***** THIS IS THE CODE FOR THE 'LETS GET STARTED' HEADER AND STEPS 1, 2, 3 FOR REG, VERIFY AND SIGN IN ***** */

/*Need to overwrite parent max-width container*/ 
.header-container {
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
}

.p-w-logo-container {
    background-color: #203864;
    display: flex;
    flex-flow: row wrap;
    padding-top: 11px;
}

.alignleft {
    width: 33.33333%;
    text-align: left;
}

.aligncenter {
    width: 33.33333%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.alignright {
    width: 33.33333%;
    text-align: right;
}

#wincat-logo{
    width: 60px;
    display: flex;
    justify-self: center;
}

/* tablet */
@media only screen and (max-width: 1024px) {
    #wincat-logo {
        width: 50px;
    }
}

.get-started-header {
    display: flex;
    flex-direction: column;
    /* justify-content: center;*/
    align-items: center;
    width: 100% !important;
    background-color: #203864;
    height: 140px;
    margin: 0px !important;
    padding-top: 10px;
}

/* tablet */
@media only screen and (max-width: 1024px) {
    .get-started-header {
        padding-top: 10px;
        padding-left: 15px;
        padding-right: 15px;
        height: 130px;
    }
}

/* phone */
@media only screen and (max-width: 412px) {
    .get-started-header {
        height: 150px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.get-started-text{
    font-size: 30px;
    color: white;
    font-weight: bold;
}

/* tablet */
@media only screen and (max-width: 1024px) {
    .get-started-text {
        font-size: 25px;
    }
}

.follow-steps-div{
    text-align: center;
}

.follow-steps-text {
    font-size: 18px;
    color: white;
    font-weight: 500;
}

/* tablet */
@media only screen and (max-width: 1024px) {
    .follow-steps-text {
        font-size: 16px;
    }
}

.steps-header{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.steps-div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.circle-div{
    display: flex;
    justify-content: center;
}

.circles-holder{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 60%;
}

/* tablet */
@media only screen and (max-width: 1024px) {
    .circles-holder {
        width: 80%;
    }
}

/* phone */
@media only screen and (max-width: 412px) {
    .circles-holder {
        justify-content: center;
    }
}

.circle {
    background: white;
    border-radius: 50%;
    width: 95px;
    height: 95px;
    text-align: center;
    margin-top: -50px;
    border: 0.1em solid #DCDCDC;
}

/* tablet */
@media only screen and (max-width: 1024px) {
    .circle {
        width: 80px;
        height: 80px;
        margin-top: -40px;
    }
}



.circle p {
    margin-top: 20px;
    font-size: 38px;
    font-weight: bold;
}

/* tablet */
@media only screen and (max-width: 1024px) {
    .circle p {
        margin-top: 18px;
        font-size: 30px;
    }
}
.circle-title{
    text-align: center;
    margin-top: 10px;
}

.circle-title-text {
    font-size: 18px;
    font-weight: bold;
    color: #203864;
}

.circle-body{
    width: 220px;
    text-align: center;
    line-height: 17px;
}

/* tablet */
@media only screen and (max-width: 1024px) {
    .circle-body {
        width: 170px;
    }
}

.circle-body-text {
    font-size: 15px;
    color:#203864; 
}

/* tablet */
@media only screen and (max-width: 1024px) {
    .circle-body-text {
        font-size: 13px;
    }
}


