
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Roboto";
    color: #444444;
    font-weight: 500;
}

a {
    color: #4d4c4c;
    text-decoration: none;
}

    a:hover {
        color: #ef4136;
        text-decoration: none;
    }

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-family: "Roboto";
}

#main {
    margin-top: 70px;
    z-index: 3;
    position: relative;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #4b987e;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #4d4c4c;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 70px;
    z-index: 997;
    transition: all 0.5s ease-in-out;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

    #header .logo h1 {
        font-size: 28px;
        margin: 0;
        line-height: 0;
        font-weight: 600;
        letter-spacing: 1px;
    }

        #header .logo h1 a,
        #header .logo h1 a:hover {
            color: #3c4133;
            text-decoration: none;
        }

    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 70px;
    }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }
    /*,
    .navbar a:focus*/
    .navbar a {
        display: block;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        font-family: "Roboto";
        font-size: 15px;
        font-weight: 600;
        color: #4d4c4c;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

    /* .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #4d4c4c;
        }*/

    .navbar .getstarted {
        background: #4d4c4c;
        padding: 8px 25px;
        /*margin-left: 30px;*/
        color: #fff;
    }

    /*.navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            color: #fff;
            background: #4d4c4c;
        }*/

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        /*left: 30px;*/
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        width: 100%;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 15px;
            text-transform: none;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #ef4136;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #3c4133;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(34, 36, 29, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #3c4133;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #4b987e;
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #4b987e;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 65vh;
    background: url("../img/hero-bg.jpg") top center;
    background-color: white;
    background-size: cover;
    position: relative;
    /*margin-bottom: -140px;*/
    z-index: 1;
    margin: 50px 0;
}

    #hero:before {
        content: "";
        background: rgb(255 255 255 / 85%);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }


.btn-get-started {
    font-family: "Roboto";
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 10px;
    transition: 0.5s;
    border: 2px solid #4d4c4c;
    /*text-transform: uppercase;*/
    color: white;
    background-color: #4d4c4c;
    height: 38px;
    width: auto !important;
}



@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 100vh;
    }

        #hero h1 {
            font-size: 28px;
            line-height: 36px;
        }

        #hero h2 {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 30px;
        }

        #hero .hero-container {
            padding: 0 15px;
        }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
    /*   box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
    background: #fff;*/
}

.about .count-box {
    width: 100%;
    text-align: center;
}

    .about .count-box i {
        display: block;
        font-size: 48px;
        color: #4b987e;
        float: left;
        line-height: 0;
    }

    .about .count-box span {
        font-size: 28px;
        line-height: 24px;
        display: block;
        font-weight: 700;
        color: #646c55;
        margin-left: 60px;
    }

    .about .count-box p {
        font-family: "Roboto";
        font-weight: 500;
        font-size: 21px;
        color: #646c55;
        padding: 0px 24px;
        /* height: 70px;*/
    }

    .about .count-box label {
        font-weight: bolder;
    }

    .about .count-box a {
    }




.about .content {
    font-size: 15px;
}

    .about .content h3 {
        font-weight: 700;
        font-size: 24px;
        color: #3c4133;
    }

    .about .content ul {
        list-style: none;
        padding: 0;
    }

        .about .content ul li {
            padding-bottom: 10px;
            padding-left: 28px;
            position: relative;
        }

        .about .content ul i {
            font-size: 24px;
            color: #4b987e;
            position: absolute;
            left: 0;
            top: -2px;
        }

    .about .content p:last-child {
        margin-bottom: 0;
    }

.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#4b987e 50%, rgba(148, 192, 69, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

    .about .play-btn::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 100;
        transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .about .play-btn::before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
        -webkit-animation: pulsate-btn 2s;
        animation: pulsate-btn 2s;
        -webkit-animation-direction: forwards;
        animation-direction: forwards;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: steps;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid rgba(148, 192, 69, 0.7);
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    .about .play-btn:hover::after {
        border-left: 15px solid #4b987e;
        transform: scale(20);
    }

    .about .play-btn:hover::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 200;
        -webkit-animation: none;
        animation: none;
        border-radius: 0;
    }

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding-bottom: 60px;
    overflow: hidden;
}

.section-bg {
    background-color: #f9fbf4;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 20px;
        padding-bottom: 0;
        font-family: "Poppins", sans-serif;
        color: #646c55;
    }

    .section-title p {
        margin-bottom: 0;
    }


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: white;
    padding: 0 0 30px 0;
    color: #4d4c4c;
    font-size: 14px;
}

    #footer .footer-top {
        background: White;
        padding: 60px 0 30px 0;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 26px;
                margin: 0 0 10px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 600;
                letter-spacing: 3px;
                color: #4d4c4c;
            }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: "Roboto";
                color: #4d4c4c;
            }

        #footer .footer-top .social-links a {
            display: inline-block;
            background: #3c4133;
            color: #4d4c4c;
            line-height: 1;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: underline;
        }

            #footer .footer-top .social-links a i {
                line-height: 0;
                font-size: 16px;
            }

            #footer .footer-top .social-links a:hover {
                background: #4b987e;
                color: #4d4c4c;
                text-decoration: underline;
            }

        #footer .footer-top h4, #footer .footer-top h1 {
            font-size: 20px;
            font-weight: bold;
            color: #4d4c4c;
            /*text-transform: uppercase;*/
            position: relative;
            padding-bottom: 12px;
        }

            #footer .footer-top h4::before,
            #footer .footer-top h4::after,
            #footer .footer-top h1::before,
            #footer .footer-top h1::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                height: 2px;
            }

            #footer .footer-top h4::before, #footer .footer-top h1::before {
                right: 0;
                background: #4d4c4c;
            }

            #footer .footer-top h4::after, #footer .footer-top h1::after {
                background: #ef4136;
                width: 60px;
                left: 48%;
            }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 5px 0 0 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul li {
                    padding: 0 0 15px 0;
                }

                #footer .footer-top .footer-links ul a {
                    color: #4d4c4c;
                    transition: 0.3s;
                    font-size: 1rem;
                    font-weight: 600;
                    text-decoration: underline;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: #ef4136;
                        text-decoration: underline;
                    }

        #footer .footer-top .footer-contact {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-contact p {
                line-height: 26px;
            }

        #footer .footer-top .footer-newsletter {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-newsletter input[type=email] {
                border: 0;
                padding: 6px 8px;
                width: 65%;
                border-radius: 4px 0 0 4px;
            }

            #footer .footer-top .footer-newsletter input[type=submit] {
                background: #4b987e;
                border: 0;
                border-radius: 0 4px 4px 0;
                width: 35%;
                padding: 6px 0;
                text-align: center;
                color: #fff;
                transition: 0.3s;
                cursor: pointer;
            }

                #footer .footer-top .footer-newsletter input[type=submit]:hover {
                    background: #789d35;
                }

    #footer .copyright {
        text-align: center;
        padding-top: 30px;
    }

    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: #fff;
    }

.pr-pl-0 {
    padding-right: 0px;
    padding-left: 0px;
}

.form-control {
    border-radius: 0px;
    border: 1px solid #4d4c4c;
    /*margin-bottom: 15px;*/
}

.form-group {
    margin-bottom: 10px;
}

.form-select {
    border-radius: 0px;
    /*padding: 0.375rem 1rem 0.375rem 0.75rem !important;*/
    /*background-position: right 0.2rem center;*/
    border: 1px solid #4d4c4c;
}



.flagLogo {
    height: 35px;
    border-radius: 100%;
}

label {
    color: #4d4c4c;
}

.SearchSection {
    padding-top: 150px;
    padding-bottom: 100px;
}

.QS_List {
    columns: 3;
    list-style-type: none;
    text-align: center
}

.block {
    text-align: center;
    vertical-align: middle;
}

.circle {
    border-radius: 100%;
    color: #4d4c4c;
    height: 350px;
    width: 350px;
    font-size: 30px;
    font-family: "Roboto" !important;
    display: table;
    margin-top: 20px;
}

    .circle p {
        vertical-align: middle;
        display: table-cell;
        padding: 0 10px;
        font-weight: bold;
    }

.circle1 {
    background: #ebba9c;
}

.circle2 {
    background: #F2E394;
}

.circle3 {
    background: #F3F0D7;
}



.BigText-bg {
    background-color: #c4c4c4;
    margin: 100px 0;
    height: 70vh
}

.BiggerText {
    display: block;
    margin: 80px 0;
    font-family: "Roboto" !important;
    font-size: 90px;
    font-weight: 700;
    color: #4d4c4c;
    position: relative;
    /*text-shadow: 1px 1px 1px #919191, 1px 2px 1px #919191, 1px 3px 1px #919191, 1px 4px 1px #919191, 1px 5px 1px #919191, 1px 6px 1px #919191, 1px 7px 1px #919191, 1px 8px 1px #919191, 1px 9px 1px #919191, 1px 10px 1px #919191, 1px 18px 6px rgba(16,16,16,0.4), 1px 22px 10px rgba(16,16,16,0.2), 1px 25px 35px rgba(16,16,16,0.2), 1px 30px 60px rgba(16,16,16,0.4);*/
}

.BiggestText {
    display: block;
    margin: -15px 0 0 0;
    font-family: "Roboto" !important;
    font-size: 300px;
    font-weight: 700;
    color: #4d4c4c;
    position: relative;
    /*text-shadow: 1px 1px 1px #919191, 1px 2px 1px #919191, 1px 3px 1px #919191, 1px 4px 1px #919191, 1px 5px 1px #919191, 1px 6px 1px #919191, 1px 7px 1px #919191, 1px 8px 1px #919191, 1px 9px 1px #919191, 1px 10px 1px #919191, 1px 18px 6px rgba(16,16,16,0.4), 1px 22px 10px rgba(16,16,16,0.2), 1px 25px 35px rgba(16,16,16,0.2), 1px 30px 60px rgba(16,16,16,0.4);*/
}

.BigText {
    display: block;
    margin: 101px 0;
    font-family: "Roboto" !important;
    font-size: 40px;
    font-weight: 700;
    color: #4d4c4c;
    position: relative;
    line-height: 54.5px;
    /*text-shadow: 1px 1px 1px #919191, 1px 2px 1px #919191, 1px 3px 1px #919191, 1px 4px 1px #919191, 1px 5px 1px #919191, 1px 6px 1px #919191, 1px 7px 1px #919191, 1px 8px 1px #919191, 1px 9px 1px #919191, 1px 10px 1px #919191, 1px 18px 6px rgba(16,16,16,0.4), 1px 22px 10px rgba(16,16,16,0.2), 1px 25px 35px rgba(16,16,16,0.2), 1px 30px 60px rgba(16,16,16,0.4);*/
}

.LinkImg {
    height: 80px;
    margin-bottom: 20px;
}

.count-box .btn-get-started {
    font-family: "Roboto";
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    transition: 0.5s;
    border: 2px solid #4d4c4c;
    /*text-transform: uppercase;*/
    color: white;
    background-color: #4d4c4c;
    height: 38px;
    width: 150px;
}

    .count-box.btn-get-started:hover {
        background: #4d4c4c;
    }

.LayOutRegister {
    margin: 60px 0;
    background: #f1efef
}

    .LayOutRegister h5, .LayOutRegister p span {
        font-weight: bold;
        color: black;
        text-align: center;
        margin: 20px 0;
    }




#Browse h4, #Browse h1 {
    padding-top: 150px;
    padding-bottom: 50px;
    color: #4d4c4c;
    font-size: 20px;
    font-weight: bold;
}

#Browse form {
    padding-bottom: 150px;
}

#Results {
    padding-top: 100px;
    padding-bottom: 150px;
}

    #Results p {
        font-size: 14px !important;
    }

    #Results h1 {
        padding-bottom: 10px;
        padding-top: 40px;
        color: #4d4c4c;
        font-size: 20px;
        font-weight: bold;
    }



#searchJobs .JobCard {
    border: 1px solid black;
    margin: 24px 20px 10px 20px;
    padding: 10px 20px;
}

#searchJobs h2 {
    font-size: 19px;
    color: #4d4c4c;
    font-weight: 600;
}

#searchJobs h3 {
    font-size: 17px;
    color: #4d4c4c;
}

#searchJobs h4 {
    font-size: 15px;
    font-weight: 600;
}

#searchJobs p {
    font-size: 13px;
    color: #4d4c4c;
}

    #searchJobs p span {
        font-size: 13px;
        color: #4d4c4c;
        font-weight: bold;
    }

#searchJobs a:hover {
    color: #4d4c4c;
}



.LoadButton .btn-get-started:hover {
    color: white;
}

.align-v {
    transform: scale(1, 0.94);
    line-height: 460px;
}

.SiteBlue {
    color: #4d4c4c;
}

.SiteOrange {
    color: #ef4136;
}

#region {
    padding-bottom: 50px;
}

    #region h1 {
        color: #4d4c4c;
        text-align: center;
        font-weight: bold;
        padding-bottom: 20px;
        font-size: 1.5rem !important;
    }

    #region p {
        font-size: 1.1rem !important;
        color: #4d4c4c;
        text-align: center;
        font-weight: bold;
        padding-bottom: 20px;
    }

    #region img {
        height: 30px;
    }

    #region .QS_List {
        text-align: left;
    }

    #region li {
        padding-bottom: 10px;
    }

    #region span {
        text-decoration: underline;
        font-weight: 600;
        padding-left: 5px;
    }

.hidden {
    display: none;
}


.SkyBlueColor {
    background: #cfd3d9
}



#Contact {
    padding-top: 70px;
    padding-bottom: 150px;
}

    #Contact p {
        font-size: 14px !important;
    }

        #Contact p span {
            font-weight: bold;
        }

    #Contact h4, #Contact h1, #Contact #Heading {
        padding-bottom: 25px;
        color: #4d4c4c;
        font-size: 20px;
        font-size: 20px;
        font-weight: bold;
    }

    #Contact .title {
        font-size: 18px;
        color: #4d4c4c;
        font-weight: bold;
    }

    #Contact .ContactLinks a {
        margin: 5px 0 5px 0;
    }


    #Contact h5 {
        font-size: 18px;
        color: #4d4c4c;
        font-weight: bold
    }

    #Contact .btn-get-started {
        width: 100% !important;
    }

#_AboutLink a:hover {
    color: #4d4c4c !important;
}

#About p {
    font-size: 18px !important;
    color: black;
}

#descSearch {
    padding-top: 100px;
    border-bottom: solid 1px #4d4c4c;
    padding-bottom: 30px;
}

#Description {
    padding-top: 70px;
    padding-bottom: 70px;
}

    #Description h1 {
        color: black;
        font-size: 30px;
        text-align: right
    }

    #Description h2 {
        font-size: 20px;
        text-align: right
    }

    #Description h3 {
        color: black;
        font-size: 18px;
        text-align: right
    }

    #Description h4 {
        padding-top: 25px;
        padding-bottom: 25px;
        color: #4d4c4c;
        font-size: 20px;
        font-weight: bold;
    }

    #Description h5 {
        color: black;
        font-size: 20px;
        font-weight: bold;
    }



    #Description p {
        color: black;
    }

    #Description a:hover {
        color: White !important;
    }

#Register {
    padding-top: 100px;
    padding-bottom: 50px;
}

    #Register h1 {
        color: #4d4c4c;
        font-size: 20px;
        text-align: center;
        font-weight: bold;
        padding-bottom: 50px;
    }

    #Register label {
        padding-top: 7px;
        font-weight: 500;
        font-size: 15px;
        border-radius: 0px;
    }


    #Register p {
        color: black;
        font-size: 10px;
        font-weight: 500;
    }

    #Register a {
        text-decoration: underline !important;
    }

    #Register h2 {
        color: black;
        font-size: 18px;
        text-align: center;
        font-weight: 500;
    }

#Login {
    padding-top: 100px;
    padding-bottom: 100px;
}

    #Login h1 {
        color: #4d4c4c;
        font-size: 20px;
        text-align: center;
        font-weight: bold;
        padding-bottom: 50px;
    }

    #Login label {
        padding-top: 7px;
        font-weight: 500;
        font-size: 15px;
    }

    #Login p {
        color: black;
    }

        #Login p a {
            color: black;
            font-size: 12px;
            font-weight: bold;
        }



        #Login p span {
            color: #444444;
            font-size: 20px;
            text-align: center;
            font-weight: bold;
            padding-bottom: 50px;
        }

    #Login h2 {
        color: black;
        font-size: 18px;
        text-align: center;
        font-weight: 500;
    }

        #Login h2 a {
            text-decoration: underline !important;
        }

.FooterNavbar {
    text-align: center;
    margin-bottom: 50px;
}

    .FooterNavbar a {
        display: block;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        font-family: "Roboto";
        font-size: 15px;
        font-weight: 600;
        color: #4d4c4c;
        white-space: nowrap;
        transition: 0.3s;
    }

        .FooterNavbar a i, .FooterNavbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .FooterNavbar a:hover, .FooterNavbar a:focus, #Login p a:hover {
            color: #ef4136 !important;
        }

.btn-get-started:hover, .btn-get-started:focus {
    border-color: #ef4136 !important;
    background-color: #ef4136 !important;
    color: white;
}

/*.navbar .getstarted:hover, .navbar .getstarted:focus {
    border-color: #ef4136 !important;
    background-color: #ef4136 !important;
}*/

.ShowM_P {
    display: none;
}

.form-select {
    padding: 0.375rem 1rem 0.375rem 0.75rem;
    background-position: right 0.3rem center;
}


/*For mobile Portrait*/
@media screen and (min-width:320px) and (max-width: 480px) and (orientation: portrait) {
    #TagLine {
        text-align: center !important;
    }

        #TagLine h1 {
            font-size: 20px !important;
        }

    #Register p {
        font-size: 14px;
    }

    .circle {
        height: 335px;
        width: 335px;
    }

    .BiggerText {
        font-size: 60px;
    }

    .align-v {
        line-height: 80px;
    }

    .QS_List {
        columns: 2;
    }

    /*  .RegBtnMB {
        margin-bottom: 2.8rem !important;
    }*/

    .custom-c .navbar-default {
        width: 100% !important;
        /* border-radius: 20px; */
    }

    .custom-c .navbar-fixed-top, .custom-c .navbar-fixed-bottom {
        right: 0 !important;
        left: 0 !important;
    }

    .about .count-box p {
        padding: 0px 0px;
        height: 120px;
    }


    .HideM_P {
        display: none;
    }

    .ShowM_P {
        display: block !important;
    }

    #Description {
        padding-top: 30px;
    }

        #Description h5 {
            padding-top: 50px;
        }

    .form-select {
        padding: 0.375rem 0.5rem 0.375rem 0.2rem;
        background-position: right 0rem center;
    }
}
/*For mobile Landscape*/
@media screen and (min-width: 481px) and (max-width: 926px) and (orientation: landscape) {
    .form-select {
        padding: 0.375rem 0.5rem 0.375rem 0.2rem;
        background-position: right 0rem center;
    }

    .circle {
        height: 230px;
        width: 230px;
        font-size: 23px;
    }

    #header .logo img {
        max-height: 50px;
    }

    #header {
        height: 50px;
    }

    #Register p {
        font-size: 14px;
    }

    .HideM_L {
        display: none;
    }

    #hero {
        height: 100vh;
    }

    .BiggerText {
        font-size: 48px;
    }

    .BiggestText {
        font-size: 240px;
    }

    .align-v {
        transform: scale(1, 1.2);
        line-height: 415px;
    }

    .BigText {
        font-size: 30px;
    }

    .QS_List {
        columns: 2;
    }


    .custom-c .navbar-default {
        width: 90% !important;
        /* border-radius: 20px; */
    }

    .custom-c .navbar-fixed-top, .custom-c .navbar-fixed-bottom {
        right: 0 !important;
        left: 5% !important;
    }


    #Results {
        padding-top: 100px;
        padding-bottom: 150px;
    }

    .container, .container-sm {
        max-width: 700px !important;
    }

    #Description h1 {
        font-size: 18px;
        font-weight: bold;
    }

    #Description h2 {
        font-size: 16px;
    }

    #Description h3 {
        font-size: 16px;
    }

    .about .count-box p {
        padding: 0px 0px;
        height: 50px;
    }
}
/*For Tab IPad*/
@media screen and (min-width: 765px) and (max-width: 1280px) and (orientation: portrait) {
    .HideM_L {
        display: none;
    }

    .about .count-box p {
        padding: 0px 0px;
        height: 50px;
    }

    .circle {
        height: 240px;
        width: 240px;
        font-size: 24px;
    }

    #hero {
        height: 40vh;
    }

    .BiggerText {
        font-size: 56px;
    }

    .container, .container-sm {
        max-width: 750px;
    }
}
/*For Tab IPad*/
@media screen and (min-width: 1024px) and (orientation: landscape) {
    .circle {
        height: 300px;
        width: 300px;
    }

    .BiggerText {
        font-size: 77px;
    }

    .align-v {
        line-height: 430px;
    }

    .BiggestText {
        font-size: 260px;
    }

    #hero {
        height: 56vh;
    }

    .about .count-box p {
        height: 80px;
    }

    .FooterNavbar a {
        padding: 10px 0 10px 0px;
    }
}
/*Mac book 16 Apple iMac 24"*/
@media screen and (min-width: 1728px) and (max-width: 2048px) {
    #hero {
        height: 35vh !important;
    }
}

#TagLine h1 {
    font-family: "Roboto";
    color: #ef4136;
    font-weight: bold;
}

    #TagLine h1 span {
        color: #4d4c4c;
    }


h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h6, p, .p, span, .span {
    text-wrap: balance;
}

.nice-select span {
    text-wrap: nowrap !important;
}

.navbar-mobile ul {
    display: table;
    background-color: white;
    left: auto;
}

.navbar-mobile a, .navbar-mobile a:focus {
    color: #4d4c4c;
    padding: 5px 20px;
}

    .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
        color: #ef4136;
    }

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #ef4136;
}

.navbar-mobile .dropdown ul {
    margin: 10px 0px;
}

    .navbar-mobile .dropdown ul a {
        padding: 5px 10px;
    }