*{
    box-sizing: border-box;
}

body{
    font-family: 'Montserrat';
}

/* Header Area */
.header{
  width: 100%;
  box-shadow: 0px 5px 8px -4px rgba(0, 0, 0, 0.2);
}

#welcomeHead{
    margin-top: 30px;
    font-weight: 600;
}

#welcome{
    text-align: center;
    margin: auto;
    width: 30%;
}

#profilePic{
    width: 9%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 50%;
    height: 128px;
}

/* Footer Area */
#logo{
    width: 7%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 20px;
}

/* General */
h1{
    text-align: center;
}

h2{
    text-align: center;
}

hr{
    margin-top: 50px; width: 67%;
    border-top: 1px solid #E5E5E5;
}

p {
    text-align: center;
}

/* Cards for each step */
.column {
    float: left;
    width: 20%;
    padding: 0 20px;
}

.row{
    margin-top: 50px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.card {
    box-shadow: 0 6px 8px 4px rgba(0, 0, 0, 0.2);
    padding: 16px;
    height: 500px;
    background-color: white;
    position: relative;
}

.card h3{
    text-align: center;
    font-weight: 700;
}

.icon{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.iconCheck{
    display: none;
    margin-left: auto;
    margin-right: auto;
    width: 25%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.viewButtom{
    text-decoration: none;
    color: #FFB763;
    outline: none;
    font-weight: bold;
    font-size: 22px;
}

.bottomIcon{
    position: absolute;
    bottom: 70px;
    width: 100%;
    text-align: center;
    padding-right: 36px;
}

.bottom{
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
    padding-right: 36px;
}

/* Progress Bar */
#progressTrack{
    margin-top: 50px;
}

#progressbar {
    background-color: #E5E5E5;
    border-radius: 13px;
    /* (height of inner div) / 2 + padding */
    padding: 6px;
    width: 20%;
    margin: auto;
}
  
#progressbar>div {
    background-color: #FFB763;
    width: 5%;
    /* Adjust with JavaScript */
    height: 15px;
    border-radius: 10px;
}

/*Overlay*/

#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    background-image: "https://i.pinimg.com/originals/1e/bd/62/1ebd62592ece9c36f32347098a8ddb21.gif";
    z-index: 2;
}

#gifImage{
    width: 100%;
}

#text{
    position: absolute;
    top: 50%;
    width: 25%;
    height:max-content;
    padding: 20px;
    left: 50%;
    font-size: 50px;
    color: black;
    background-color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    border: 2px solid #E5E5E5;
    padding-top: 50px;
    padding-bottom: 50px;
}

#confirm{
    display: block;
    position: relative;
    width: 20%;
    text-align: center;
    margin: auto;
    margin-top: 20px;
}

#textCon{
    position: relative;
    font-size: 14px;
    font-weight: bold;
}

/* If screen becomes smaller than 1000px */
@media screen and (max-width: 1000px) {
    .column {
      width: 80%;
      display: block;
      margin: auto;
      float: none;
      margin-bottom: 40px;
    }

    #welcome{
        width: 75%;
    }

    #progressbar{
        width: 50%;
    }

    .iconCheck{
        max-width: 70px;
    }
    
    .icon{
        max-width: 150px;
    }

    #logo {
        width: 30%;
    }

    #profilePic {
        width: 30%;
    }

    .row {
        width: auto;
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
    }
}


