﻿

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

body {
    background: linear-gradient( 91deg, #445469,#1fb18a );
}
/*body {
    font-family: sans-serif;
    background: #f6f9fa;
}

h1 {
    color: #ccc;
    text-align: center;
}

a {
    color: #ccc;
    text-decoration: none;
    outline: none;
}*/

/*Fun begins*/
.tab_container {
    width: 100%;
    margin: 0 auto;
    padding-top: 30px;
    position: relative;
}

.content {
    /*clear: both;*/
    padding-top: 10px;
    display: none;
}

.rad {
    clear: both;
    padding-top: 10px;
    display: none;
}

.tab-lab {
    font-weight: 700;
    font-size: 18px;
    display: block;
    float: left;
    width: 50%;
    padding: 1.5em;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    background: #318279;
    margin-bottom: 2.5rem;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2
/*#tab3:checked ~ #content3
#tab4:checked ~ #content4,
#tab5:checked ~ #content5,
#tab6:checked ~ #content6*/ {
    display: block;
    padding: 15px !important;
    background: #fff;
    color: #999;
    border-bottom: 2px solid #f0f0f0;
}

.tab_container .tab-content p,
.tab_container .tab-content h3 {
    -webkit-animation: fadeInScale 0.7s ease-in-out;
    -moz-animation: fadeInScale 0.7s ease-in-out;
    animation: fadeInScale 0.7s ease-in-out;
}

.tab_container .tab-content h3 {
    text-align: center;
}

.tab_container [id^="tab"]:checked + label {
    background: #fff;
    box-shadow: inset 0px 0px 0px 1px #dddddd;
    color: #1f324a;
}

    .tab_container [id^="tab"]:checked + label .fa {
        color: #318279;
    }

.tab-lab .fa {
    font-size: 1.3em;
    margin: 0 0.4em 0 0;
    color: white;
}

/*Media query*/
@media only screen and (max-width: 930px) {
    .tab-lab span {
        font-size: 14px;
    }

    .tab-lab .fa {
        font-size: 14px;
    }
}

@media only screen and (max-width: 768px) {
    .tab-lab span {
        display: none;
    }

    #application{
        padding-top:5rem !important;
    }

    .tab-lab .fa {
        font-size: 30px;
    }

    .tab_container {
        width: 98%;
    }
}

/*Content Animation*/
@keyframes fadeInScale {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.contact-modal-under-title {
    color: #318279;
}


.nav-tabs .nav-link {
    font-weight: bold;
    background-color: transparent;
    border-bottom: 3px solid #31827938;
    border-right: none;
    border-left: none;
    border-top: none;
    width: 100% !important;
    color: #1f3249;
    pointer-events: none;
}


    .nav-tabs .nav-link.active {
        font-weight: bold;
        background-color: transparent;
        border-bottom: 3px solid #318279 !important;
        color: #1f3249;
        border-right: none;
        border-left: none;
        border-top: none;
    }

    .nav-tabs .nav-link:hover {
        border-bottom: 3px solid #F6A07A !important;
        color: #00ccee;
    }


    /*============= inputs ==================*/
    .inp {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 100%;
}

        .inp .label {
            position: absolute;
            top: 16px;
            left: 0;
            font-size: 16px;
            color: #21364E;
            font-weight: 500;
            transform-origin: 0 0;
            transition: all 0.2s ease;
        }

    .inp .border {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        width: 100%;
        background: #07f;
        transform: scaleX(0);
        transform-origin: 0 0;
        transition: all 0.15s ease;
    }

        .inp input {
            -webkit-appearance: none;
            width: 100%;
            border: 0;
            font-family: inherit;
            padding: 12px 0;
            height: 48px;
            font-size: 16px;
            font-weight: 500;
            border-bottom: 2px solid #c8ccd4;
            background: none;
            border-radius: 0;
            color: #21364E;
            transition: all 0.15s ease;
        }

        .inp input:hover {
            background: rgba(34,50,84,0.03);
        }

        .inp input:not(:placeholder-shown) + span {
            color: #21364E;
            transform: translateY(-26px) scale(0.75);
        }

        .inp input:focus {
            background: none;
            outline: none;
        }

            .inp input:focus + span {
                color: #21364E;
                transform: translateY(-26px) scale(0.75);
            }

                .inp input:focus + span + .border {
                    transform: scaleX(1);
                }

        .inp textarea {
            -webkit-appearance: none;
            width: 100%;
            border: 0;
            font-family: inherit;
            padding: 12px 0;
            height: 176px;
            font-size: 16px;
            font-weight: 500;
            border-bottom: 2px solid #c8ccd4;
            background: none;
            border-radius: 0;
            color: #21364E;
            transition: all 0.15s ease;
        }

        .inp textarea:hover {
            background: rgba(34,50,84,0.03);
        }

        .inp textarea:not(:placeholder-shown) + span {
            color: #21364E;
            transform: translateY(-26px) scale(0.75);
        }

        .inp textarea:focus {
            background: none;
            outline: none;
        }

            .inp textarea:focus + span {
                color: #21364E;
                transform: translateY(-26px) scale(0.75);
            }

                .inp textarea:focus + span + .border {
                    transform: scaleX(1);
                }

    .inp select {
        -webkit-appearance: none;
        width: 100%;
        border: 0;
        font-family: inherit;
        padding: 12px 0;
        height: 48px;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 2px solid #c8ccd4;
        background: none;
        border-radius: 0;
        color: grey;
        transition: all 0.15s ease;
    }

        .inp select:hover {
            background: rgba(34,50,84,0.03);
        }

        .inp select:not(:placeholder-shown) + span {
            color: #21364E;
            transform: translateY(-26px) scale(0.75);
        }

        .inp select:focus {
            background: none;
            outline: none;
        }

            .inp select:focus + span {
                color: #21364E;
                transform: translateY(-26px) scale(0.75);
            }

                .inp select:focus + span + .border {
                    transform: scaleX(1);
                }
