/* Default Styling */
:root {
    --title-font:'Roboto';
    --paragraph-font:'Roboto';
    --h1:82px;
    --h2:42px;
    --h3:32px;
    --h4:24px;
    --h5:20px;
    --p:18px;
    --sm:14px;
    --main_accent:#000;
    --p_accent:#555759;

    --black: :#000;
    --red: #F67280;
    --red-dark: #C06C84;
    --orange: #F8B195;
    --yellow: #FECEAB;
    --white: #FFF;
}
.h1, 
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: var(--title-font);
    color:var(--main_accent);
    font-weight: 300;
}
h1 {
    font-size: var(--h1);
    * {
        font-size: var(--h1);
    }
}
h2 {
    font-size: var(--h2);
    * {
        font-size: var(--h2);
    }
}
h3 {
    font-size: var(--h3);
    * {
        font-size: var(--h3);
    }
}
h4 {
    font-size: var(--h4);
    * {
        font-size: var(--h4);
    }
}
h5 {
    font-size: var(--h5);
    * {
        font-size: var(--h5);
    }
}
body,
p {
    font-size: var(--p);
    color:var(--p_accent);
}
a,
a:hover,
input,
input:hover,
button,
button:hover,
img,
header,
.inner_header,
svg {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
img {
    max-width: 100%;
    height: auto;
}
.margin-bottom-15 {
    margin-bottom: 15px;
}
.margin-bottom-30 {
    margin-bottom: 30px;
}
.margin-bottom-60 {
    margin-bottom: 60px;
}
.margin-bottom-90 {
    margin-bottom: 90px;
}
.margin-bottom-120 {
    margin-bottom: 120px;
}

.margin-top-15 {
    margin-top: 15px;
}
.margin-top-30 {
    margin-top: 30px;
}
.margin-top-60 {
    margin-top: 60px;
}
.margin-top-90 {
    margin-top: 90px;
}
.margin-top-120 {
    margin-top: 120px;
}

.padding-bottom-15 {
    padding-bottom: 15px;
}
.padding-bottom-30 {
    padding-bottom: 30px;
}
.padding-bottom-60 {
    padding-bottom: 60px;
}
.padding-bottom-90 {
    padding-bottom: 90px;
}
.padding-bottom-120 {
    padding-bottom: 120px;
}
.padding-bottom-180 {
    padding-bottom: 180px;
}
.padding-bottom-240 {
    padding-bottom: 240px;
}

.padding-top-15 {
    padding-top: 15px;
}
.padding-top-30 {
    padding-top: 30px;
}
.padding-top-60 {
    padding-top: 60px;
}
.padding-top-90 {
    padding-top: 90px;
}
.padding-top-120 {
    padding-top: 120px;
}
.padding-top-180 {
    padding-top: 180px;
}
.padding-top-240 {
    padding-top: 240px;
}
.left_text {
    text-align: left;
}
.centered_text {
    text-align: center;
}
.right_text {
    text-align: right;
}
.btn_1 {
    padding:15px 30px;
    border: solid thin #000;
    text-align: center;
    display: inline-block;
    background: #fff;
    color: #000;
    border-radius: 30px;
}
.btn_1:hover {
    background:#000;
    border: solid thin #000;
    color:#fff;
}
.btn_2 {
    padding:15px 30px;
    border: solid thin #fff;
    text-align: center;
    display: inline-block;
    background: #fff;
    color: #000;
    border-radius: 30px;
}
.btn_2:hover {
    background: #000;
    color: #fff;
    border: solid thin #000;
}
header .header-btn a  {
    padding:15px 30px;
    background:#fff;
    border: solid thin #fff;
    text-align: center;
    display: inline-block;
    color: #000;
    position: relative;
    border-radius: 30px;
}
header .header-btn a:hover {
    background:#000;
    border: solid thin #000;
    color:#fff; 
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
/* End Default Styling */
header {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    padding:30px 0;
    z-index: 100;
}
header.scroll-nav {
    background: rgba(0, 0, 0, 0.5);
    padding:15px 0;
}
header ul {
    text-align: right;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
header ul>li {
    display: inline-block;
    margin-left: 30px;
}
header ul>li>a {
    color: #fff;
    font-size: var(--p);
    border-bottom:solid thin transparent;
    padding-bottom:2px;
}
header ul>li>a:hover {
    color:#fff;
    border-bottom-color:#fff;
}
.banner-home-con {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}
.banner-home-con strong {
    font-size: var(--h1);
    margin-bottom: 30px;
    color:#fff;
    font-weight: 400;
}
.banner-home-con p {
    margin-bottom: 0;
    color:#fff;
    font-size: var(--h4);
}


.scroll_down_box_second {
}

.scroll_down_box_first img {
    animation: pulse_down 2.4s ease 1s infinite;
    opacity: .2;
    width: 22px
}

.scroll_down_box_second img {
    animation: pulse_down 2.5s ease 1.2s infinite;
    opacity: .2;
    width: 22px
}

.secondary_text .text {
    color: #fff;
    display: block;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: var(--title-font)
}
.scroll_down_box,
.secondary_text {
    align-items: center;
    display: flex;
    width: 100%
}

.secondary_text {
    flex-direction: column;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
}
@keyframes pulse_down {
    0% {
        opacity: .2
    }

    50% {
        opacity: 1
    }

    to {
        opacity: .2
    }
}

@keyframes pulse {
    to {
        opacity: 1
    }
}
.section-title h1 {
    font-size: var(--h2);
}

.section-title_1 {

}   
.section-title_1 h1 {
        margin-bottom: 30px;
}
.section-title_1 p {
    margin-bottom: 0;
}
.items_banner {

}
.flex-1-banner {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-2-banner {

}
.main-img-vid {
    overflow: hidden;
    border-radius: 30px;
}
.main-img-vid,
.main-img-vid-single {
    position: relative;
}
.main-img-vid a, 
.main-img-vid-single a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.main-img-vid a h1 {
    font-size: var(--h3);
    color: #fff;
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 2;
}
.main-img-vid a span,
.main-img-vid-single a span {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #00ADD8;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
}
.main-img-vid a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.main-img-vid img,
.main-img-vid-single img {
    width: 100%;
    height: auto;
}
.main-img-vid a span svg {
    fill: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 40px;
    height: auto;
    position: absolute;
}
.sm-video-carousel {
    padding: 0 92px;
}
.sm-video-carousel div.owl-item div {
    position: relative;
}
.sm-video-carousel div.owl-item a {
    display: inline;
    width: 100%;
}
.sm-video-carousel .owl-prev svg {
    width: 30px;
    height: auto;
    fill:#fff;
}
.sm-video-carousel .owl-next svg {
    width: 30px;
    height: auto;
    fill:#fff;
}
.sm-video-carousel .owl-next:hover,
.sm-video-carousel .owl-prev:hover {
    background:#000 !important;
}

.sm-video-carousel div.owl-item div h3 {
    position: absolute;
    left: 15px;
    bottom: 15px;
    font-size:var(--h4);
    color: #fff;
    z-index: 2;
}
.sm-video-carousel div.owl-item a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.sm-video-carousel .owl-nav.disabled {
	display:block !important;
}
.sm-video-carousel .owl-prev {
    position:absolute;
    left:0;
    top:0;
    width:90px;
    height:100%;
    background:#00ADD8 !important;
    text-align:center;
    display: -webkit-flex;
    display: flex;
    align-items:center;
    justify-content:center;
}
.sm-video-carousel .owl-next {
    position:absolute;
    right:0;
    top:0;
    width:90px;
    height:100%;
    background:#00ADD8 !important;
    text-align:center;
    display: -webkit-flex;
    display: flex;
    align-items:center;
    justify-content:center;
}
.section-title:has(p) h2 {
    margin-bottom: 30px;
}
.section-title p {
    margin-bottom: 0;
    font-size: var(--h4);
}
button:focus {
  outline: none;
  box-shadow: none;
}
.curriculum_panel {

}
.curriculum_flex {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}
.curriculum_flex div p {
    margin-bottom: 0;
}
.curriculum_panel span {
    margin-right: 30px;
    width: 120px;
    height: 120px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background:#00ADD8;    
    border-radius: 100%;
}
.curriculum_panel svg {
    fill:#fff;
    width: 100%;
    max-height: calc(100% - 60px);
    max-width: calc(100% - 60px);
}
.curriculum_panel h3 {
    margin-bottom: 3.75px;
}
.curriculum_panel p sm {
    font-size: var(--sm);
}
.img_banner {
    min-height: 560px;
}
.blue_banner {
    background:#00ADD8;
}
.blue_banner h2 {
    color:#fff;
    font-size: var(--h1);
}
.blue_banner h3 {
    color:#fff;
    font-size: var(--h2);
    margin-bottom: 1rem;
}
.blue_banner p {
    color:#fff;
    font-size: var(--h4);
}
.testimonial_section {

}
.testimonial_section p {
    font-size: var(--h4);
    color:#fff;
    margin-bottom: 0;
}
.testimonial_section h4 {
    color:#fff;
    display: inline-block;
    font-size: var(--p);
    border-top: solid 2px #B7DC78;
    margin-top: 30px;
    padding-top: 30px;
    display: inline-block;
}
.event_section h2 {
    margin-bottom: 30px;
}
.event_section a:not(.btn) svg {
    fill:var(--p_accent);
    width: 20px;
    height: auto;
    margin-left: 7.5px;
}

.event_section a:not(.btn) {
    color:#fff;
    display: inline-block;
    width: 100%;
    margin-bottom: 1rem;
    background:#00ADD8;
    border:solid thin #00ADD8;
    padding:15px 30px;
    border-radius: 0.5rem;
}
.event_section a:not(.btn) svg {
    fill:#fff;
    margin-top: 10px;
    float: right;
}
.event_section a:not(.btn):hover {
    background:#fff;
    color:#00ADD8;
}
.event_section a:not(.btn):hover svg {
    fill:#00ADD8;
}
.event_section a.btn {
    background:#00ADD8;
    border-color:#00ADD8;
    color:#fff;
}
.event_section a.btn:hover {
    color:#00ADD8;
    background-color: #fff;
}
.event_section .blue_banner h2 {
    font-size: var(--h2);
}
.event_section .blue_banner a:not(.btn) {
    color:#00ADD8;
    display: inline-block;
    width: 100%;
    margin-bottom: 1rem;
    background:#fff;
    border:solid thin #fff;
    padding:15px 30px;
    border-radius: 0.5rem;
}
.event_section .blue_banner a:not(.btn) svg {
    fill:#00ADD8;
    margin-top: 10px;
    float: right;
}
.event_section .blue_banner a:not(.btn):hover {
    background:#00ADD8;
    color:#fff;
}
.event_section .blue_banner a:not(.btn):hover svg {
    fill:#fff;
}
.event_section a.btn {
    margin-top: 30px;
}

.event_section .blue_banner a.btn {
    background:#fff;
    border-color:#fff;
    color:#00ADD8;
}
.event_section .blue_banner a.btn:hover {
    color:#fff;
    background-color: #00ADD8;
}

footer {
    border-top:solid 2px #00ADD8;
}
.footer_1 p a {
    color:var(--p_accent);
}
footer h4 {
    margin-bottom: 1rem;
    font-size: var(--p);
    font-weight: bold;
}
footer ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
footer ul>li {
    margin-bottom: 0.5rem;
}
footer ul>li>a {
    color:var(--p_accent);
    border-bottom: solid thin transparent;
    padding-bottom: 2px;
}
footer ul>li>a:hover {
    color:#00ADD8;
    border-bottom:solid thin #00ADD8;
}

.sub_blue {
    padding:15px 0;
    background-color: #00ADD8;
}
.sub_blue p {
    color:#fff;
    margin-bottom: 0;
    font-size: var(--sm);
}
.sub_blue p a {
    color:#fff;
}
.parent_portal_fixed {
    position: fixed;
    bottom:0;
    right:15px;
    background:rgba(0,0,0,0.9);
    padding:15px 30px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    z-index: 10;
}
.parent_portal_fixed ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    text-align: center;
}
.parent_portal_fixed ul li:not(.social-icon) a {
    display: inline-flex;
    align-items: center;
    width: 100%;
}
.parent_portal_fixed ul>li>a {
    color:#fff;
}
.parent_portal_fixed ul>li:not(.social-icon)>a svg {
    fill:#fff;
    width: 20px;
    height: auto;
    margin-left: 7.5px;
}
.parent_portal_fixed ul>li.social-icon>a svg {
    fill:#fff;
    width: 20px;
    height: auto;
}
.parent_portal_fixed ul>li.social-icon>a {
    margin-right: 7.5px;
}
.parent_portal_fixed ul>li.social-icon.social-icon {
    display: inline-block;
    margin-top: 7.5px;
}
.default_header {
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.default_header h1 {
    color:#fff;
}
.default_container {

}
.default_container h2 {
    margin-bottom:1rem;
}
.default_container h3,
.default_container h4  {
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.default_container img {
    width:100%;
    border-radius: 1rem;
}
.default_container p:has(img) {
    margin-bottom: 30px;
}
.default_container div a {
    font-size: 1rem;
    line-height: 1.25;
    white-space: nowrap;
    vertical-align: middle;
    padding: 15px 30px;
    border: solid thin #000;
    text-align: center;
    display: inline-block;
    background: #fff;
    color: #000;
    border-radius: 30px;   
}
.default_container div.default_links a {
    background: transparent;
    border-radius: 0;
    color: inherit;
    text-align: inherit;
    border: none;
    padding: 0 0 0 0;
    line-height: inherit;
    font-size: inherit;
    line-height: inherit;
    vertical-align: auto !important;
    text-decoration: underline !important;
}
.default_container a:hover {
    background:#000;
    border: solid thin #000;
    color:#fff;
}
.default_container blockquote {
    padding-left: 30px;
    border-left: solid 4px #00ADD8;
}
.default_container blockquote em {
    margin-bottom: 1rem;
    display: inline-block;
    font-size: var(--h5);
    width: 100%;
}
.default_container .column_items:not(*:has(h3)) h2 {
    margin-bottom: 0.5rem;
    font-size: var(--h3);
}
.default_container .column_items:has(h2) blockquote {
    margin-top: 30px;
}
.default_container iframe {
    width: 100%;
    position: absolute;
    top:0;
    left:0;
    height: 100%;
}
.default_container p:has(iframe) {
    width:100%;
    padding-bottom: 56.6%;
    position: relative;
    overflow: hidden;
}
.default_container tr th {
    width: 25%;
}
.default_container tr th:nth-child(1) {
    width:50%;
}

.default_container table {
    width:100%;
    margin-bottom: 30px;
}

.blue_bg {
    margin-bottom: 1rem;
}
.blue_bg>div {
    background-color: #00add8;
    padding-top: 120px;
    padding-bottom: 120px;
    text-align: center;
}
.blue_bg>div * {
    color:#fff;
}
.blue_bg>div a {
    border-color:#fff;
    color:#fff;
    background:transparent;
    margin-top: 1rem;
}
.blue_bg>div a:hover {
    background:#fff;
    color:#00add8;
}
.panel_item>div {
border-radius: 0.25rem;
    overflow: hidden;
    margin-bottom: 30px;
    padding:30px;
    box-shadow: 0px 3px 30px #00000014;
    text-align: center;
    display: inline-block;
    width: 100%;
    height: calc(100% - 30px);
    border-radius: 0.5rem;  
}
.panel_item>div strong {
    margin-bottom: 1rem;
    display: inline-block;
    width: 100%;
}
.faculty_row {

}

.profile_img {
    height:0;
    padding-bottom: 125%;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}
.profile_img img {
    position: absolute;
    top:0%;
    left:50%;
    width: auto;
    height: 100%;
    transform:translateX(-50%);
    -webkit-transform:translateX(-50%);
}

header ul.sub-menu {
    text-align: left;
}
header ul>li.menu-item-has-children {
    position: relative;
}
header ul>li>ul.sub-menu>li {
    margin-left: 0;
    min-width: 250px;
    margin-bottom: 0.25rem;
}
header ul>li>ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    padding: 5px 0;
    margin: 2px 0 0;
    margin-top: 0px;
    list-style: none;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-clip: padding-box;
}
header ul>li.menu-item-has-children>.sub-menu {
    top: 100%;
    left: 0px;
    padding:15px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}
header ul>li.menu-item-has-children:hover>.sub-menu {
    display: block;
}
header ul>li.menu-item-has-children>.sub-menu>li>.sub-menu {
    left: 100%;
    top:0;
}
.top_title_h2 h2 {
    margin-bottom: 2rem;
}
.sidebar_items {

}
.sidebar_items h2 {
    margin-bottom: 1rem;
}
.sidebar_items ul {
    list-style: none;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-left: 0;
}
.default_container div.sidebar_items a,
.default_container div.portal_resources a  {
    background: transparent;
    border-radius: 0;
    color: inherit;
    text-align: inherit;
    border: none;
    padding: 0 0 0 0;
    line-height: inherit;
    font-size: inherit;
    line-height: inherit;
    vertical-align: auto !important;
    text-wrap: auto;
    text-decoration: underline !important; 
}
.default_container div.sm_titles h2 {
    margin-bottom: 0.5rem;
    font-size: var(--h3);
}
.default_container div.sm_titles h3 {
    margin-bottom: 0.5rem;
    font-size: var(--h4);
    margin-top: 3rem;
}
.faqs_row h3 {
    line-height: normal;
    text-align: left;
	margin-bottom: 0;
	border-bottom: none;
	cursor: pointer;
    font-size: var(--p);
    font-weight: bold;
    margin-top: 0 !important;
}
.ui-accordion-content {
	border-top: none;
	padding:15px 0;
}	
.ui-accordion-content p:nth-last-child(1) {
    margin-bottom: 0;
}
.faqs_row h3:before {
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    color: #000;
    font-family: "Font Awesome 5 Pro";
    content: "\f067";
    float: right;
    font-weight: 300;
    line-height: 38px;
}
.faqs_row h3.ui-state-active:before {
	content: '\f068';
}

.faqs_row {
    background: #FFFFFF;
    box-shadow: 0px 3px 30px #00000014;
    padding: 30px;
    margin-bottom: 60px;
    border-radius: 7.5px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    margin-bottom: 15px;
    padding: 15px 30px;
}
.faqs_row:hover {
    opacity: 1;
}
.responsive-iframe {
    border-radius: 30px;
    height: 0;
    padding-bottom: 56.6%;
    position: relative;
    overflow: hidden;
    border:solid thin #00ADD8;
}
.responsive-iframe iframe {
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    position: absolute;
    top: -7.5px;
    left: -7.5px;
}
.side_content h3 {
    margin-top: 0;
}
.side_content ol {
    padding-left: 15px;
}
.side_content ol>li {
    margin-bottom: 7.5px;
}
.blue-bg .column_items div {
    margin-bottom: 30px;
    border-radius: 30px;
    background: #00ADD8;
    padding: 60px 60px;
}
.blue-bg .column_items div * {
    color:#fff;
}
.blue-bg .column_items div h3 {
    margin-top: 0;
}
.blue-bg .column_items div p:nth-last-child(1) {
    margin-bottom: 0;
}
.blue-bg .column_items div blockquote {
    padding-left: 0;
    border-left: none;
}
.column_items .img_left p:has(img) {
    position: relative;
    display: inline-block;
    width: 100%;
    background: #00ADD8;
    border-radius: 25px;
    padding: 1px;
    padding-bottom: 7.5px;   
    border-bottom-left-radius: 15px;
    padding-left: 7.5px;
}
.column_items .img_right p:has(img) {
    position: relative;
    display: inline-block;
    width: 100%;
    background: #00ADD8;
    border-radius: 25px;
    padding: 1px;
    padding-bottom: 7.5px;
    border-bottom-right-radius: 15px;
    padding-right: 7.5px;
}
.column_items img {

}
#wprmenu_bar .menu_title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#modal {
	
}
.popup_v2 {
	text-align:center;
	background: #009cc2;
	color: #fff;
	width: calc(100% - 30px);
	border-radius:7px;
	padding:30px 30px 30px;
}
.popup_v2 img {
	max-width:400px;
}
.popup_v2#modal h3 {
	color:#fff;
	margin-bottom:7.5px;
}
.popup_v2 p {
	margin-bottom:15px;
	color:#fff;
}
.popup_v2#modal a {
	display:inline-block;
	width:auto;
	background:#fff;
	padding:0 30px;
	padding: 7px 30px;
	border-radius:7px;
	border:solid thin #fff;
	font-size:16px;
}
.popup_v2#modal a:hover {
	background:transparent;
	color:#fff;
}
.popup_v2 p:nth-last-child(1) {
	margin-bottom:0;
}
#modal img{
	max-width:100%;
	height:auto;
}
#modal button {
	background:#009cc2;
	color:#fff;
	border-radius:0;
	border:none;
	cursor:pointer;
}
#modal a {
    color: #009cc2;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    display: block;
}
#modal h3 {
	color: #009cc2;
	font-size: 32px;
	margin-top: 0;
	margin-bottom: 15px;
}
#trueModal p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #555759;
}
/* Responsive Styling */

@media (max-width: 1199.98px) {
    
}

@media (max-width: 991.98px) {
    :root {
        --h1:52px;
        --h2:42px;
        --h3:32px;
        --h4:22px;
        --h5:20px;
        --p:18px;
        --sm:14px;
    }
    h1,h2,h3,h4,h5,h6,.banner-home-con strong {
        font-weight: 500;
    }
    .margin-bottom-60 {
        margin-bottom: 30px;
    }
    .margin-bottom-90 {
        margin-bottom: 60px;
    }
    .margin-bottom-120 {
        margin-bottom: 60px;
    }
    .margin-top-60 {
        margin-top: 30px;
    }
    .margin-top-90 {
        margin-top: 60px;
    }
    .margin-top-120 {
        margin-top: 60px;
    }
    .padding-bottom-60 {
        padding-bottom: 30px;
    }
    .padding-bottom-90 {
        padding-bottom: 60px;
    }
    .padding-bottom-120 {
        padding-bottom: 60px;
    }
    .padding-bottom-180 {
        padding-bottom: 60px;
    }
    .padding-bottom-240 {
        padding-bottom: 60px;
    }
    .padding-top-60 {
        padding-top: 30px;
    }
    .padding-top-90 {
        padding-top: 60px;
    }
    .padding-top-120 {
        padding-top: 60px;
    }
    .padding-top-180 {
        padding-top: 60px;
    }
    .padding-top-240 {
        padding-top: 60px;
    } 
}

@media (max-width: 767.98px) {
    :root {
        --h1:52px;
        --h2:32px;
        --h3:24px;
        --h4:18px;
        --h5:18px;
        --p:18px;
        --sm:14px;
    }
    * {
        line-height: 1.25;
    }
    .section-title_1 h1,
    .banner-home-con strong,
    .section-title:has(p) h2,
    .blue_banner h2 {
        margin-bottom: 1rem;
    }
    .banner-home-con strong {
        display: inline-block;
    }
    .img_banner {
        display: none;
    }
    .curriculum_panel.margin-bottom-60 {
        margin-bottom: 60px;
    }
    .profile_img_outer {
        margin-bottom: 1rem;
    }
    .profile_img {
        padding-bottom: 150%;
    }
    .default_container h2 {
        margin-bottom: 1rem;
    }
    .sidebar_items {
        display: none;
    }
}

/* End Responsive Styling */