:root {
    --img-ph-color: #e6e7e8;
    --blue: #0f2c52;
    --grey: #808080;
    --orange: #F78D2A;
    --yellow: #ecba4a;
    --light-grey: #e6e7e8;
    --dark-grey: #231f20;
    --red: red;
}

/* FONTS */
@font-face {
  font-family: "Gotham Bold";
  font-style: normal;
  font-weight: 600;
  src: url('fonts/Gotham Bold Regular.ttf') format("truetype");
}

@font-face {
  font-family: "Gotham Medium";
  font-style: normal;
  font-weight: 400;
  src: url(fonts/Gotham-Medium.ttf) format("truetype");
}

@font-face {
  font-family: "Gotham Rounded Book";
  font-style: normal;
  font-weight: 400;
  src: url(fonts/Gotham-Rounded-Book.ttf) format("truetype");
}

@font-face {
  font-family: "TW Cen Mt";
  font-style: normal;
  font-weight: 400;
  src: url(fonts/TwCenMTStd.ttf) format("truetype");
}

html {
    margin: 0px !important;
    padding: 0px !important;
}

body {
    font-family: 'Gotham Medium', Arial, sans-serif;
    font-size: 18px;
    background-color: rgb(72, 76, 79);
    color: var(--grey);
}

.elementor, .elementor-widget-text-editor {
	font-family: 'Gotham Medium', Arial, sans-serif;
	font-size: 18px;
}

.elementor-element-daf5f4f {
	font-size: 12px;
}

.page-title, 
h2, 
h3, 
h4 {
    font-family: 'TW Cen Mt', Arial, sans-serif;
}

ul {
    list-style-type: square;
}

a {
    color: var(--blue);
}

/* UTILITY */
/* ------------------------------------- */
.blue {
    color: var(--blue);
}

.orange {
    color: var(--orange);
}

.yellow {
    color: var(--yellow);
}

.bg-blue {
    background-color: var(--blue);
}

.bg-orange {
    background-color: var(--orange);
}

.bg-yellow {
    background-color: var(--yellow);
}

.bg-red {
    background-color: var(--red);
}

.blue-border {
    border: 2px solid var(--blue);
}

.blue-border-thin {
    border: 1px solid var(--blue);
}

.orange-border {
    border: 2px solid var(--orange);
}

.yellow-border {
    border: 2px solid var(--yellow);
}

.yellow-bg {
    background-color: var(--yellow);
}

.blue-bg {
    background-color: var(--blue);
}

.orange-bg {
    background-color: var(--orange);
}



/* BOOSTRAP OVERIDES */
/* ------------------------------------- */
.form-control {
    background-color: rgb(240, 240, 240);
    border: 0;
    margin-top: 10px;
    border-radius: 0;
}

.btn {
    border-radius: 0;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
}


.btn-blue {
    background-color: var(--blue);
    color: var(--white);
}

.btn-blue:hover, .btn-blue:active {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-yellow {
    background-color: var(--yellow);
    color: var(--white);
}

.btn-yellow:hover, .btn-yellow:active {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-orange {
    background-color: var(--orange);
    color: var(--white);
}

.btn-orange:hover, .btn-orange:active {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-wide {
    padding-left: 100px;
    padding-right: 100px;
}



.row {
    padding-left: 50px;
    padding-right: 50px;
}

.content {
    background-color: white;
}

.section {
    padding: 0px 30px;
    margin: 50px 0px 0px 0px;
}

/* TOP NAV */
/* ------------------------------------- */
.menu-right, .menu-left {
    display: inline-block;
}

.navbar {
    padding: 0px;
    width: 100%;
}

.navbar-brand.col-lg-2.col-6 {
    padding: 0px;
}

.top-nav {
    background-color: white;
    height: 85px;
}

.top-menu {
    width: 100%;
    background-color: white;
    list-style-type: none;
    padding-top: 25px;
    padding-left: 45px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    color: #808080;
    /* padding-bottom: 15px; */
}

.top-menu a {
    color: #808080;
    cursor: pointer;
}
.top-menu-selected a, .current-menu-item a {
    color: var(--blue);
}

.top-menu-selected, .current-menu-item {
    font-family: 'TW Cen Mt', Arial, sans-serif;
    color: var(--blue);
    font-weight: 700;
    font-size: 17px;
}

.top-menu li {
    display: inline-block;
}

.logo, .logo-inverse {
    margin-top: 10px;
    width: 170px;
    height: 60px;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu {
    min-width: 18rem;
}

/* END TOP NAV */

/* HERO */

/* ------------------------------------- */

.hero {
    background-color: transparent;
    height: 600px;
    padding-bottom: 60px;
}

.hero-content {
    height: 100%;
}

.hero-title {
    font-size: 48px;
    font-style: italic;
    font-weight: bold;
    height: 100%;
}

.hero-btn {
    color: var(--blue);
    background-color: white;
    font-weight: 600;
}

.hero-lead {
    font-size: 17px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 30px;
}

.news-snip {
    width: 250px;
    background-color: white;
    padding: 15px;
    margin-top: 100px;
    color: var(--grey);
    border-radius: 2px;
}

.news-snip-title {
    color: var(--blue);
    font-weight: bold;
    margin-bottom: 8px;
}

.news-snip-image {
    width: 100%;
    margin-bottom: 12px;
    background-color: var(--img-ph-color);
}

.news-snip-item {
    line-height: 100%;
    font-weight: 500;
    margin-bottom: 4px;
}

.news-snip-date {
    font-size: 12px;
    font-weight: 500;
}

.news-snip-more {
    text-align: right;
    color: var(--orange);
    font-size: 12px;
    font-weight: 500;
}

/* END HERO */

/* SERVICES */

/* ------------------------------------- */

.services {
    background-color: #FFF;
}

.service-container {
    padding: 25px;
    height: 100%;
    height: 560px;
    min-height: 560px;
    /*background: var(--light-grey);*/
}

/* IE 11 Fix */
html>body .service-container-home { 
    padding: 25px;
    height: auto;
    min-height: 560px;
    margin: 0px 0px;
}

.service-img {
    max-width: 100%;
    height: auto;
    min-width: 100%;
    width: 100%;
    max-height: 300px;
}

.img-container {
    background-color: blue;
}

.service-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

.service-body {
    font-size: 12px;
    font-weight: bold;
    color: var(--grey);
}

.service-body .elementor-text-editor {
    min-height: 300px;
}

.service-btn {
    padding: 10px;
	
}

.home .btn.btn-secondary.service-btn {
  display:block;
  margin-top:5px;  
	
}

.service-buttons {
    padding: 40px 15px 0px 15px;
}
/* END SERVICES */


/* SERVICES MODAL */
.services-modal .modal-content .close {
    font-size: 50px;
    padding-right: 10px;
    outline: none;
}

.services-modal .modal-content {
    border-radius: 0;
}
.services-modal .modal-body {
    padding: 0;
}

.services-modal-body {
    font-weight: 500;
}
.services-modal-section {
    font-size: 16px;
    padding-top: 30px;
    padding-bottom: 40px;
    padding-left: 30px;
    padding-right: 30px;

}
.services-modal {
    max-width: 1200px;
}

.services-modal .services-hero-img {
    margin-bottom: 20px;
    margin-left: 0px;
    margin-top: -30px;
    width: 100%;
}



/* END SERVICES MODAL */

/* ABOUT US */

/* ------------------------------------- */
.about-content {
    max-width: 80%;
}

.about p img {
    float: left;
    padding-right: 10px;
}

.about-body {
    padding: 15px 6px;
}

/*  END ABOUT US */

/* ADVENTURE */

/* ------------------------------------- */

.feature-container {
    padding: 27px;
    height: 530px;
}

.adventure-img {
    background: transparent url(../images/adventure.png) no-repeat top left;
    background-size: 100% 100%;
    width: 95%;
    padding: 270px 0px 20px 46px;
    height: auto;
}

.adventure-btn {
    color: var(--orange);
    border: 2px solid var(--orange);
    background-color: transparent;
    font-weight: 500;
}

.feature-title {
    text-transform: uppercase;
    font-weight: bold;
    margin: 20px 0px;
}

.feature-container .lead {
    font-size: 18px;
}
/*  END ADVENTURE */


/* CREATIVE */
/* ------------------------------------- */

.creative .lead {
    color: white;
    font-size: 14px;
    padding-right: 80px;
}

.creative-img {
    background: transparent url(../images/creative.png) no-repeat top left;
    background-size: 100% 100%;
    width: 95%;
    padding: 200px 0px 67px 0px;
    height: auto;
}

.creative-btn {
    color: var(--blue);
    border: 2px solid var(--blue);
    background-color: transparent;
    font-weight: 500;
}

/*  END CREATIVE */




/* CONTACT */
/* ------------------------------------- */

.contact, .contact-invert { 
    padding: 60px 10px;
}

.contact-title {
    text-align: center;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: bold;
}

.contact-btn {
    width: 100%;
    margin-top: 10px;
    background-color: var(--blue) !important;
    border: 0px  !important;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-invert {
    background-color: var(--light-grey);
}

.contact-invert .form-control::placeholder {
    color: var(--blue);
    font-weight: 500;
}

.contact-invert .form-control {
    background-color: white;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.gmap_canvas {
    width:100%;
    height:250px;
}

/*  END CONTACT */

/* FOOTER */
/* ------------------------------------- */

ul#footer_menu {
    padding: 0px;
    margin: 0px;
}

.footer-menu li {
    list-style: none;
}

.footer-menu li .nav-link {
    padding: 0px;
    margin: 0px;
}

.footer {
    background-color: var(--blue);
    height: 300px;
    padding-top: 70px;
    font-size: 14px;
    font-weight: 500;
}

.footer-title {
    text-transform: uppercase;
    font-size: 14px;
}

.footer-row {
    padding: 0;
    padding-bottom: 20px;
}


.social-media-item {
    padding-bottom: 5px;
    padding-top: 10px;
}

.social-media-item a {
    margin-left: 12px;
}

.footer a {
    color: white;
    text-decoration: underline;
}

/*  END FOOTER */


/*  HEROS */


.news-hero {
    background: white url('../../../../uploads/2019/03/news.png') no-repeat top left;
    height: 400px;
}
.contact-hero {
    background: white url('../../../../uploads/2019/03/contactus.png') no-repeat top left;
    height: 400px;
}
.service-hero {
    background: white url('../../../../uploads/2019/03/services-1.png') no-repeat;
    height: 400px;
}

.service-hero.sat {
    background: white url('../../../../uploads/2019/03/sat-header.png') no-repeat;
    height: 400px;
}

.service-hero.toefl {
    background: white url('../../../../uploads/2019/03/toefl-header.png') no-repeat;
    height: 400px;
}

.service-hero.toeic {
    background: white url('../../../../uploads/2019/03/toeic-header.png') no-repeat;
    height: 400px;
}

.about-hero {
    background: white url('../../../../uploads/2019/03/aboutus.png') no-repeat top left;
    height: 400px;
}
.faq-hero {
    background: white url('../../../../uploads/2019/03/faq.png') no-repeat top left;
    height: 400px;
}
.notfound-hero {
    background: var(--blue);
    height: 400px;
}

.text-darkgrey {
    color: var(--dark-grey) !important;
}

.hero-content, .faq-hero-content, .about-hero-content, .news-hero-content, .contact-hero-content, .service-hero-content {
    margin-left: 50px;
}

.faq-hero-title, .about-hero-title, .news-hero-title, .contact-hero-title, .service-hero-title {
    font-weight: bold;
    font-size: 48px;
    font-style: italic;
    margin-bottom: 0;
    margin-top: 42px;
}


/* NEWS PAGES */

.news-hero-lead {
    font-weight: 500;
}

.contact-hero-lead {
    font-weight: 500;
}

.elementor-widget-posts .elementor-post__read-more {
    color: var(--blue);
}

.elementor-widget-posts .elementor-post__title, .elementor-widget-posts .elementor-post__title a {
    color: var(--blue);
}

table td strong, table td b {
    color: black;
}


/* SERVICES PAGES */
/* ------------------------------------- */

.service-hero-lead {
    font-weight: 500;
}
.service-tabs {
    padding: 0;
    margin-top: 15px;
    height: 59px;
    background: var(--light-grey);
    border: 0;
}

.service-tab {
    border: 0;
    height: 60px;
    background: var(--light-grey);
}

.nav-link {
    padding: 0.5rem;
}

.menu-menu-1-container {
    text-align: right;
    width: 100%;
}

.menu-services-container .nav-tabs .nav-link:hover, 
.menu-services-container .nav-tabs .nav-link:focus {
    border-color: transparent;
}

.menu-services-container li.active {
	border-top: 1px solid var(--light-grey);
    border-left: 1px solid var(--light-grey);
    border-right: 1px solid var(--light-grey);
    height: 60px;
    background-color: white;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
} 

.nav-fill .nav-item {
	flex: 0 1 auto;
    text-align: center;
    padding: 1px;
    padding-top: 10px;
    width: 170px;
} 

.menu-services-container a {
    color: var(--grey);
    font-family: 'TW Cen Mt', Arial, sans-serif;
}

.page-template-services .page-content {
    padding-top: 35px;
    padding-bottom: 70px;
    border: 1px solid var(--light-grey);
    margin: 0px;
}

.service-tab .nav-link {
    height: 80px;
    padding-top: 30px;
    font-weight: bold;
    color: var(--grey);
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: transparent;
    border-color: #dee2e6 #dee2e6 #fff;
}

.page-content {
    margin-top: 25px;
    margin-bottom: 25px;
}

.page-title, 
article h2, 
article h3, 
article h4 {
    color: var(--blue);
    font-weight: 600;
    padding-top: 0px;
}

.page-title-main {
    margin-bottom: 60px;
    color: var(--blue);
    font-weight: 600;
}

.page-content-image {
    margin-top: 0px;
    margin-bottom: 0px;
    border: 2px solid var(--blue);
}

.page-extra-links {
    margin-top: 30px;
}

.page-extra-links a {
    text-decoration: underline;
    color: var(--blue);
    font-weight: 600;
}

.side-banner {
    margin-bottom: 10px;
}

.page-side-container {
    display: inline-block;
    padding: 26px 20px;
    margin-bottom: 10px;
}
.page-side-image {
    margin-top: 10px;
    margin-bottom: 10px;

}
.page-side-link {
    display: block;
    color: var(--grey);
    font-weight: 500;
}

.page-side-link {
    display: block;
    margin-bottom: 30px;
}

.side-container {
}

.side-banner {
    padding: 35px 15px;
    padding-bottom: 200px;
}

.side-banner .feature-title {
    font-weight: 600;
    font-size: 32px;
}

.side-banner .lead {
    font-weight: 500;
    font-size: 16px;
}

.news-preview {
    width: 240px;
    float: left;
    padding-top: 40px;
    margin-right: 50px;
}

.news-preview-image {
    margin-bottom: 20px;
}

.news-preview-title {
    font-size: 20px;
    font-weight: 500;
}

.news-preview-body {
    font-size: 14px;
}

.news-preview-more {
    font-weight: 500;
}

form.register .test-date-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

form.register .test-date-row .col {
    padding-left: 0px;
}

form.register > .row {
    padding-top: 20px;
}

img.your-academic-navigator {
    position: relative;
    top: -201px;
    right: -52%;
    width: 39%;
}

form.register label {
    color: var(--blue);
}

form.register input, form.register select {
    border: 1px solid var(--blue);
    background: white;
    color: var(--blue);
}

form.register input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--blue);
}
form.register input::-moz-placeholder { /* Firefox 19+ */
    color: var(--blue);
}
form.register input:-ms-input-placeholder { /* IE 10+ */
    color: var(--blue);
}
form.register input:-moz-placeholder { /* Firefox 18- */
    color: var(--blue);
}


/*
WIDGETS 
*/
.widget.border-bottom.widget_text {
    border: 0px !important;
}

.sidebar-1-area .widget, .footer-widgets .widget {
    padding: 0px;
}

h5.widget-title {
    display: none !important;
}

.yellow-bg.side-banner {
    background: var(--yellow) url(../images/widget-yellow-adventure.png) no-repeat bottom right;
    background-size: 300px;
}

/*
PARSLEY VALIDATION
*/
span.required {
    position: absolute;
    top: 15px;
    color: var(--red);
    left: 20px;
}

.parsley-errors-list.filled {
    margin: 0px;
    padding: 0px;
}

.parsley-type, .parsley-required {
    list-style: none;
    font-size: 12px;
    padding-left: 0px;
    padding: 2px 0px 0px 0px;
    color: var(--red);
}

.news-item figure {
    width: 300px;
    border: 1px solid var(--light-grey);
    padding: 1px;
    background: #EFEFEF;
}

.wp-caption .wp-caption-text {
    font-size: 10px;
}

figcaption {
    font-size: 10px;
    text-align: justify;
    margin: 9px;
    padding: 0px;
}

table {
    border: 1px solid #cfcfcf;
    text-align: left;
    margin: 0 -1px 24px 0;
    width: 100%;
}

tr td {
    border-top: 1px solid #cfcfcf;
    padding: 6px 15px;
    font-size: 12px;
}

tr th, thead th {
    color: #888;
    font-size: 12px;
    font-weight: bold;
    line-height: 18px;
    padding: 9px 24px;
}

.category-sat table tr td, .category-toefl table tr td {
    border-top: 0px;
}

.category-sat table .table-border-top, .category-toefl table .table-border-top {
    border-top: 1px solid #cfcfcf;
}

.category-sat table .table-border-right, .category-toefl table .table-border-right {
    border-right: 1px solid #cfcfcf;
}

.post-92 th, .post-92 tr:hover {
    background-color: #f4f4f4;
}
th {
    padding: 10px;
    color: #666;
    text-transform: uppercase;
}
table, td, th {
    text-align: center;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-light .navbar-toggler {
    border-color: rgb(255,255,255);
    margin-right: 10px;
}

.logo-inverse {
    display: none;
}

.leaderboard {
    margin-top: -30px;
    margin-bottom: 30px;
}

.overflow-auto {
    overflow: auto;
}

.elementor-widget-image-carousel {
    margin-left: -25px;
    width: 1140px !important;
}

.hide-desktop {
    display: none;
}

@media (min-width: 996px) and (max-width: 1125px) {
    #navbarSupportedContent {
        width: 116%;
        left: -50px;
        position: relative;
    }
}
@media (max-width: 995px) {
    .hide-desktop {
        display: block;
    }

    .hide-mobile {
        display: none;
    }

    .logo {
        display: none;
    }

    .logo-inverse {
        display: inline;
    }

    .elementor-element-26da837 .elementor-widget-container, .hero-home, .faq-hero, .about-hero, .news-hero, .contact-hero, .service-hero, .service-hero.sat, .service-hero.toefl, .service-hero.ielts, .service-hero.toeic {
        background: var(--blue) !important;
        background-image: none !important;
    }

    .top-nav {
        height: 71px;
    }

    .row {
        padding: 0px;
    }

    .navbar {
        float: right;
        z-index: 9999;
        background: var(--blue);
    }

    .navbar-toggler {
        background-color: var(--blue);
    }

    .top-menu {
        padding: 15px;
    }

    .top-menu li {
        display: block;
    }

    .menu-menu-1-container {
        text-align: left;
    }

    .menu-container {
        padding: 0px;
    }

    .hero-home.align-items-end {
        -ms-flex-align: start !important;
        align-items: start !important;
        padding-top: 40px;
    }

    .service-btn {
        display:block;
        width:100%;
        position: relative;
        margin-top: 10px;
    }

    .services .col-md-4 {
        margin: 20px 0px;
    }

    .service-body .elementor-text-editor {
        min-height: 200px;
    }

    html>body .service-container-home {
        padding: 25px;
        height: auto;
        min-height: auto;
        margin: 20px 0px;
    }

    .about {
        padding: 40px 0px;
    }

    .mobile-padding-20 {
        padding: 20px;
    }

    .footer {
        height: 600px;
    }

    .service-tabs {
        min-height: 59px;
        height: auto;
    }

    .menu-services-container li {
        display: block;
        width: 100%;
    }

    .nav-fill .nav-item {
        border-radius: 0px;
        border: 0px solid var(--light-grey);
        background: var(--light-grey);
        margin: 0px;
        text-align: left;
        color: var(--blue);
    }

    .menu-services-container li.active, .menu-services-container li.active a {
        background: var(--blue);
        color: var(--light-grey);
	}

    .menu-services-container a {
        color: var(--blue);
    }

    .page-template-services .page-content {
        padding: 20px;
        border: 0px solid var(--light-grey);
    }

    .hero-content, .faq-hero-content, .about-hero-content, .news-hero-content, .contact-hero-content, .service-hero-content {
    	margin-left: 15px;
    }

    .section {
	    padding: 0px 0px;
	    margin: 10px 0px 0px 0px;
	}

	.faq-hero, .about-hero, .news-hero, .contact-hero, .service-hero {
		color: var(--light-grey) !important;
	}

	.nav-fill .nav-item {
		width: 100%;
    }
    
    .menu-left {
        display: inline-block;
        width: 100%;
    }

    #download-brochure {
        background: white;
        color: black;
    }
}

#wpadminbar {
    position: static;
}