.counselling_sesh_row {
    display: flex;
    margin-top: 8%;
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 30px;
    width: 100%;
}

.card_inside_cs {
    flex: 1;
    border-radius: 10px;
    filter: drop-shadow(0 5px 10px 0 #ffffff);
    width: 400px;
    height: 250px;
    background-color: #ffffff;
    border-color: #ffe2e0;
    border-style: solid;
    border: 1px 1px 1px 1px;
    padding-left: 5px;
    padding-right: 5px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: 0.6s ease-in;
    padding-left: 10px;
}

.card_inside_cs:first-child {
    margin-right: 40px;
}

.card_inside_cs::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -15px;
    right: -15px;
    background: #ffe2e0;
    /* 7952b3 */
    height: 220px;
    width: 25px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
}

.card_inside_cs:hover::before {
    transition-delay: 0.2s;
    transform: scale(40);
}

.card_inside_cs:hover {
    color: #ffffff;
}

.card_inside_cs p {
    padding: 10px 0;
}


/* .if_counselling{
    position:relative;
    height: 3200px;
    width: auto;
}

.if_counselling .ratio{
    display:block;width:100%;height:auto;
}

.if_counselling iframe {
    position:absolute;top:0;left:0;width:100%; height:100%;
} */


/*custom font*/

@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: montserrat, arial, verdana;
}


/*form styles*/

#msform {
    width: 800px;
    margin: 50px auto;
    text-align: center;
    position: relative;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 3px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;
    /*stacking fieldsets above each other*/
    position: relative;
}


/*Hide all except first fieldset*/

#msform fieldset:not(:first-of-type) {
    display: none;
}


/*inputs*/

#msform input,
#msform textarea {
    height: max-content;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
}


/*buttons*/

#msform .action-button {
    width: 100px;
    background: #27AE60;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button:hover,
#msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}


/*headings*/

.fs-title {
    font-size: 15px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

select {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 4px;
    background-color: #f1f1f1;
}


/*progressbar*/

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: black;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    position: relative;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #333;
    background: white;
    border-radius: 3px;
    margin: 0 auto 5px auto;
}


/*progressbar connectors*/

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: black;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1;
    /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}


/*marking active/completed steps green*/


/*The number of the step and the connector before it = green*/

#progressbar li.active:before,
#progressbar li.active:after {
    background: #27AE60;
    color: black;
}

.main-container {
    padding: 30px;
}


/* HEADING */

.heading {
    text-align: center;
}

.heading__title {
    font-weight: 600;
}

.heading__credits {
    margin: 10px 0px;
    color: #888888;
    font-size: 25px;
    transition: all 0.5s;
}

.heading__link {
    text-decoration: none;
}

.heading__credits .heading__link {
    color: inherit;
}


/* CARDS */

.cards {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    /* justify-content: first baseline; */
}

.card02 {
    margin: 20px;
    padding: 20px;
    width: 500px;
    min-height: 200px;
    display: grid;
    /* grid-template-rows: 20px 50px 1fr 50px; */
    border-radius: 10px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.2s;
}

.card02:hover {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
    transform: scale(1.01);
}

.card02__title {
    /* grid-row: 3/4; */
    font-weight: 400;
    color: #000000;
}


/* CARD BACKGROUNDS */

.card-1 {
    background: #98e4eb;
}

.card-2 {
    background: #98e4ba;
}


/* RESPONSIVE */

@media (max-width: 1600px) {
    .cards {
        justify-content: center;
    }
}


@media only screen and (device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) {
    #msform {
        width: 95%
    }
    .card-1 {
        width: 80%;
        margin-top: 10%
    }
    .card-2 {
        width: 80%;
    }
}

.div_disclaimer {
    display: flex;
    width: 70%;
    text-align: center;
    margin: 0 auto;
    font-size: 0.8em;
}


@media only screen and (max-width: 700px) {
    #msform {
        width: 95%
    }
    .card-1 {
        width: 80%;
        margin-top: 10%
    }
    .card-2 {
        width: 80%;
    }
    .div_disclaimer{
        font-size:0.6em;
    }
}