/*!
Theme Name: CCRSM
Theme URI: 
Author: Texas College & Career Readiness School Models
Author URI: 
Description: 
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ccrsmtheme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

*/


:root {
	/* Primaries */
	--CCRSM_blue: #0D6CB9;
	--CCRSM_orange: #D85632;
	--CCRSM_green: #41853E;
	--CCRSM_red: #B72418;

	/* Secondaries */
	--CCRSM_blue-dark: #232C65;
	--CCRSM_blue-light: #C2DCF2;
	--CCRSM_green-dark: #154013;
	--CCRSM_green-dark: #C4F2C2;
	--CCRSM_red-dark: #401613;
	--CCRSM_red-dark: #F2C5C2;

	/* Neutrals */
	--CCRSM_white: #FFF;
	--CCRSM_text: #000;
	--CCRSM_beige: #F7F5F1;
	--CCRSM_grey: #D9D9D9;
  --CCRSM_grey-med: #ABABAB;
	--CCRSM_grey-dark: #575757;
	--CCRSM_grey-pale: #F6F6F6;
	--CCRSM_grey-light: #E7E3DB;

	/* Gradients */
	--CCRSM_grad-blue-orange: linear-gradient(90deg, #0D6CB9 0%, #D85632 100%);
	--CCRSM_grad-orange-blue: linear-gradient(90deg, #D85632 0%, #0D6CB9 100%);
	--CCRSM_grad-blue-dark: linear-gradient(90deg, #0D6CB9 0%, #232C65 100%);
	--CCRSM_grad-dark-blue: linear-gradient(90deg, #232C65 0%, #0D6CB9 100%);

  /* others */
  --anim-speed-Qs: all 0.25s ease-in-out;
  --anim-speed-Hs: all 0.5s ease-in-out;
  --anim-speed-Fs: all 1s ease-in-out;
}

/* Fonts */

body {
  color: #464646;
  background: #FFF;
  font-family: "Open Sans", Sans-serif;
  font-size: 18px;
  font-stretch: normal;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: background-color 1s ease;
}
a.skip-link.screen-reader-text {
  display: none;
}
a.skip-links:link,
a.skip-links:visited,
a.skip-links:hover {
  background-color: #000;
  color: #FFF;
  font-size: 1em;
  left: -9999px;
  padding: 0.5em;
  position: absolute;
  top: 0px;
  z-index: 1000;
}
#page.site {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.container {
  max-width: 1280px !important;
}

a,
img,
*:focus-visible {
  outline: none;
}
img {
  max-width: 100%;
}
h1.elementor-heading-title,
h2.elementor-heading-title,
h3.elementor-heading-title,
h4.elementor-heading-title,
h5.elementor-heading-title,
h6.elementor-heading-title {
  line-height: 1.2;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #464646;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 390;
}

.h1,
h1 {
  font-size: 68px;
  line-height: 1.6;
}
.h2,
h2 {
  font-size: 60px;
}
.h3,
h3 {
  font-size: 42px;
}
.h4,
h4 {
  font-size: 30px;
}
.h5,
h5 {
  font-size: 28px;
}
.h6,
h6 {
  font-size: 24px;
}
a,
a:hover,
a:visited,
a:focus,
a:active,
a.active {
  color: var(--CCRSM_grey-dark);
  text-decoration: none;
}
p {
  margin-bottom: 1rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  border: 1px solid var(--CCRSM_grey-dark);
  border-radius: 4px;
  color: var(--CCRSM_grey-dark);
  font-weight: 500;
  width: 100%;
  padding: 12px 20px;
  line-height: 1;
}
input.error,
.elementor-field.error,
.elementor-error input {
  border: 1px solid var(--CCRSM_red) !important;
  color: rgba(255, 0, 0, 0.5) !important;
}
input:hover,
input:active,
input:focus {
  z-index: 1 !important;
}
textarea {
  resize: none;
}

.btn {
  font-size: 18px;
  font-weight: 420;
  letter-spacing: 0.9px;
  color: #fff;
  border-radius: 20px 20px 20px 20px;
  padding: 10px 34px 10px 34px;
  text-transform: uppercase;
  line-height: 1em;
  transition: all 0.5s;
  border: 1px solid rgba(0, 0, 0, 0);
}
.btn:hover,
.btn:focus, 
.btn:active {
  color: var(--color_btn_green);
  background-color: var(--CCRSM_white);
}

/* .top-nav-bar .top-nav-left {
	width: 80%;
}
.top-nav-bar .top-nav-right {
	width: 20%;
} */

.col-left, 
.col-right {
	display: inline-block;
	position: relative;
}
.col-left::after, 
.col-right::after {
	z-index: -1;
	display: block;
	content: "";
	top: 0;
	position: absolute;  
	height: 100%;
}
.col-left::after {
	right: 0;
	left: auto; 
}
.col-right::after { 
	left: 0;
	right: auto;
}

.top-nav-bar .col-left::after {
  background-color: #3B89C6;
} 
.top-nav-bar .col-right::after {
  background-color: #0D5796;
} 

.footer-container .col-left::after {
  background-color: #EEEEEE;
} 
.footer-container .col-right::after {
  background-color: #D9D9D9;
} 


/* .related-files {
	border-top: 1px solid #D4D4D4;
	margin-top: 40px;
	padding-top: 30px;
} */
.related-files h5 {
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.related-files .related-item {
	display: flex;
	margin-bottom: 30px;
	align-items: center;  
}
.related-files.file-details .related-item  {
	margin-bottom: 0;
}
.related-files .related-item .icon {
	margin-right: 24px;
}
.related-files .related-item .icon img {
	min-width: 38px;
}
.related-files .related-item .title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
}
.related-files .related-item .title a:hover {
  color: var(--CCRSM_blue);
}
.related-files .related-item .title span, 
.related-files.file-details .related-item .title {
	display: block;
	font-size: 14px;
	text-transform: none;
	font-weight: 700;
  margin-top: 2px;
}

.resources-tags {
	border-top: 1px solid #D4D4D4;
	border-bottom: 1px solid #D4D4D4;
	padding: 30px 0;	
	display: flex;
	align-items: center;
}
.resources-tags .tag-item ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.resources-tags .tag-item ul li {
	display: inline-block;
	background-color: #D9D9D9;
	border-radius: 40px;
	font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 7px 21px 8px;
  margin: 5px 8px;
  text-transform: uppercase;
}
.resources-tags .share-item {
	margin-left: auto;
	padding-left: 30px;
	min-width: 210px;
}
.resources-tags .share-item a {
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
}
.resources-tags .share-item img {
	margin-right: 10px;
	min-width: 24px;
}

.resource-single h1 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
}
.resource-single .single-content {
	margin-bottom: 40px;
  margin-top: 30px;
}
.resource-single .single-content > * {
	color: #000;
	line-height: 1.3;
	font-size: 18px;
}
.resource-single .single-related {
	margin-top: 50px;
}
.resource-article .single-img {
	margin-bottom: 40px;
}
.resource-article .single-img img {
	/* max-height: 480px; */
	border-radius: 15px;
}
.resource-article .single-author {
	margin-bottom: 30px;
	font-size: 16px;
	font-weight: 600;
  line-height: 1.6;
}
.resource-article .author .author-name {
	color: #0D6CB9;
	text-transform: uppercase;
}
.resource-article .single-author .published {
	font-style: italic;
}
.resource-article .save-pdf {
	margin-top: 40px;
}

.resource-pdfs h1 {
  margin-bottom: 0;
}
.resource-pdfs .related-files .related-item {
	margin-bottom: 40px;
}
.resource-pdfs .download-pdf {
	margin-right: 40px;
}
.resource-pdfs .related-item .icon {
	margin-right: 18px;
}
.resource-pdfs .related-item .title span {
	margin: 2px 0;
}  
.resource-pdfs .icon-details {
	display: flex;
	align-items: center;
}
.resource-single .pdfs_feat_image {
  border-bottom: 1px solid #D4D4D4;
  padding-bottom: 40px;
}
.resource-single .pdfs_feat_image .single-img {	
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
  border-radius: 15px;
}
.resource-single .pdfs_feat_image .col-img {
	padding-right: 20px !important;
}
.resource-single .pdfs_feat_image .col-content {
	padding-left: 20px !important;
}
.resource-single .pdfs_feat_image .resources-tags {
	border-bottom: unset;
	display: block;
	padding-bottom: 0;
}
.resource-single .pdfs_feat_image .resources-tags .share-item {
	padding-left: 8px;
	padding-top: 20px;
}
.model-sub-title .elementor-heading-title::before,
.model-ptech-sub-title .elementor-heading-title::before {
	content: ' ';
	background-color: #0D6CB9;
	height: 2px;
	width: 32px;
	display: inline-block;
	margin-bottom: 7px; 
	margin-right: 8px;
}
/* .model-ptech-sub-title .elementor-heading-title::before {
	background-color: #B72418;
} */

.select-story-sec .story-col {
	margin-bottom: 50px;
}
.select-story-sec .story-item {
	border-radius: 8.326px;
	background: #FFF;
	box-shadow: 0px 3.33px 3.33px 0px rgba(0, 0, 0, 0.25);
	height: 100%;
}

.story-item .story-img {
	background-repeat: no-repeat;
	background-size: cover; 
	background-position: top center;
	padding-bottom: 60%;
}
.story-item .story-copy {
	padding: 20px 20px 40px;
}
.story-item h5 {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	color: #464646;
	margin-bottom: 10px;
	line-height: 1.4;
}
.story-item .story-desc {
	margin-bottom: 30px;
  line-height: 1.4;
}


.notification-bar-sec {
	background: linear-gradient(90deg, #0D6CB9 -5.7%, #232C65 104.61%);
	color: #FFF;
	padding: 20px 10px;
}
.notification-bar-sec .container {
	padding: 0;
	position: relative;
}
.notification-bar  {
	padding: 0 20px;
	margin-right: 50px;
}
.notification-bar, 
.notification-bar p {
	font-size: 20px;
	font-weight: 700;
	line-height: normal;
}
.notification-bar p {	
	margin-bottom: 0;
}
.notification-bar a {
	color: #FFF;
}
.close-notification-bar {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.close-notification-bar i {
	font-size: 24px;
}

.cpts-single-content, 
.cpts-single-content p {
	color: #000;
	font-size: 18px;
	line-height: 1.4;
}

.success-stories-slider .slick-slide {
	padding: 0 20px;
}
.program_status {
	color: #FFF;
	font-size: 16px;
}

#main-footer .footer-sub-nav .elementor-nav-menu--dropdown.elementor-nav-menu__container {
	display: none;
	height: 0;
}
#search-form-popup.search-wrap {
	position: relative;
	padding: 5px 5px 5px 20px;
	margin-top: 4px;
}
.search-wrap #site_search_input {
	border: unset;
	background: #0D5796;
	padding: 0 30px;
	color: #FFF;
	font-size: 16px;
}
.search-wrap #site_search_input::placeholder {
	opacity: 1;
}
.search-wrap .search-clear {
	position: absolute;
	right: 10px;
	font-size: 15px;
	line-height: 1;
	z-index: 9;
	display: none;
	cursor: pointer;
	top: 9px;
	color: rgba(255,255,255,0.8);
}
.search-wrap .search-icon {
	position: absolute;
	left: 20px;
	top: 6px;
	color: #FFF;
	font-size: 18px;
}


.container.search-grid-sec {
  max-width: min(90%,1140px);
  margin-top: -80px;
}
.search-grid-sec .search-grid-item-col {
  margin: 25px calc(var(--bs-gutter-x) * -0.5);
  padding: 0 !important;
}
.search-grid-sec .search-grid-item-content {
  padding: 25px 0;
  transition: all 0.35s ease-in-out;
  border-radius: 0;
}
.search-grid-sec .search-grid-item-content:hover {
  background-color: var(--color_gray_light);
  border-radius: 50px;
}
.search-grid-sec .search-grid-item-content .circle {
  margin: 0 auto;
}

.search-grid-sec .search-grid-item-content .search-grid-item-box .title h6 {
  margin-bottom: 5px;
}
.search-grid-sec .search-grid-item-content .search-grid-item-box .btn.blue-btn {
  font-size: 14px;
  padding: 6px 15px;
  margin-top: 15px;
}
.search-grid-sec .search-grid-item-content .search-grid-item-box a.title:hover {
  text-decoration: underline;
}
.search-grid-sec .search-grid-item-content .search-grid-item-box .search-breadcrumb {
  font-size: 15px;
  line-height: 16px;
  opacity: 0.5;
  letter-spacing: -0.35px;
  margin: 10px 0;
}
.search-grid-sec .search-grid-item-content .search-grid-item-box .short_desc {
  font-size: 18px;
}
.search-grid-sec .pagination {
  margin: 30px auto 0;
  text-align: center;
  display: flex;
  justify-content: center;
}
.search-grid-sec .pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-grid-sec .pagination .nav-links .page-numbers {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 0.9px;
  font-family: "BrandonMedium", Sans-serif;
  padding: 0 13px;
}
.search-grid-sec .pagination .nav-links .page-numbers.current {
  font-family: "BrandonBold", Sans-serif;
  font-size: 23px;
  font-weight: 900;
}
.search-grid-sec .pagination .nav-links .page-numbers.dot {
  padding-right: 1rem !important;
}
.search-grid-sec .pagination .nav-links .page-numbers.next,
.search-grid-sec .pagination .nav-links .page-numbers.prev {
  font-size: 0;
  background-color: var(--color_white);
  border-radius: 50%;
  color: var(--color_text);
  width: 48px;
  height: 48px;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;

  flex-direction: column;
}
.search-grid-sec .pagination .nav-links .page-numbers.next {
  margin-left: 25px;
}
.search-grid-sec .pagination .nav-links .page-numbers.prev {
  margin-right: 25px;
}
.search-grid-sec .pagination .nav-links .page-numbers.next:hover,
.search-grid-sec .pagination .nav-links .page-numbers.prev:hover {
  background-color: var(--color_text);
  color: var(--color_white);
}
.search-grid-sec .pagination .nav-links .page-numbers.next::after {
  content: "\f061";
  font-size: 26px;
}
.search-grid-sec .pagination .nav-links .page-numbers.prev::after {
  content: "\f060";
  font-size: 26px;
}


/* SearchWP CSS */

.search-result {
  margin: 25px 0;
  padding: 20px;
}
.search-result:hover {
  background-color: var(--color_gray_light);
  border-radius: 10px;
}
.search-result .entry-header .entry-title {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 22px;
}
.search-result .entry-header .entry-title a {
  display: block;
  margin-bottom: 0;
  font-family: "BrandonBold", sans-serif;
}
.search-result .entry-header .entry-title a:hover {
  text-decoration: underline;
}
.search-result .entry-header .entry-title a .searchwp-highlight {
  padding: 0;
  color: unset;
  background-color: unset;
}
.search-result .entry-summary p {
  font-size: 18px;
  line-height: 20px;
  color: var(--color_text);
}
.search-result .entry-breadcrumb {
  font-size: 15px;
  line-height: 16px;
  opacity: 0.5;
  letter-spacing: -0.35px;
  margin: 10px 0;
}

/* Goolge Search */
.google-search-wrap {
  position: relative;
}

.google-search-wrap .search-clear {
  display: none;
  position: absolute;
  right: 66px;
  top: 17px;
  cursor: pointer;
}

.google-search-wrap .search-close {
  position: absolute;
  right: 10px;
  font-size: 15px;
  line-height: 1;
  z-index: 9;
  display: none;
  cursor: pointer;
  top: 9px;
  color: rgba(255, 255, 255, 0.8);
}

.google-search-input {
  border: 1px solid var(--color_text);
  border-radius: 40px !important; 
  color: var(--color_text);
  max-width: 100%;
  font-size: 20px  !important;
  padding-right: 96px;
  margin-bottom: 25px;
}

.google-search-submit {  
	background-color: unset !important;
	border: unset  !important;
	background-image: url('/wp-content/uploads/2024/07/search-green-icon.svg');
	position: absolute;
	right: 0px;
    top: 0px;
	border-radius: unset  !important;
	background-repeat: no-repeat;
	background-size: contain;
	width: 63px;
	height: 62px;
	padding: 0  !important;
}

.gsc-control-cse, .gcse-searchresults-only {
    border-color: unset !important;
    background-color: unset !important;
    border: none !important;
    padding: 20px 20px;
}

.gsc-results {
	font-family: "BrandonRegular", sans-serif !important;
    background-color: unset !important;
}

.gsc-webResult .gsc-result {
	border: 0px !important;
    background-color: unset !important;
}

.gs-title, .gs-title a b {
	font-size: 24px !important;
	color: #565759 !important;
    line-height: 1.2;
    font-weight: 390;
	margin-bottom: 5px;
}
.gs-title a, .gs-title a b {
	color: #565759 !important;
}
.gs-title a:hover {
	text-decoration: underline;
}

.gsc-results .gsc-cursor-box .gsc-cursor-page {
  border-color: unset !important;
  background-color: unset !important;
  color: unset !important;
}

.gsc-cursor-page {
  display: inline-block;
color: #565759 !important;
  font-size: 20px;
  letter-spacing: 0.9px;
  font-family: "BrandonMedium", Sans-serif;
  padding: 0 13px;
}

.model-tabs {
	margin-bottom: 50px;
}
.model-tabs ul {
	padding-left: 0;
	margin-bottom: 0;
}
.model-tabs ul li {
	list-style: none;
	display: inline-block;
}
.model-tabs ul li:first-child {
	margin-right: 30px;
}
.model-tabs ul li a {
	font-size: 30px;
	font-weight: 700;
	color: #979797;
}
.model-tabs ul li a:focus,
.model-tabs ul li a:active {
	color: #979797;
}
.model-tabs ul li .echs-tab.is_active,
.model-tabs ul li .echs-tab:hover {
	border-bottom: 3px solid #42873F;
  color: #575757;
}

.model-tabs ul li .ptech-tab.is_active,
.model-tabs ul li .ptech-tab:hover {
	border-bottom: 3px solid var(--CCRSM_red);
  color: #575757;
}

.model-inner-nav .nav_select {
	margin: 0 auto 20px;
  max-width: 600px;
}
.no-search .select2-search {
  display:none
}

.model-navbar li.dropdown:hover ul.dropdown-menu {
	display: block;
}

.model-navbar.nav.navbar-nav {
	padding-left: 0;
	margin-bottom: 0;
	border: 1px solid #232C65;
	border-radius: 10px;
	display: inline-block;
}
.model-navbar.nav .dropdown {
	display: inline-block;
	border-right: 1px solid #232C65;
	text-align: center;
}
.model-navbar.nav .dropdown:last-child {
	border-right: unset;
}
.model-navbar.nav .dropdown a {
	font-size: 14px;
	padding: 10px;
	display: block;
}

.page-line-menu li.menu-item:last-child {
	border-right: unset !important;
}
.page-line-menu li.menu-item a {
	height: 100%;
}
.page-line-menu .menu-item .eael-item-active {
	color: #FFF !important;
}

.page-line-menu .menu-item ul li a.eael-item-active {
	background-color: transparent !important;
	color: var(--CCRSM_text) !important;
}

.page-line-menu ul.eael-simple-menu li > ul.sub-menu {
	z-index: 2;
}

.btn.btn-thin-border {
  border-width: 2px !important;
}
.btn.btn-transparency {
	background-color: unset !important;
}

.itemWrapper .card .card-body .btn-CCRSM-Orange-border:hover {
  color: #0D6CB9;
  border-color: #0D6CB9;
} 
.eventItemWrapper .btn-CCRSM-Orange-border {
	text-transform: uppercase !important;
}
.grid-count {
  font-size: 14px;
}
 
.expansion-card .card-trigger {
	border-radius: 5px;
}
.expansion-card .card-trigger:hover, .expansion-card.active .card-trigger {
	border-radius: 5px 5px 0 0;
}
.expansion-card .card-trigger {
	position: relative;
	cursor: pointer;
}
.expansion-card .card-trigger .que.card-title {
	margin-right: 50px;
	line-height: 1.3;
}
.expansion-card .card-content {
	word-wrap: break-word;
}
.expansion-card .card-trigger .more {
	display: flex; 
	align-items: center;
	position: absolute;
	right: 20px;
	bottom: 0;	
	top: 0;
}

.font-sm-border {
  font-size: 18px !important;
} 
.eael-accordion-list .eael-accordion-header.active {
	border-radius: 5px 5px 0 0 !important;
}
.page-line-menu ul.eael-simple-menu li.current_page_item > a svg {
	fill: #FFF;
}
#main-header .main-nav li.nav-2-columns ul.sub-menu .hide-color a {
	color: var(--CCRSM_grey-light) !important;
	cursor: auto;
}
#main-header .main-nav li.nav-2-columns ul.sub-menu .hide-color a:hover {
	background-color: var(--CCRSM_grey-light) !important;
}
.search_result_title {
	text-align: center;
	color: #FFF;
	margin-bottom: 0;
}

.map_filters_row label {
  padding-left: 10px;
}

.map_search_filters .btn {
  padding: 11px 15px;
}

.map_filters_row {
  border-top: 1px solid #e5e5e5;
}

.map_filters_row:first-child {
  border: none;
}

.school_map_holder {
  height: 500px;
  width: 100%;
}
#school_map_holder .gm-ui-hover-effect {
	width: 34px !important;
	height: 34px !important;
	opacity: 1 !important;
	top: -16px;
	right: 4px;
}
#school_map_holder .gm-style-iw.gm-style-iw-c {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid #000;
  min-width: 250px !important;
  padding: 10px 18px 18px !important;
  max-height: unset !important;
  max-width: 250px !important;
}
#school_map_holder .loc-title {	
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 15px;
  border-bottom: 1px solid #A7A7A7;
  margin-bottom: 16px;
}
#school_map_holder .loc-contact {
  border-top: 1px solid #A7A7A7;
  margin-top: 16px;
  padding-top: 15px;
}
#school_map_holder .loc-models h6 {
  font-weight: 700;
}
#school_map_holder .loc-contact .loc-address {
  margin-bottom: 0;
  font-size: 14px;
}
#school_map_holder .loc-models span {
  font-style: italic;
  font-size: 12px;
}
#school_map_holder .cta-icons {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
}
#school_map_holder .cta-icons img {
  margin-right: 8px;
}
#school_map_holder .cta-icons a {
  color: var(--CCRSM_text);
}
#school_map_holder .gm-ui-hover-effect span {
	width: 34px !important;
	height: 34px !important;
}
#school_map_holder .gm-style-iw-d {
	overflow: auto !important;
}
.checkbox-filters label {
  cursor: pointer;
}
input[name="locs_models"] {
	width: 20px;
	height: 20px;
}
#map_filter_reset {
	padding: 15px;
}
.faqs-sec {
	position: relative;
}
#faqs_expand_all {
	display: block;
	text-align: right;
	cursor: pointer;
	position: absolute;
	right: 0;
}
#top_nav_bar #accessibility_icon {
	position: absolute;
	right: 8px;
	cursor: pointer;
	bottom: 7px;
}
 

/*Media*/

@media (max-width: 1300.98px) {
  .model-echs-nav .page-line-menu .menu-item a {
    font-size: 13px !important;
  }
  .model-ptech-nav .page-line-menu .menu-item a {
    font-size: 11px !important;
  }
}


@media (max-width: 1250.98px) {
  #main-header .main-nav li.menu-item .elementor-item {
    font-size: 16px;
    padding: 8px 6px;
    margin: 0 4px; 
  }
  .h1,
  h1 {
    font-size: 60px;
  }
  .h2,
  h2 {
    font-size: 48px;
  }
  .h3,
  h3 {
    font-size: 32px;
  }
  .h4,
  h4 {
    font-size: 24px;
  }
  .h5,
  h5 {
    font-size: 20px;
  }
  .h6,
  h6 {
    font-size: 18px;
  } 
}

@media (max-width: 991.98px) {
  #main-header .main-nav li.menu-item {
    margin: 10px 0 10px;
    padding-bottom: 7px;
  }
  #main-header .main-nav li.menu-item .elementor-item {
    padding: 0 0 20px 0;
    background-color: unset;
    height: 40px;
    line-height: 1.2;
  }
  #main-header .main-nav li.current-menu-item .has-submenu .sub-arrow, 
  #main-header .main-nav li.current-page-ancestor .has-submenu .sub-arrow, 
  #main-header .main-nav li.menu-item .elementor-item.has-submenu.highlighted .sub-arrow, 
  #main-header .main-nav li.menu-item .elementor-item .sub-arrow {
    fill: #FFF;
  }
  #main-header .main-nav li.menu-item ul.sub-menu {
    margin-bottom: 10px;
    margin-top: 10px;
  }
  #main-header .main-nav li.menu-item ul.sub-menu li {
    margin: 0;
    border: unset;
  }
 
  #main-header .main-nav li.menu-item ul.sub-menu li a,
  #main-header .main-nav li.menu-item ul.sub-menu li a:hover {
    padding-bottom: 4px;
    padding-top: 4px;
    color: var(--CCRSM_white);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
  }
  #main-header .main-nav li.menu-item.no-border {
    border: unset;
    margin-bottom: 10px;
  }
  #main-header .main-nav li.menu-item.no-border .elementor-item {
    padding-bottom: 0;
  }

  #main-header .main-nav .elementor-nav-menu {
    border-top: 1px solid #232C65;
    margin: 80px 30px 50px;
  }

  #main-header .main-nav .elementor-menu-toggle.elementor-active {
    z-index: 9;
    background-color: unset;
    margin-top: -40px;
  }
  
  #main-header .main-nav .elementor-menu-toggle.elementor-active svg  {
    fill: #FFF;
    width: 30px;
    height: 30px;
  }

  #main-header .main-nav .elementor-nav-menu--dropdown {
    top: -60px !important;
    z-index: 2;
  }

  #main-header .main-nav li.menu-item .elementor-item .sub-arrow {
    padding-left: 6px;
    transform: rotate(-90deg);
    margin-block-start: 4px; 
    margin-block-end: unset;
  }
  #main-header .main-nav li.menu-item .elementor-item.highlighted .sub-arrow {
    transform: rotate(0deg);
    margin-block-start: 0;
  }
  #search-form-popup.search-wrap {
    padding-bottom: 8px;
  }
 

  .h1,
  h1 {
    font-size: 50px;
  }
  .h2,
  h2 {
    font-size: 40px;
  }
  .h3,
  h3 {
    font-size: 30px;
  }
  .h4,
  h4 {
    font-size: 22px;
  }

  .resource-single h1 {
    font-size: 32px;
  }
  .resource-single .pdfs_feat_image .col-content {
    padding-left: 0 !important;
  }
  .resource-single .pdfs_feat_image .col-img {
    padding-right: 0 !important;
  }
  .resource-single .pdfs_feat_image .resources-tags {
    display: flex;
  }
  .resource-single .pdfs_feat_image .resources-tags .share-item {
    padding-left: 30px;
    padding-top: 0;
  }
  .resource-single .pdfs_feat_image .single-img {
    background-image: unset !important;
  }
  .resource-single .pdfs_feat_image .single-img img {
    border-radius: 15px;
    margin-bottom: 40px;
  }

  .success-stories-slider .story-item .story-img {
    padding-bottom: 80%;
  }

  .eventItemWrapper .card .card-body .question_event {
    margin-top: 10px;
  }

  input[name="locs_models"] {
    width: 30px;
    height: 30px;
    margin-bottom: 6px;
  }
  .checkbox-filters label {
    margin-top: 4px;
  }

} 

@media (max-width: 767.98px) {
  .h1,
  h1 {
    font-size: 42px;
  }
  .h2,
  h2 {
    font-size: 34px;
  }
  .h3,
  h3 {
    font-size: 26px;
  }
  .h4,
  h4 {
    font-size: 20px;
  }

  .resource-single h1 {
    font-size: 28px;
  }
  .resources-tags {
    display: block;
  }
  .resources-tags .share-item {
    padding-left: 8px;
    padding-top: 20px;
  }
  .resource-article .single-img {
    margin-bottom: 30px;
  }
  .resource-article .meta-divider {
    display: none;
  }
  .resource-article .single-author .published {
    display: block;
  }

  .resource-single .pdfs_feat_image .resources-tags {
    display: block;
  }
  .resource-single .pdfs_feat_image .resources-tags .share-item {
    padding-left: 8px;
    padding-top: 20px;
  }
  #main-footer .footer-sub-nav .menu-item {
    display: inline-block;
    max-width: 48%;
    width: 48%;
  }

  .model-tabs ul li a {
    font-size: 24px;
  }
 
  
}  
@media (max-width: 580.98px) {
  .resource-pdfs .related-files .related-item {
    display: block;
  }
  .resource-pdfs .icon-details {
    margin-top: 20px;
  }
  #main-footer .footer-sub-nav .menu-item .elementor-item {
    font-size: 14px;
  }
  .notification-bar-sec .notification-bar {
    padding: 0;
    margin-right: 20px;
  }
  .notification-bar-sec .close-notification-bar {
    width: 20px;
  }
}

@media (max-width: 576.98px) {
  #faqs_expand_all {
    position: relative;
  }

  
}
@media (max-width: 480.98px) {
  .h1,
  h1 {
    font-size: 36px;
  }
  .h2,
  h2 {
    font-size: 30px;
  }  
  .h3,
  h3 {
    font-size: 24px;
  }

  .success-stories-slider .story-item .story-img {
    padding-bottom: 100%;
  }
  .home-ani-content {
    margin-top: 0 !important;
  }
}