/*
Theme Name: Washington MESA
Theme URI: https://washingtonmesa.com
Author: NEAXUS
Author URI: https://washingtonmesa.com
Description: 
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: washingtonmesa
*/

/*  typography */

@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");

@font-face {
    font-family: 'futura-bold';
    src: url("assets/fonts/Futura-Bold.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

/* #FF4438; */
/*#980D1C*/
:root {
    --primary-color: #FF4438;
    --yellow-color: #FFB607;
    --gray-color: rgb(103, 108, 114);
    --heading-color: #1e1e4b;
    --yellow-color-light: #ffc107
}

body {
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    color: var(--gray-color);
}

p, .paragraph {
    font-weight: 400;
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.9;
    font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-family: "futura-bold";
    font-weight: 700;
    line-height: 1.2;
}

h1, .h1 {
    font-size: 60px;
}

@media (max-width: 575px) {
    h1, .h1 {
        font-size: 45px;
    }
}

h2, .h2 {
    font-size: 40px;
}

@media (max-width: 575px) {
    h2, .h2 {
        font-size: 30px;
    }
}

h3, .h3 {
    font-size: 25px;
}

@media (max-width: 575px) {
    h3, .h3 {
        font-size: 20px;
    }
}

h4, .h4 {
    font-size: 20px;
}

@media (max-width: 575px) {
    h4, .h4 {
        font-size: 18px;
    }
}

h5, .h5 {
    font-size: 18px;
}

@media (max-width: 575px) {
    h5, .h5 {
        font-size: 16px;
    }
}

h6, .h6 {
    font-size: 16px;
}

@media (max-width: 575px) {
    h6, .h6 {
        font-size: 14px;
    }
}

/* Button style */

.btn {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
    padding: 15px 40px;
    border-radius: 0;
    font-weight: 500;
    border: 0;
    position: relative;
    z-index: 1;
    transition: .2s ease;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    position: absolute;
    content: "";
    height: 80%;
    width: 100%;
    left: 0;
    bottom: 10%;
    z-index: -1;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

.btn:active, .btn:hover, .btn.focus, .btn:focus, .btn.active {
    outline: 0;
    box-shadow: none !important;
}

.btn:active::before,
.btn:hover::before,
.btn.focus::before, .btn:focus::before, .btn.active::before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

.btn-sm {
    font-size: 14px;
    padding: 10px 35px;
}

.btn-xs {
    font-size: 12px;
    padding: 5px 15px;
}

.btn-primary {
    color: #fff;
    background-color: var(--yellow-color);
}

.btn-primary::before {
    background-color: #fff;
}

.btn-primary:active, .btn-primary:hover, .btn-primary.focus, .btn-primary:focus, .btn-primary.active {
    color: var(--yellow-color) !important;
    background-color: #ffab08 !important;
    border-color: #ffab08 !important;
}

.btn-outline-primary {
    color: var(--yellow-color);
    background-color: transparent;
    border: 1px solid var(--yellow-color);
}

.btn-outline-primary::before {
    background-color: #fff;
}

.btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary.focus, .btn-outline-primary:focus, .btn-outline-primary.active {
    color: var(--yellow-color) !important;
    background-color: var(--yellow-color) !important;
    border-color: var(--yellow-color) !important;
}

.btn-light {
    color: var(--yellow-color);
    background-color: #fff;
    border: 1px solid #fff;
}

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

.btn-light:active, .btn-light:hover, .btn-light.focus, .btn-light:focus, .btn-light.active {
    color: #fff !important;
    background-color: #fff !important;
    border: 1px solid #fff !important;
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

::-moz-selection {
    background: #ffcd6e;
    color: #fff;
}

::selection {
    background: #ffcd6e;
    color: #fff;
}

/* preloader */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

ol, ul {
    list-style-type: none;
    margin: 0px;
}

img {
    vertical-align: middle;
    border: 0;
}

a, a:hover, a:focus {
    text-decoration: none;
}

a, button, select {
    cursor: pointer;
    transition: .2s ease;
}

a:focus, button:focus, select:focus {
    outline: 0;
}

a:hover {
    color: var(--yellow-color);
}

a.text-primary:hover {
    color: var(--yellow-color) !important;
}

a.text-light:hover {
    color: var(--yellow-color) !important;
}

h4 {
    transition: .2s ease;
}

a h4:hover {
    color: var(--yellow-color);
}

.slick-slide {
    outline: 0;
}

.section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.section-sm {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-title {
    margin-bottom: 30px;
}

.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-no-repeat {
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
}

.border-primary {
    border-color: #ededf1 !important;
}

/* overlay */

.overlay {
    position: relative;
}

.overlay::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #1a1a37;
    opacity: .5;
}

.outline-0 {
    outline: 0 !important;
}

.d-unset {
    display: unset !important;
}

.bg-primary {
    background: var(--primary-color) !important;
}

.bg-secondary {
    background: #1a1a37 !important;
}

.bg-gray {
    background: #f8f8f8;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-color {
    color: #676C72;
}

.text-light {
    color: #8585a4 !important;
}

.text-lighten {
    color: #d6d6e0 !important;
}

.text-muted {
    color: #b5b5b7 !important;
}

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

.font-secondary {
    font-family: "futura-bold";
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.pl-150 {
    padding-left: 150px;
}

.zindex-1 {
    z-index: 1;
}

@media (max-width: 991px) {
    .overflow-md-hidden {
        overflow: hidden;
    }
}

.vertical-align-middle {
    vertical-align: middle;
}

.icon-md {
    font-size: 36px;
}

/* page title */

.page-title-section {
    padding: 104px 0 80px;
    margin-top: 140px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;	
}

.custom-breadcrumb li.nasted {
    position: relative;
    padding-left: 25px;
}

.custom-breadcrumb li.nasted::before {
    position: absolute;
    font-family: "themify";
    content: "\e649";
    font-size: 20px;
    top: 50%;
    left: -5px;
    color: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* /page title */

.list-styled {
    padding-left: 25px;
}

.list-styled li {
    position: relative;
    margin-bottom: 15px;
}

.list-styled li::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--yellow-color);
    left: -25px;
    top: 5px;
}

textarea.form-control {
    height: 200px;
    padding: 20px;
}

#map_canvas {
    height: 500px;
}

.top-header {
    font-size: 12px;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease;
    -webkit-transform-origin: top;
    transform-origin: top;
    font-weight: 600;
}

.top-header.hide {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    transform-origin: top;
}

.navbar-dark .navbar-brand {
    flex-grow: 10;
    text-align: center;
}

.navbar-brand img {
    max-width: 180px;
    height: auto;
}

.navigation {
    background: linear-gradient(to right, transparent 50%, var(--primary-color) 50%);
    transition: .2s ease;
}

@media (max-width: 991px) {
    .navigation {
        background: #1a1a37;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #1a1a37;
        max-height: calc(100vh - 80px);
    }

    .navbar-collapse.show {
        overflow-y: auto;
    }
}

.navbar-nav {
    padding-left: 50px;
    background: var(--primary-color);
    padding-right: 70px;
}

@media (max-width: 991px) {
    .navbar-nav {
        padding-left: 0;
        background: #1a1a37;
    }
}

.nav-bg {
    background-color: #fff;
}

/* 
@media (max-width:700px) {
  .nav-bg {
    background-color: #1a1a37;
  }
} */

.nav-item {
    margin: 0 15px;
    position: relative;
}

@media (max-width: 991px) {
    .nav-item:last-child {
        margin-bottom: 20px;
    }
}

.nav-item::before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 100%;
    content: "";
    background: #fff;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    transform-origin: top;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    pointer-events: none;
}

@media (max-width: 991px) {
    .nav-item::before {
        opacity: .1;
        height: 100%;
    }
}

.nav-item:hover::before, .current-menu-item::before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link {
    color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 40px 0px;
}

@media (max-width: 991px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 12px 20px;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .sub-menu {
        position: absolute;
    }
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background: #fff;
    box-shadow: 0 2px 5px #0000000d;
}

.navbar .nav-item.menu-item-has-children>a::after {
    border: 0;
    margin-left: 0.255em;
    vertical-align: 1px;
    content: "\e64b";
    font-family: 'themify';
    font-size: 11px;
    width: auto;
}

.navbar .sub-menu li {
    padding-top: 10px;
}

.navbar .sub-menu li:last-child {
    padding-bottom: 15px;
}

.navbar .sub-menu-submenu {
    top: 0;
}

@media (max-width: 991px) {
    .navbar .sub-menu-submenu li:first-child {
        margin-top: 15px;
    }
}

.navbar .nav-item .menu-item-has-children>a {
    display: block;
    line-height: 1.8;
}

.navbar :hover>.sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.navbar .sub-menu {
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
    border-bottom: 5px solid var(--yellow-color);
    padding: 0 15px;
    padding-left: 5px;
    top: 96px;
    border-radius: 0;
    display: block;
    visibility: hidden;
    transition: .3s ease;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    background: #fff;
    position: static;
    float: none;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10 rem;
    padding: 0.5 rem 0;
    margin: 0.125 rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1 px solid rgba(0, 0, 0, .15);
    border-radius: 0.25 rem;
}

@media (max-width: 991px) {
    .navbar .sub-menu {
        padding-left: 15px;
        display: none;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-transform-origin: unset;
        transform-origin: unset;
        margin: 0;
        border: 0;
        position: static;
    }

    .navbar .menu-item-has-children .sub-menu li a:last-child {
        color: #fff;
        text-align: center;
    }
}

.navbar .menu-item-has-children.show .sub-menu {
    visibility: hidden;
}

@media (max-width: 991px) {
    .navbar .menu-item-has-children.show .sub-menu {
        visibility: visible;
        display: block;
    }
}

.navbar .menu-item-has-children a {
    position: relative;
    color: var(--heading-color);
    transition: .2s ease;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
}

.nav-item .nav-link, .navbar .menu-item-has-children>a {
    text-transform: uppercase;
    font-weight: 600;
}

.navbar .menu-item-has-children a:last-child {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

@media (max-width: 991px) {
    .navbar .menu-item-has-children a {
        text-align: center;
    }
}

.navbar .menu-item-has-children .sub-menu a:hover, .navbar .menu-item-has-children .sub-menu a:hover {
    color: var(--yellow-color);
    background: transparent;
}

.hero-section {
    padding: 250px 0 290px;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 250px 0 200px;
    }
}

.hero-slider .prevArrow, .hero-slider .nextArrow {
    position: absolute;
    bottom: -123px;
    z-index: 9;
    padding: 15px;
    color: rgba(255, 255, 255, 0.5);
    border: 0;
    font-size: 30px;
    transition: all linear .2s;
    background: transparent;
}

.hero-slider .prevArrow:focus, .hero-slider .nextArrow:focus {
    outline: 0;
}

.hero-slider .prevArrow:hover, .hero-slider .nextArrow:hover {
    color: var(--yellow-color);
}

.hero-slider .prevArrow {
    right: 60px;
}

.hero-slider .nextArrow {
    right: 0;
}

.hero-slider .slick-dots {
    position: absolute;
    left: 0;
    bottom: -100px;
    padding-left: 0;
}

.hero-slider .slick-dots li {
    display: inline-block;
    margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
    background: var(--yellow-color);
}

.hero-slider .slick-dots li button {
    color: transparent;
    padding: 0;
    overflow: hidden;
    height: 10px;
    width: 10px;
    background: rgba(255, 255, 255, 0.5);
    border: 0;
    outline: 0;
}

/* banner feature */

.feature-icon {
    font-size: 50px;
    color: var(--yellow-color);
    display: inline-block;
}

.feature-blocks {
    margin-top: -100px;
    padding-left: 70px;
    padding-top: 80px;
    padding-right: 30%;
}

@media (max-width: 1400px) {
    .feature-blocks {
        padding-right: 10%;
    }
}

@media (max-width: 1200px) {
    .feature-blocks {
        padding-right: 50px;
        padding-left: 50px;
        padding-top: 50px;
    }

    .feature-blocks h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .feature-blocks {
        margin-top: 60px;
        padding: 50px;
    }

    .feature-blocks h3 {
        font-size: 25px;
    }
}

/* /banner feature */

/* course */

.card-btn {
    font-size: 12px;
    padding: 5px 10px;
}

.flex-basis-33 {
    flex-basis: 33.3333%;
}

.hover-shadow {
    transition: .3s ease;
}

.hover-shadow:hover {
    box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */

/* success story */

.success-video {
    min-height: 300px;
}

.success-video .play-btn {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .success-video .play-btn {
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

.play-btn {
    display: inline-block;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: var(--yellow-color);
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.play-btn i {
    line-height: 80px;
}

.play-btn::before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -2;
    transition: .3s ease;
    transition-delay: .2s;
}

.play-btn::after {
    position: absolute;
    content: "";
    height: 80%;
    width: 80%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: var(--yellow-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -1;
    transition: .3s ease;
}

.play-btn:hover::before {
    height: 80%;
    width: 80%;
    transition-delay: 0s;
}

.play-btn:hover::after {
    height: 0;
    width: 0;
    transition: 0s ease;
}

/* /success story */

/* events */

.card-date {
    position: absolute;
    background: var(--yellow-color);
    font-family: "futura-bold";
    text-align: center;
    padding: 10px;
    color: #fff;
    top: 0;
    left: 0;
    text-transform: uppercase;
}

.card-date span {
    font-size: 40px;
}

/* /events */

/* teacher */

.teacher-info {
    width: 70%;
    bottom: 0;
    right: 0;
}

.wp-post-image {
    max-width: 100%;
    height: auto;
}

/* /teacher */

/* footer */

.newsletter {
    background-image: linear-gradient(to right, transparent 50%, var(--primary-color) 50%);
    margin-bottom: -170px;
    position: relative;
    z-index: 1;
}

.newsletter-block {
    padding-left: 50px;
}

@media (max-width: 575px) {
    .newsletter-block {
        padding-left: 15px;
    }
}

.input-wrapper {
    position: relative;
}

.input-wrapper button {
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.form-control {
    height: 60px;
    background: #fff;
    border-radius: 0;
    padding-left: 25px;
}

.form-control:focus {
    border-color: var(--yellow-color);
    box-shadow: none;
}

.newsletter-block .form-control {
    height: 90px;
}

.bg-footer {
    background-color: #fbfbfb !important;
}

.logo-footer {
    margin-top: -20px;
    display: inline-block;
}

.logo-footer img {
    max-width: 250px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer h4 {
    color: #8585a4;
    margin-bottom: 3rem;
}

.footer {
    border-color: #c7c7c7 !important;
    padding-top: 75px;
}

.footer ul {
    padding: 0px;
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer ul li a, .footer P, .copyright p {
    color: #757575 !important;
}

.footer ul li a:hover, .footer P:hover {
    color: #fff;
}

/* /footer */

.filter-controls li {
    cursor: pointer;
    transition: .1s ease;
}

.filter-controls li.active {
    font-weight: 600;
    color: var(--yellow-color);
}

.filter-controls li:hover {
    color: var(--yellow-color);
}

/*# sourceMappingURL=style.css.map */

.flip-card {
    position: relative;
    width: 100%;
    height: inherit;
    top: 0;
    left: 0;
    transition: 0.3s linear;
    -moz-perspective: 200rem;
    perspective: 200rem;
}

.flip-card .back::-webkit-scrollbar {
    display: none;
}

.flip-card:hover .front {
    transform: rotateY(-180deg);
}

.flip-card:hover .back {
    transform: rotateY(0);
}

.flip-card .back {
    position: absolute;
    top: 0;
    background-color: #fff;
    padding: 1rem;
    height: 100%;
    border: 1px solid #f2f2f2;
    z-index: -1;
    transform: rotateY(180deg);
    overflow: auto;
}

.front, .back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 0.8s ease;
}

.mdp-map iframe {
    width: 100%;
    height: 455px;
}

@media (max-width:700px) {
    .header .col-lg-8 {
        display: grid;
        text-align: left !important;
        line-height: 1.5;
    }

    .header .col-lg-4 ul {
        display: flex !important;
        justify-content: space-around;
        align-items: center;
    }

    .header .col-lg-4 ul li a {
        padding: 15px !important;
        text-align: center;
    }

    .header .col-lg-4 ul li a i {
        margin: 0 !important;
        font-size: 14px;
    }
}

.programe-image {
    max-width: 240px;
    margin: 12.5px;
}

.news-event-row {
    display: grid;
    grid-template-columns: 50% 50%;
}

@media (max-width:560px) {
    .news-event-row {
        display: grid;
        grid-template-columns: auto;
    }
}

.news-event-row p {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px !important;
    font-weight: 500 !important;
}

.news-event-row a {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-event-row .event {
    border: 1px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
}

.news-event .nav-link {
    border-radius: 0px;
    color: var(--primary-color);
}

.news-event .nav-link.active {
    background-color: var(--primary-color) !important;
    color: #FFF !important;
}

.news-event .nav-link:hover {
    background-color: #C7C7C7;
    border: 0;
    transform: none !important;
    -webkit-transform: none;
    transform: none;
}

.news-event .nav-item:hover::before, .news-event .nav-item.active::before {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

.gutter-side.row .col-lg-4 {
    padding: 12.5px;
}

.partner-row>div {
    padding: 30px;
}

/* */

.fbc-page .fbc-wrap .fbc-items {
    background: transparent !important;
}

.fbc-page .fbc-wrap .fbc-items li a {
    font-size: 40px;
    color: var(--primary-color) !important;
    font-weight: 500 !important;
    font-family: "futura-bold";
}

.fbc-page .fbc-wrap .fbc-items li a i {
    display: none;
}

.fbc-separator {
    font-size: 35px !important;
    color: #fff !important;
}

.fbc-page .fbc-wrap .fbc-items li.active span, .fbc-page .fbc-wrap .fbc-items li .fbc-end-text {
    font-size: 25px !important;
    color: #fff !important;
    font-family: "futura-bold";
}

.news___ {
    display: flex;
    flex-direction: row;
}

.news_date {
    min-width: 110px;
    height: 120px;
}

@media (max-width:600px) {
    .news___ {
        display: inline-block;
    }

    .news_date {
        min-width: 100%;
        height: 120px;
    }

    .news___ .vertical-align-middle {
        padding-left: 5px !important;
        padding-right: 0px !important;
    }

    .es_subscription_form.es_shortcode_form {
        grid-template-columns: 67% 33%;
    }

    .es_subscription_form.es_shortcode_form input {
        padding-left: 10px;
    }
}

.es_subscription_form.es_shortcode_form {
    display: grid;
    grid-template-columns: 70% 30%;
}

.es_subscription_form.es_shortcode_form input {
    height: 60px;
    padding: 5px;
    border: 1px solid #ced4da;
    padding-left: 25px;
}

@media (max-width:600px) {
    .es_subscription_form.es_shortcode_form {
        grid-template-columns: 67% 33%;
    }

    .es_subscription_form.es_shortcode_form input {
        padding-left: 10px;
    }
}

.es_subscription_form.es_shortcode_form input:focus {
    border: 1px solid var(--yellow-color-light);
    outline: none;
}

.es-field-wrap input, .es-field-wrap label {
    width: 100%;
}

.es_subscription_form_submit.es_submit_button.es_textbox_button {
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
    border-radius: 0;
    font-weight: 500;
    border: 0;
    position: relative;
    z-index: 1;
    transition: .2s ease;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    padding: 10px 20px;
    color: #212529;
    background-color: rgba(255, 193, 7, 0.725);
    border-color: var(--yellow-color-light);
    cursor: pointer;
}

.es_subscription_form_submit.es_submit_button.es_textbox_button:hover {
    background-color: var(--yellow-color-light);
}

.wpcf7-text {
    padding: 20px;
}

.wpcf7-form input {
    width: 100%;
    height: 55px;
    margin-bottom: 25px;
}

.wpcf7-form textarea {
    width: 100%;
    height: 200px;
    padding: 20px;
}

.wpcf7-form input, .wpcf7-form textarea {
    border: 1px solid #ced4da;
    outline: none;
}

.wpcf7-form input:focus, .wpcf7-form textarea:focus {
    border: 1px solid var(--yellow-color-light);
}

.wpcf7-submit {
    width: 200px !important;
    background-color: rgba(255, 193, 7, 0.725);
    border-color: var(--yellow-color-light);
    border: 0px;
    outline: 0;
    cursor: pointer;
}

.wpcf7-submit:hover {
    background-color: var(--yellow-color-light);
}

.hero-slider .swiper-container, .entry .entry-content>.swiper-container {
    width: 100%;
    height: calc(100vh + 25px);
    max-width: 100%;
    overflow: hidden;
    padding: 100px 0px;
    top: 25px;
}

.hero-slider .swiper-container:before {
    /*content: "";*/
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1111;
}

@media(max-width:700px) {

    .hero-slider .swiper-container, .entry .entry-content>.swiper-container {
        max-width: 100%;
        padding: 37px 0px;
        height: 440px;
        top: 180px;
    }

    .hero-slider .swiper-slide>img {
        height: 220px;
        object-fit: cover;
        overflow: hidden;
    }
}

@media(max-width:1000px) {
    .navbar-dark .navbar-brand {
        flex-grow: 0;
    }
}





.thjmf-search-filters .thjmf-job-filters select {
    height: 40px !important;
    background: #fff;
    border-radius: 0;
    padding-left: 25px;
}

.thjmf-search-button {
    display: flex;
    align-items: center
}


.thjmf-search-button .thjmf-job-filters-button.button {
    background-color: #ffc107b9;
    border-color: #ffc107;
    border: 0px;
    outline: 0;
    cursor: pointer;
    padding: 15px 46px;
    margin-right: 20px;
}

.thjmf-listing-loop-content .thjmf-listing-solo-table tr.thjmf-listing-header h3 a{
    color: var(--primary-color);
}


.thjmf-job-list-single-tags {
    padding-top: 10px;
}

.thjmf-job-list-single-tags .thjmf-inline-tags span {
    color: var(--gray-color)
}

#thjmf_popup_save,
#thjmf_apply_now, .thjmf-job-single-more a.button {
    background-color: #ffc107b9;
    border-color: #ffc107;
    border: 0px;
    outline: 0;
    cursor: pointer;
    padding: 10px 35px;
    color: #000 !important
}

.thjmf-listing-loop-content table.thjmf-listing-solo-table {

    border-top: 3px solid #e1e1e1 !important;
}

.thjmf-job-list-single-tags {
    display: flex;
    align-items: center;
}

.thjmf-job-list-single-tags .thjmf-inline-tags {
    padding-right: 10px;
    padding-bottom: 15px;
}

.thjmf-job-list-single-tags .thjmf-inline-tags:nth-child(3) span {
    margin-right: 7px;
}


#thjmf_apply_now_popup {
    z-index: 1035 !important;
}

#thjmf_cover_letter_field {
    display: block !important;
}

#thjmf_cover_letter_field textarea{    
	width:100%;
	border-radius:8px;
}

form.thjmf-apply-form .thjmf-form-row input, form.thjmf-apply-form .thjmf-form-row select {
    padding: 0px 5px;
    border-radius: 5px;
    width: 100%;
    margin-top: 3px;
    height: 40px !important;
    background: #fff;
    border-width: 1px;
}

#thjmf_apply_now_popup .thjmf-popup-wrapper .thjmf-popup-header {
    width: 100%;
    background-color: var(--primary-color);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#thjmf_apply_now_popup .thjmf-popup-wrapper .thjmf-popup-header .thjmf-popup-title {
    padding-left: 0px;
    color: #fff;
}

#thjmf_apply_now_popup .thjmf-popup-wrapper .thjmf-popup-close .dashicons {
    color: #fff;
}

#thjmf_apply_now_popup {
    background: rgba(0, 0, 0, 0.5) 50% 50% no-repeat;
}