@font-face 
{
    font-family: "Agenda-black";
    src: url("/blog/res/fonts/Agenda/ufonts.com_agenda-black.ttf"); 
}
body
{
    background-color: #f3f3f3;
    color: #1E1E1E;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    padding-top: 140px;
}
body .container 
{
    max-width: 1240px;
}

/* Start General */
p
{
    color: #0A0A0A;
}
.font-bold
{
    font-weight: 600;
}
.category
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.category li a
{
    display: block;
    background-color: #366AFF;
    color: #fff;
    padding: 7px 10px;
    font-size: 10px;
    margin-right: 5px;
    margin-bottom: 10px;
    border-radius: 20px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .2s ease-in-out;
}
.category li a:hover
{
    background: #FFF;
    color: #111;
}
.card h2
{
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 20px;
}
.card .meta ul
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.card .meta ul li
{
    margin-right: 10px;
}
.card .meta ul li:last-of-type
{
    margin-right: 0;
}
.card .meta ul li,
.card .meta ul li a
{
    display: flex;
    align-items: center;
    color: #818181;
    font-size: 12px;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.card .meta ul li a:hover
{
    color: #111111;
}
.card .meta ul li i,
.card .meta ul li img
{
    margin-right: 5px;
}
.card .meta ul li img
{
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
/* End General */

/* Start Top Bar */
.topbar
{
    background-color: #E8E8E8;
    padding: 11px 15px;
}
.topbar ul
{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
}
.topbar ul li
{
    margin: 0 4px;
}
.topbar ul li a
{
    display: block;
    font-size: 12px;
    color: #0A0A0A;
    transition: all .3s ease-in-out;
    text-decoration: none;
}
.topbar ul li a:hover 
{
    color: #1a4caf;
}
/* End Top Bar */

/* Start Menu */
.menu 
{
    background: #fff;
    box-shadow: 0 3px 5px 0 rgba(0, 1, 1, .1);
}
.menu nav
{
    padding: 0;
}
.menu nav .navbar-brand 
{
    padding: 0;
}
.menu nav .navbar-brand img
{
    height: 100px;
}
.menu nav .nav-item .nav-link
{
    font-size: 16px;
    font-weight: 600;
    color: #0A0A0A;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.menu nav .navbar-nav > .nav-item .nav-link:hover,
.menu nav .navbar-nav > .nav-item .nav-link.active
{
    background: none;
    color: #009CFF;
}
.menu nav .nav-item.dropdown.open .nav-link,
.menu nav .nav-item.dropdown .nav-link:hover
{
    background: rgba(10, 10, 10, 0.05);
    color: #0A0A0A;
}
.menu nav .nav-item .dropdown-menu
{
    min-width: 230px;
    padding: 20px;
    border: none;
    box-shadow: 0 3px 5px rgba(0,0,0,.1);
    border-radius: 0;
}
.menu nav .nav-item .dropdown-menu .dropdown-item
{
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    margin-bottom: 10px;
    color: #0A0A0A;
    background: none;
    transition: all 0.2s ease-in-out
}
.menu nav .nav-item .dropdown-menu .dropdown-item:last-of-type
{
    margin-bottom: 0;
}
.menu nav .nav-item .dropdown-menu .dropdown-item:hover
{
    padding-left: 5px;
    color: #009CFF;
}
/* End Menu */

/* Start Aside */
.sidebar-overlay 
{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    content: "";
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease-in-out;
    cursor: pointer;
}
body.open-sidebar .sidebar-overlay 
{
    opacity: 1;
    visibility: visible;
}
body.open-sidebar.lock 
{
    overflow: hidden !important;
}
aside
{
    width: 360px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #f3f3f3;
    display: block;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9999;
    -webkit-transform: translate3D(360px, 0, 0);
    -ms-transform: translate3D(360px, 0, 0);
    transform: translate3D(360px, 0, 0);
    -webkit-transition: visibility 1ms linear 0.2s, -webkit-transform 0.2s ease;
    transition: visibility 1ms linear 0.2s, -webkit-transform 0.2s ease;
    transition: transform 0.2s ease, visibility 1ms linear 0.2s;
    transition: transform 0.2s ease, visibility 1ms linear 0.2s, -webkit-transform 0.2s ease;
}
aside .sidebar-close 
{
    background: #fff;
    color: rgba(51, 51, 51, 0.5);
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 3px 5px 0 rgba(0, 1, 1, 0.1);
    transition: all 0.25s ease-in-out;
}
aside .sidebar-close:hover 
{
    color: #333;
}
aside .social
{
    background: #fff;
    padding: 30px;
    margin: 30px;
    box-shadow: 0 3px 5px 0 rgba(0, 1, 1, .1);
}
aside .social h4
{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}
aside .social ul
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}
aside .social ul li a
{
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
aside .social ul li a.twitter
{
    background: #4DA7DE;
}
aside .social ul li a.linkedin
{
    background: #3371b7;
}
aside .social ul li a.instagram
{
    background: #000;
}
aside .social ul li a.facebook
{
    background: #3e5b98;
}
aside .social ul li a.youtube
{
    background: #e02a20;
}
aside .sidebar-menu
{
    background: #fff;
    padding: 20px 30px;
    margin: 30px;
}
aside .sidebar-menu ul 
{
    margin-bottom: 0;
}
aside .sidebar-menu ul li a
{
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #1E1E1E;
    padding: 10px 0;
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
    transition: all .2s ease-in-out;
    text-decoration: none;
}
aside .sidebar-menu ul li:last-of-type a
{
    border-bottom: none;
}
aside .sidebar-menu ul li a:hover
{
    color: #366AFF;
    padding-left: 5px;
}
/* End Aside */

/* Start Intro Slider */
.intro-slider
{
    margin-bottom: 30px;
}
.intro-slider .item
{
    height: 500px;
}
.intro-slider .item
{
    background-size: cover !important;
}
.intro-slider .item:hover .overlay
{
    background: rgba(0, 0, 0, .25);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}
.intro-slider .item .overlay:before,
.intro-slider .item .overlay:after
{
    content: "";
    top: 0;
    position: absolute;
    height: 100%;
    z-index: 2;
}
.intro-slider .item .overlay:before
{
    width: 35%;
    left: 0;
    background: -moz-linear-gradient(left,#000 0,rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(left,#000 0,rgba(0,0,0,0) 100%);
    background: -webkit-gradient(linear,left top,right top,color-stop(0,#000),to(rgba(0,0,0,0)));
    background: linear-gradient(to right,#000 0,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=1);
}
.intro-slider .item .overlay:after
{
    width: 20%;
    right: 0;
    background: -moz-linear-gradient(left,rgba(0,0,0,0) 0,#000 100%);
    background: -webkit-linear-gradient(left,rgba(0,0,0,0) 0,#000 100%);
    background: -webkit-gradient(linear,left top,right top,color-stop(0,rgba(0,0,0,0)),to(#000));
    background: linear-gradient(to right,rgba(0,0,0,0) 0,#000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=1);
}
.intro-slider .item .card
{
    background: none;
    border: none;
    position: relative;
    top: 75px;
    left: 90px;
    z-index: 99;
    width: 480px;
    height: 80%;
}
.intro-slider .item .card h2 a
{
    color: #fff;
    text-decoration: none;
}
.intro-slider .item .card p
{
    color: #fff;
}
.intro-slider .item .card .meta
{
    position: absolute;
    bottom: 30px;
}
.intro-slider .item .card .meta ul li,
.intro-slider .item .card .meta ul li a
{
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
}
.intro-slider .owl-theme .owl-nav
{
    position: absolute;
    bottom: 45px;
    right: 90px;
}
.intro-slider .owl-theme .owl-nav .owl-prev,
.intro-slider .owl-theme .owl-nav .owl-next
{
    height: 40px;
    width: 40px;
    background: rgba(255, 255, 255, .5);
    border-radius: 50%;
    box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 3px;
    transition: all .2s ease-in-out;
    outline: none;
}
.intro-slider .owl-theme .owl-nav .owl-prev:hover,
.intro-slider .owl-theme .owl-nav .owl-next:hover
{
    background: #fff;
}
.intro-slider .owl-theme .owl-nav span
{
    font-size: 24px;
    font-weight: bold;
    color: #5e5e5e;
    height: 40px;
}
/* End Intro Slider */

/* Start Features Sliders */
.features-sliders .slider-title
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.features-sliders .slider-title h3
{
    font-size: 22px;
    font-weight: bold;
    color: #111;
    margin-bottom: 0;
}
.features-sliders .slider-title .owl-controls
{
    min-width: 55px;
    margin-left: 10px;
}
.features-sliders .slider-title .owl-controls div
{
    height: 25px;
    width: 25px;
    background: rgba(17, 17, 17, 0.1);
    color: #111;
    font-size: 9px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all .2s ease-in-out;
    cursor: pointer;
}
.features-sliders .slider-title .owl-controls div:hover
{
    background: rgba(17,17,17,0.3);
}
.features-sliders .card
{
    background: #fff;
    margin-bottom: 30px;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
    box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
}
.features-sliders .card .card-img-top
{
    position: relative;
    display: block;
}
.features-sliders .card .card-img-top:after
{
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all .2s ease-in-out;
}
.features-sliders .card .card-img-top:hover:after
{
    background: rgba(0, 0, 0, .2);
}
.features-sliders .card .card-img-top img
{
    -o-object-fit: cover;
    object-fit: cover;
    height: 150px;
    width: 100%;
    border-radius: 0;
}
.features-sliders .card .card-title a
{
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #111;
    margin-bottom: 20px;
    min-height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all .2s ease-in-out;
    text-decoration: none;
    line-height: 1.364;
}
.features-sliders .card .card-title:hover a
{
    color: #366AFF;
}
.features-sliders .card .card-body 
{
    padding: 25px 30px;
}
.features-sliders .card .card-body ul li img
{
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 5px;
}
.applying-college .card .card-title a
{
    margin-bottom: 10px;
    min-height: auto;
    -webkit-line-clamp: 3;
}
/* End Features Sliders */

/* Start Contact Us Form */
.contact-us-form
{
    padding-top: 30px;
}
.contact-us-form form .form-group
{
    margin-bottom: 30px;
}
.contact-us-form form .form-group label
{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-us-form form .form-group input[type="text"],
.contact-us-form form .form-group input[type="email"],
.contact-us-form form .form-group select,
.contact-us-form form .form-group textarea
{
    background-color: #FAFCFE;
    color: #4A4A68;
    height: 48px;
    font-size: 18px;
    border: 1px solid #ECEFF4;
    border-radius: 4px;
    -webkit-box-shadow: inset 0px 2px 2px -1px rgba(74, 74, 104, 0.1);
            box-shadow: inset 0px 2px 2px -1px rgba(74, 74, 104, 0.1);
}
.contact-us-form form .form-group textarea
{
    min-height: 125px;
}
.contact-us-form form .form-group input::-webkit-input-placeholder,
.contact-us-form form .form-group textarea::-webkit-input-placeholder
{
    color: #4A4A68
}
.contact-us-form form .form-group input::-moz-placeholder, 
.contact-us-form form .form-group textarea::-moz-placeholder
{
    color: #4A4A68
}
.contact-us-form form .form-group input:-ms-input-placeholder, 
.contact-us-form form .form-group textarea:-ms-input-placeholder
{
    color: #4A4A68
}
.contact-us-form form .form-group input::-ms-input-placeholder, 
.contact-us-form form .form-group textarea::-ms-input-placeholder
{
    color: #4A4A68
}
.contact-us-form form .form-group input::-webkit-input-placeholder, 
.contact-us-form form .form-group textarea::-webkit-input-placeholder
{
    color: #4A4A68
}
.contact-us-form form .form-group input::-moz-placeholder, 
.contact-us-form form .form-group textarea::-moz-placeholder
{
    color: #4A4A68
}
.contact-us-form form .form-group input:-ms-input-placeholder, 
.contact-us-form form .form-group textarea:-ms-input-placeholder
{
    color: #4A4A68
}
.contact-us-form form .form-group input::-ms-input-placeholder, 
.contact-us-form form .form-group textarea::-ms-input-placeholder
{
    color: #4A4A68
}
.contact-us-form form .form-group input::placeholder,
.contact-us-form form .form-group textarea::placeholder
{
    color: #4A4A68
}
.contact-us-form form .form-group input:-ms-input-placeholder,
.contact-us-form form .form-group textarea:-ms-input-placeholder
{
    color: #4A4A68
}
.contact-us-form form .submit-button button.btn
{
    background: #366AFF;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 30px;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 3px 5px 0 rgba(0,0,0,.1), inset 0 0 0 transparent;
    transition: all .2s ease-in-out;
}
.contact-us-form form .submit-button button.btn:hover
{
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.3), inset 0 0 230px rgba(0,0,0,.1);
}
.contact-us-form form .submit-button p
{
    font-size: 14px !important;
    font-style: italic;
}
.contact-us-form form .submit-button p a
{
    color: #050318;
}
/* End Contact Us Form */

/* Start Privacy Policy */
.privacy-policy
{
    background: #fff;
    padding: 40px 60px;
    margin: 30px 70px;
    box-shadow: 0 3px 5px 0 rgba(0, 1, 1, .1);
}
.privacy-policy h2
{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}
/* End Privacy Policy */

/* Start Footer */
footer
{
    background: #fff;
    padding: 35px 0;
    margin-top: 30px;
    opacity: .8;
}
footer p
{
    font-size: 12px;
    margin-bottom: 0;
    text-align: center;
}
/* End Footer */

/* Start Scroll Top */
.scroll-top
{
    background-color: #366AFF;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    position: fixed;
    right: 80px;
    bottom: 80px;
    z-index: 999;
    display: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
}
.scroll-top:hover
{
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.3), inset 0 0 230px rgba(0,0,0,.1);
}
/* End Scroll Top */

/* Start Cookies Notice */
.cookies-notice 
{
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 20px;
    background: rgba(0 ,0 ,0 , 0.7);
    z-index: 9999999999;
}
.cookies-notice p
{
    color: #eee;
    font-size: 14px;
    margin-bottom: 0;
}
.cookies-notice p a
{
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}
.cookies-notice .accept-button
{
    text-align: right;
}
.cookies-notice .accept-button button
{
    padding: 8px 40px;
    font-weight: bold;
    border-radius: 0;
}
/* End Cookies Notice */