/*
Table of Contents
1. Generic ----------------------------------------
01. Fonts -------------------------------------
02. Base --------------------------------------
03. Helpers -----------------------------------
2. Page Sections ----------------------------------
01. Wrapper -----------------------------------
02. Header ------------------------------------
03. Main Content ------------------------------
04. Footer ------------------------------------
*/

/* ==========================================================================
I. Generic
========================================================================== */

/* ------------------------------------------------------------
Fonts
------------------------------------------------------------ */

@font-face {
    font-family: "Public Sans";
    src: url("../fonts/PublicSans-Medium.woff2") format("woff2"),
        url("../fonts/PublicSans-Medium.woff") format("woff"),
	    url("../fonts/PublicSans-Bold.ttf");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Public Sans";
    src: url("../fonts/PublicSans-ExtraBold.woff2") format("woff2"),
        url("../fonts/PublicSans-ExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Public Sans";
    src: url("../fonts/PublicSans-SemiBold.woff2") format("woff2"),
        url("../fonts/PublicSans-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Public Sans";
    src: url("../fonts/PublicSans-Bold.woff2") format("woff2"),
        url("../fonts/PublicSans-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Blacker Pro Display";
    src: url("../fonts/Blacker-Pro-Display-Medium.woff2") format("woff2"),
        url("../fonts/Blacker-Pro-Display-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* ------------------------------------------------------------
Base
------------------------------------------------------------ */

html {
    color: #000000;
    font-size: 10px;
    line-height: 1.5;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

::-ms-clear {
    display: none;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

img {
    max-width: 100%;
    height: auto;
}

a img[src$=".svg"],
figure > a img[src$=".svg"] {
    width: auto !important;
}

a img[src$=".svg"] {
    width: auto !important;
}

body p {
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    color: inherit;
    font-weight: inherit;
}

p {
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    line-height: inherit;
    font-weight: inherit;
    text-transform: inherit;
}

a {
    font-family: inherit;
    font-weight: inherit;
    text-decoration: underline;
    color: inherit;
    font-size: inherit;
    transition: all 0.3s;
}

a:hover {
    text-decoration: none;
    color: #b70404;
}

p a {
    font-weight: inherit;
    color: #b70404;
    text-decoration: none;
}

body a,
body p a {
    color: #b70404;
    text-decoration: none;
    font-weight: 700;
}

body a,
body p a:hover {
    color: #b70404;
    text-decoration: underline;
    font-weight: 700;
}

body a[href*="tel:"], body p a[href*="tel:"],
body a[href*="mailto:"], body p a[href*="mailto:"]{
    display: inline-block
}

/* / =----------------------------UL/OL---------------------------- / */

body ul {
    font-size: inherit;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

body ul:not([class]) > li,
body ul:not([class]) li ol li ul:not([class]) > li,
body ol li ul:not([class]) > li {
    font-size: inherit;
    line-height: 1.75;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    margin-bottom: 12px;
    padding-left: 41px;
    position: relative;
}

body ul:not([class]) li:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: url("../img/arrow-bullet.svg") center center no-repeat;
    background-size: contain;
    left: 0;
    top: -2px;
}

body ul:not([class]) li ul:not([class]) > li,
body ul:not([class]) li ol > li,
body ul:not([class]) li ol li ul:not([class]) > li {
    margin-bottom: 12px;
    margin-top: 11px;
    padding-left: 20px;
}

body ul:not([class]) li ol > li {
    padding-left: 5px;
}

body ul:not([class]) li ul:not([class]) > li:before,
body ul:not([class]) li ol li ul:not([class]) > li:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #b70404;
    border-radius: 50%;
    left: 0;
    top: 9px;
}

body ul.list-has-arrows > li,
body ul.list-has-arrows li ol li ul.list-has-arrows > li,
body ol li ul.list-has-arrows > li {
    font-size: inherit;
    line-height: 1.75;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    margin-bottom: 12px;
    padding-left: 41px;
    position: relative;
}

body ul.list-has-arrows li:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: url("../img/arrow-bullet.svg") center center no-repeat;
    background-size: contain;
    left: 0;
    top: -2px;
}

body ul.list-has-arrows li ul.list-has-arrows > li,
body ul.list-has-arrows li ol > li,
body ul.list-has-arrows li ol li ul.list-has-arrows > li {
    margin-bottom: 12px;
    margin-top: 11px;
    padding-left: 20px;
}

body ul.list-has-arrows li ol > li {
    padding-left: 5px;
}

body ul.list-has-arrows li ul.list-has-arrows > li:before,
body ul.list-has-arrows li ol li ul.list-has-arrows > li:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #b70404;
    border-radius: 50%;
    left: 0;
    top: 9px;
}

body ol {
    list-style: decimal outside;
    font-size: inherit;
    padding-left: 18px;
    margin-left: 10px;
}

body ol li,
body ol li ul:not([class]) li ol > li {
    font-size: inherit;
    line-height: 1.75;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    margin-bottom: 18px;
    padding-left: 5px;
    position: relative;
}

body ul:not([class]) li ul:not([class]),
body ol li ul:not([class]),
body ol li ol,
body ul:not([class]) li ol {
    margin-left: 25px;
    margin-bottom: 16px;
}

ul ol li::before {
    display: none !important;
}

ol li::marker,
ul ol li::marker {
    font-weight: 700;
    color: #b70404;
}

body .h-space-50 h1,
body .h-space-50 h2,
body .h-space-50 h3,
body .h-space-50 h4,
body .h-space-50 h5,
body .h-space-50 h6 {
    margin-bottom: 50px;
    margin-top: 50px;
}

body .h-space-40 h1,
body .h-space-40 h2,
body .h-space-40 h3,
body .h-space-40 h4,
body .h-space-40 h5,
body .h-space-40 h6 {
    margin-bottom: 40px;
    margin-top: 40px;
}

body .h-space-24 h1,
body .h-space-24 h2,
body .h-space-24 h3,
body .h-space-24 h4,
body .h-space-24 h5,
body .h-space-24 h6 {
    margin-bottom: 24px;
    margin-top: 24px;
}

body .h-space-16 h1,
body .h-space-16 h2,
body .h-space-16 h3,
body .h-space-16 h4,
body .h-space-16 h5,
body .h-space-16 h6 {
    margin-bottom: 16px;
    margin-top: 16px;
}

body .h-space-50 h1:first-child,
body .h-space-40 h1:first-child,
body .h-space-24 h1:first-child,
body .h-space-16 h1:first-child,
body .h-space-50 h2:first-child,
body .h-space-40 h2:first-child,
body .h-space-24 h2:first-child,
body .h-space-16 h2:first-child,
body .h-space-50 h3:first-child,
body .h-space-40 h3:first-child,
body .h-space-24 h3:first-child,
body .h-space-16 h3:first-child,
body .h-space-50 h4:first-child,
body .h-space-40 h4:first-child,
body .h-space-24 h4:first-child,
body .h-space-16 h4:first-child,
body .h-space-50 h5:first-child,
body .h-space-40 h5:first-child,
body .h-space-24 h5:first-child,
body .h-space-16 h5:first-child,
body .h-space-50 h6:first-child,
body .h-space-40 h6:first-child,
body .h-space-24 h6:first-child,
body .h-space-16 h6:first-child {
    margin-top: 0;
}

body .h-space-50 h1:last-child,
body .h-space-40 h1:last-child,
body .h-space-24 h1:last-child,
body .h-space-16 h1:last-child,
body .h-space-50 h2:last-child,
body .h-space-40 h2:last-child,
body .h-space-24 h2:last-child,
body .h-space-16 h2:last-child,
body .h-space-50 h3:last-child,
body .h-space-40 h3:last-child,
body .h-space-24 h3:last-child,
body .h-space-16 h3:last-child,
body .h-space-50 h4:last-child,
body .h-space-40 h4:last-child,
body .h-space-24 h4:last-child,
body .h-space-16 h4:last-child,
body .h-space-50 h5:last-child,
body .h-space-40 h5:last-child,
body .h-space-24 h5:last-child,
body .h-space-16 h5:last-child,
body .h-space-50 h6:last-child,
body .h-space-40 h6:last-child,
body .h-space-24 h6:last-child,
body .h-space-16 h6:last-child {
    margin-bottom: 0;
}

body .p-space-16 p {
    margin-top: 16px;
}

body .p-space-24 p {
    margin-top: 24px;
}

body .p-space-32 p {
    margin-top: 32px;
}

body .p-space-32 p:first-of-type {
    margin-top: 24px;
}

body .h-space-16 h1,
body .h-space-16 h2,
body .h-space-16 h3,
body .h-space-16 h4,
body .h-space-16 h5,
body .h-space-16 h6 {
    margin-top: 16px;
    margin-bottom: 16px;
}

body .p-space-16 p:first-child,
body .p-space-24 p:first-child,
body .p-space-32 p:first-child {
    margin-top: 0px;
}

body .btn-col-24 .btn-col {
    margin-top: 24px;
}

body .btn-col-32 .btn-col {
    margin-top: 32px;
}

body .btn-col-40 .btn-col {
    margin-top: 40px;
}

.wp-block-cover {
    margin: 30px 0 32px 0;
    padding: 24px 24px 20px 24px;
}

.wp-block-cover p {
    margin: 0 !important;
    color: #05213b !important;
}

.wp-block-cover p:not(:first-child) {
    margin: 16px 0 0 0;
}

/* body .ul-16 ul{
    margin-top: 16px;
    margin-bottom: 16px;
}
 
body .ul-24 ul{
    margin-top: 24px;
    margin-bottom: 24px;
}
 
body .ul-16 ul:last-child,
body .ul-24 ul:last-child{
    margin-bottom: 0px;
} */

/* / =----------------------------UL/OL---------------------------- / */

/* ------------------- Container -------------------- */

.wpb-container {
    max-width: 1380px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
    display: block;
    width: 100%;
    position: relative;
    z-index: 10;
}

.lg-container {
    max-width: 1230px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
    display: block;
    width: 100%;
    position: relative;
    z-index: 10;
}

.semi-md-container{
    max-width: 1170px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
    display: block;
    width: 100%;
    position: relative;
    z-index: 10;
}

.md-container {
    max-width: 970px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
    display: block;
    width: 100%;
    position: relative;
    z-index: 10;
}
.sm-container {
    max-width: 770px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
    display: block;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* ------------------- Container -------------------- */

h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
    margin-bottom: 0;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    line-height: 28px;
    color: #05213b;
}

body h1,
body .h1 {
    font-size: 64px;
    font-family: "Blacker Pro Display", Georgia, "Times New Roman", Times, serif;
    font-weight: 500;
    line-height: 74px;
}

body h2,
body .h2,
body h2.has-huge-font-size,
body h3.has-huge-font-size,
body h4.has-huge-font-size,
body h5.has-huge-font-size,
body h6.has-huge-font-size {
    font-size: 54px;
    font-family: "Blacker Pro Display", Georgia, "Times New Roman", Times, serif;
    font-weight: 500;
    line-height: 62px;
}

body h3,
body .h3,
body h2.has-large-font-size,
body h3.has-large-font-size,
body h4.has-large-font-size,
body h5.has-large-font-size,
body h6.has-large-font-size {
    font-size: 44px;
    font-family: "Blacker Pro Display", Georgia, "Times New Roman", Times, serif;
    font-weight: 500;
    line-height: 50px;
}

body h4,
body .h4,
body h2.has-medium-font-size,
body h3.has-medium-font-size,
body h4.has-medium-font-size,
body h5.has-medium-font-size,
body h6.has-medium-font-size {
    font-size: 34px;
    font-family: "Blacker Pro Display", Georgia, "Times New Roman", Times, serif;
    font-weight: 500;
    line-height: 44px;
}

body h5,
body .h5,
body h2.has-normal-font-size,
body h3.has-normal-font-size,
body h4.has-normal-font-size,
body h5.has-normal-font-size,
body h6.has-normal-font-size {
    font-size: 34px;
    font-family: "Blacker Pro Display", Georgia, "Times New Roman", Times, serif;
    font-weight: 500;
    line-height: 39px;
}

body h6,
body .h6,
body h2.has-small-font-size,
body h3.has-small-font-size,
body h4.has-small-font-size,
body h5.has-small-font-size,
body h6.has-small-font-size {
    font-size: 24px;
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    line-height: 28px;
}

.lead-1,
.lead-1 p,
p.has-large-font-size {
    font-size: 22px;
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    line-height: 36px;
}

.lead-2,
.lead-2 p,
.has-medium-font-size {
    font-size: 18px;
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    line-height: 32px;
}

/* ------------------------------------------------------------
Helpers
------------------------------------------------------------ */

.invisible {
    visibility: hidden !important;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

/* / ----------------------Button style---------------------- / */

body [type="button"],
body [type="button"]:focus,
body [type="submit"],
body [type="submit"]:focus,
body button:focus,
body button,
body .btn {
    color: #05213b;
    background-color: #efac21;
    font-size: 16px;
    line-height: 19px;
    padding: 21px 30px 20px;
    font-weight: 700;
    border: 0;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    border-radius: 3px;
    -webkit-appearance: none;
    transition: all 0.3s;
    box-sizing: border-box;
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    max-width: 100%;
}
body [type="button"]:disabled,
body [type="submit"]:disabled,
body button:disabled,
body .btn:disabled {
    color: #797878;
    background-color: #c2c2c2;
    cursor: not-allowed;
}
body [type="button"]:disabled:hover,
body [type="submit"]:disabled:hover,
body button:disabled:hover,
body .btn:disabled:hover {
    color: #797878;
    background-color: #c2c2c2;
    cursor: not-allowed;
}

body button:after,
body .btn:after,
body [type="submit"]:after {
    content: "";
    width: 160px;
    display: block;
    max-width: 100%;
}

body button.size-lg-button:after,
body .btn.size-lg-button:after {
    width: 229px;
}

body [type="button"]:hover,
body [type="button"]:focus:hover,
body [type="submit"]:hover,
body [type="submit"]:focus:hover,
body button:focus:hover,
body button:hover,
body .btn:hover {
    background-color: #ffba2f;
    color: #05213b;
    text-decoration: none;
}

body .blue-button[type="button"],
body .blue-button[type="button"]:focus,
body .blue-button[type="submit"],
body .blue-button[type="submit"]:focus,
body button.blue-button:focus,
body button.blue-button,
body .btn.blue-button {
    color: #ffffff;
    background-color: #144282;
}

body .blue-button[type="button"]:hover,
body .blue-button[type="button"]:focus:hover,
body .blue-button[type="submit"]:hover,
body .blue-button[type="submit"]:focus:hover,
body button.blue-button:focus:hover,
body button.blue-button:hover,
body .btn.blue-button:hover {
    background-color: #145abb;
    color: #fff;
    text-decoration: none;
}

body .red-button[type="button"],
body .red-button[type="button"]:focus,
body .red-button[type="submit"],
body .red-button[type="submit"]:focus,
body button.red-button:focus,
body button.red-button,
body .btn.red-button {
    color: #ffffff;
    background-color: #b70404;
}

body .red-button[type="button"]:hover,
body .red-button[type="button"]:focus:hover,
body .red-button[type="submit"]:hover,
body .red-button[type="submit"]:focus:hover,
body button.red-button:focus:hover,
body button.red-button:hover,
body .btn.red-button:hover {
    background-color: #ec1515;
    color: #fff;
    text-decoration: none;
}

body .green-button[type="button"],
body .green-button[type="button"]:focus,
body .green-button[type="submit"],
body .green-button[type="submit"]:focus,
body button.green-button:focus,
body button.green-button,
body .btn.green-button {
    color: #ffffff;
    background-color: #36a1ab;
}

body .green-button[type="button"]:hover,
body .green-button[type="button"]:focus:hover,
body .green-button[type="submit"]:hover,
body .green-button[type="submit"]:focus:hover,
body button.green-button:focus:hover,
body button.green-button:hover,
body .btn.green-button:hover {
    background-color: #39cad7;
    color: #fff;
    text-decoration: none;
}

html body .size-sm-button {
    font-size: 14px;
    line-height: 15px;
    padding: 16px 24px 15px;
    font-weight: 700;
}

/* / ----------------------link anchor---------------------- / */

html body a.text-link,
html body button.text-link {
    background: url(../img/icon-btn.svg) left top no-repeat;
    background-size: 30px 30px !important;
    padding: 2px 0 2px 42px;
    color: #b70404;
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    text-decoration: none;
    text-transform: none;
    display: inline-block;
    margin-bottom: -2px;
}

html body a.text-link:after,
html body button.text-link:after {
    display: none;
}

html body a.text-link:hover,
html body button.text-link:hover {
    background-color: transparent;
    text-decoration: underline;
}

p.has-text-color a{
    color: #b70404;
}

/* ---------------- Select Styling ------------------ */

select,
body .gform_wrapper select {
    padding: 7px 35px 7px 15px !important;
    position: relative;
    height: 40px;
    z-index: 4;
    text-overflow: ellipsis;
    cursor: pointer;
    border-radius: 3px;
    background: #fff url(../img/sort-down-duotone.svg) right 13px center
        no-repeat;
    background-size: auto;
    border: solid 2px #e1e7eb;
    box-shadow: none;
    font-size: 16px;
    line-height: 19px;
    color: #5d6f80;
    text-transform: none;
    letter-spacing: 0px;
    transition: all 0.3s;
    display: block;
    width: 100%;
    outline: none;
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    -webkit-appearance: none;
    display: block;
}

select:focus {
    border: 2px solid #05213b;
}

body select options {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    z-index: 9;
    margin: 0 !important;
    padding: 0;
    list-style: none;
    background: #fff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    max-height: 300px;
    overflow-y: auto;
    border: solid 1px #cacaca;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.select{
    position: relative;
    width: 100%
}

.styledSelect{
    padding: 7px 35px 7px 15px;
    position: relative;
    height: 40px;
    z-index: 4;
    text-overflow: ellipsis;
    cursor: pointer;
    border-radius: 3px;
    background: #fff url(../img/sort-down-duotone.svg) right 13px center no-repeat;
    background-size: auto;
    border: solid 2px #e1e7eb;
    box-shadow: none;
    font-size: 16px;
    line-height: 19px;
    color: #5d6f80;
    text-transform: none;
    letter-spacing: 0px;
    transition: all 0.3s;
    display: block;
    width: 100%;
    outline: none;
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.styledSelect.disable-selection {
    pointer-events: none;
    opacity: 0.8;
}

.select .options{
    position: absolute;
    color: #5d6f80;
    background-color: #ffffff;
    width: 100%;
    top: calc(100% + 4px);
    border-radius: 3px;
    border: solid 2px #e1e7eb;
    z-index: 10;
    display: none;
    max-height: 256px;
    overflow: auto;
}

.select .options > li {
    padding: 7px 35px 7px 15px;
    cursor: pointer;
    transition: 0.3s all;
}

.select .options > li:hover {
    background-color: #eaeaea;
}

.select .options > li.active {
    background-color: #eaeaea;
}

/* ---------------- Input Type= text, tel, email etc Styling ------------------ */

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"] {
    padding: 7px 16px 7px 16px !important;
    position: relative;
    height: 60px;
    z-index: 4;
    border-radius: 3px;
    background: #fff;
    border: solid 2px #e1e7eb;
    box-shadow: none;
    font-size: 16px;
    line-height: 19px;
    color: #05213b;
    text-transform: none;
    letter-spacing: 0px;
    transition: all 0.3s;
    display: block;
    width: 100%;
    outline: none;
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
}

textarea {
    padding: 18px 16px 18px 16px;
    position: relative;
    height: 150px;
    z-index: 4;
    border-radius: 3px;
    background: #fff;
    border: solid 2px #e1e7eb;
    box-shadow: none;
    font-size: 16px;
    line-height: 19px;
    color: #05213b;
    text-transform: none;
    letter-spacing: 0px;
    transition: all 0.3s;
    display: block;
    width: 100%;
    outline: none;
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    margin-bottom: 16px;
    resize: none;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #5d6f80;
    text-transform: capitalize;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border: solid 2px #05213b;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
}

/* ---------------- Submit button Styling ------------------ */

input[type="submit"],
input[type="submit"]:focus {
    max-width: 375px;
    width: 100%;
}

/* ---------------- Checkbox Styling ------------------ */
body input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

body label.ace-checkbox {
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 20px;
    padding-left: 24px;
    font-size: 16px;
    line-height: 19px;
    transition: all 0.3s;
}

body label.ace-checkbox:before {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border: 2px solid #9eb2bd;
    border-radius: 3px;
    transition: all 0.3s;
}

body label.ace-checkbox:after {
    content: "";
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid rgb(255, 255, 255);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    display: none;
    transition: all 0.3s;
}

body label.ace-checkbox:hover:before {
    border-color: #144282;
}

body input[type="checkbox"]:checked ~ .ace-checkbox:before {
    background-color: #144282;
    border-color: #144282;
}

body input[type="checkbox"]:checked ~ .ace-checkbox:after {
    display: block;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-55 {
    padding-top: 55px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pt-85 {
    padding-top: 85px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.cols-row-dk-1,
.cols-row-dk-2,
.cols-row-dk-3,
.cols-row-dk-4,
.cols-row-dk-5,
.cols-row-dk-6 {
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin: -15px !important;
}

.cols-row-dk-default {
    flex-wrap: nowrap;
}

.cols-row-dk-1 .wp-block-column {
    min-width: calc(100% - 30px);
    flex-basis: auto !important;
    width: calc(100% - 30px);
    margin: 15px !important;
}

.cols-row-dk-2 .wp-block-column {
    min-width: calc(50% - 30px);
    flex-basis: auto !important;
    width: calc(50% - 30px);
    margin: 15px !important;
}

.cols-row-dk-3 .wp-block-column {
    min-width: calc(33.33% - 30px);
    flex-basis: auto !important;
    width: calc(33.33% - 30px);
    margin: 15px !important;
}

.cols-row-dk-4 .wp-block-column {
    min-width: calc(25% - 30px);
    flex-basis: auto !important;
    width: calc(25% - 30px);
    margin: 15px !important;
}

.cols-row-dk-5 .wp-block-column {
    min-width: calc(20% - 30px);
    flex-basis: auto !important;
    width: calc(20% - 30px);
    margin: 15px !important;
}

.cols-row-dk-6 .wp-block-column {
    min-width: calc(16.66% - 30px);
    flex-basis: auto !important;
    width: calc(16.66% - 30px);
    margin: 15px !important;
}

.wp_header {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 20;
    box-shadow: 0 4px 6px rgb(0 0 0 / 5%);
}
.wp_header .wpb-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-buttons > li.red-button > a,
.mobile-bar > li.red-button > a {
    background-color: #b70404;
    color: #fff;
}

.top-buttons > li.green-button > a,
.mobile-bar > li.green-button > a {
    background-color: #36a1ab;
    color: #ffffff;
}

.blue-button > li.blue-button > a,
.mobile-bar > li.blue-button > a {
    background-color: #145abb;
    color: #fff;
}

.top-buttons > li.red-button > a:hover,
.mobile-bar > li.red-button > a:hover {
    background-color: #ec1515;
    color: #fff;
}

.top-buttons > li.green-button > a:hover,
.mobile-bar > li.green-button > a:hover {
    background-color: #39cad7;
    color: #ffffff;
}

.blue-button > li.blue-button > a:hover,
.mobile-bar > li.blue-button > a:hover {
    background-color: #145abb;
    color: #fff;
}

.top-left-link ul {
    display: flex;
}

body .top-left-link ul li {
    padding: 2px 0;
    font-size: 13px;
    line-height: 15px;
}

body .top-left-link ul li a {
    font-weight: 700;
    color: #05213b;
    text-decoration: none;
}

body .top-left-link ul li a:hover {
    text-decoration: underline;
}

body .top-left-link ul li + li {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgb(158 178 189 / 50%);
}

.top-bar {
    padding: 8px 0;
    position: relative;
    z-index: 20;
}
.top-right-links .btn {
    margin-left: 12px;
    font-size: 14px;
    line-height: 19px;
    padding: 14px 10px 13px;
}
.top-right-links .btn:after {
    width: 134px;
}
.phone-text {
    margin-right: 21px;
    font-size: 13px;
    line-height: 15px;
    text-align: right;

    color: #05213b;
    letter-spacing: 0;
}
.phone-text a::before {
    content: "";
    width: 14px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    background: url(../img/icon-call.svg) no-repeat center center;
    margin-right: 8px;
    position: relative;
    top: -2px;
}
.phone-text a {
    font-weight: 700;
    color: inherit;
    text-decoration: none;
}

.phone-text a:hover {
    text-decoration: underline;
}
.header-bottom .logo {
    width: 200px;
}
.top-bar {
    background: #f1f4f5;
}
.main-menu > li {
    font-size: 15px;
    line-height: 18px;
    position: relative;
}
.main-menu > li > a {
    padding: 42.5px 7px;
    display: block;
    color: #05213b;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
}

.main-menu>li.full-height>ul{
    max-height: calc(100vh - 220px);
    overflow: auto;
}

.main-menu > li > a::after {
    height: 4px;
    background: #efac21;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all 0.3s ease;
}
.main-menu > li + li {
    margin-left: 26px;
}
.main-menu {
    display: flex;
}
.main-menu > li.current-menu-item > a:after,
.main-menu > li.current_page_item > a:after,
.main-menu > li.current-menu-ancestor > a:after,
.main-menu > li.current-menu-parent > a:after,
.main-menu > li:hover > a:after {
    opacity: 1;
}

.main-menu > li > ul > li.current-menu-parent > a,
.main-menu > li > ul > li.current-menu-item > a,
.main-menu > li > ul > li > ul > li.current-menu-item > a,
.mobile-menu > li > ul > li.current-menu-parent > a,
.mobile-menu > li > ul > li.current-menu-item > a,
.mobile-menu > li > ul > li > ul > li.current-menu-item > a{
    text-decoration: underline;
}

.search-icon {
    cursor: pointer;
    width: 21px;
    height: 20px;
    background: url(../img/icon-search.svg) no-repeat center center;
    display: block;
    margin-left: 34px;
    margin-right: 20px;
    position: relative;
    top: -1px;
    transition: all 0.3s ease-in;
}
.search-icon:hover {
    opacity: 0.7;
}
.menu-right {
    display: flex;
    align-items: center;
}
.main-menu > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 24px 20px;
    width: 260px;
    display: none;
    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
}
.main-menu > li:hover > ul {
    display: block;
    margin-left: -3px;
}
.main-menu > li > ul > li + li {
    margin-top: 21px;
}

.main-menu > li > ul > li > a {
    color: #05213b;
    text-decoration: none;
    letter-spacing: 0.42px;
    font-weight: 600;
}
.main-menu > li > ul > li > a:hover,
.main-menu > li > ul > li > ul > li > a:hover {
    text-decoration: underline;
}
.main-menu > li > ul > li > ul {
    margin-left: 16px;
}

.main-menu > li > ul > li > ul > li {
    padding-top: 18px;
}

.main-menu > li > ul > li > ul > li > a {
    color: #5d6f80;
    text-decoration: none;
    font-weight: 600;
}
.main-menu > li:last-child > ul {
    left: -50px;
}
.main-menu > li.programs > ul {
    padding: 20px 0 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 3px 3px;
}
.main-menu > li.programs > ul > li > ul > li > ul {
    position: absolute;
    top: 0;
    left: 100%;
    width: 260px;
    padding: 20px 0 20px;
    min-height: 100%;
    background: #f1f4f5;
    display: none;
    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 3px 0;
}
.main-menu > li.programs > ul > li > ul > li > ul > li > ul > li > a,
.main-menu
    > li.programs
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > a {
    padding: 10px 30px 10px 20px;
    font-size: 16px;
    line-height: 19px;
    color: #05213b;
    display: block;
    text-decoration: none;
    position: relative;
    font-weight: 600;
}
.main-menu > li.programs > ul > li > ul > li > ul > li > ul > li:hover > a,
.main-menu .current-darker-menu-item > a,
.main-menu
    > li.programs
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li:hover
    > a {
    background: #e1e7eb;
}
.main-menu
    > li.programs
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li:hover
    > a{
    text-decoration: underline;
}
.main-menu li.current-program > a{
    text-decoration: underline !important;
}
.main-menu > li.programs > ul > li > ul > li > ul > li > ul > li > ul {
    position: absolute;
    top: 0;
    left: 100%;
    width: 376px;
    padding: 20px 0 20px;
    height: 100%;
    background: #e1e7eb;
    display: none;
    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.15);
    border-bottom-right-radius: 3px;
}
.main-menu .heading {
    margin-bottom: 15px;
}
.main-menu .heading > a {
    font-weight: 600;
}
.main-menu > li.programs > ul > li > ul > li > ul > li > ul > li:hover > ul,
.main-menu > li.programs > ul > li > ul > li:hover > ul {
    display: flex;
    flex-direction: column;
    margin-left: -3px;
}
.mobile-menu > li {
    transition: all 0.3s;
}

.mobile-menu > li.sub-menu-toggled:last-child {
    margin-bottom: -14px;
}
.main-menu
    > li.programs
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > ul {
    max-height: 325px;
    overflow: auto;
    margin-top: 4px;
}
.main-menu > li.programs > ul li.heading > a {
    color: #5d6f80;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    font-weight: 600;
    color: #5d6f80;
}
.main-menu > li.programs > ul > li > ul > li {
    padding: 0;
}

.main-menu > li.programs > ul > li > ul {
    margin: 4px 0 0;
}
.main-menu > li.programs > ul > li > ul > li > a {
    font-size: 16px;
    line-height: 19px;
    /* identical to box height, or 119% */

    color: #05213b;
    padding: 10px 20px;
    display: block;
    position: relative;
    font-weight: 600;
}
.main-menu > li.programs > ul > li > ul > li > ul > li > ul {
    margin-top: 4px;
}
.main-menu > li.programs > ul > li > ul > li.menu-item-has-children > a:after,
.main-menu
    > li.programs
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li.menu-item-has-children
    > a:after {
    content: "";
    height: 10px;
    width: 6px;
    position: absolute;
    top: 15px;
    right: 20px;
    background: url(../img/menu-arrow.svg) no-repeat center center;
}
.main-menu > li.programs > ul > li > ul > li:hover > a {
    background: #f1f4f5;
    text-decoration: none;
    font-weight: 600;
}
.main-menu > li.programs > ul > li > ul > li.current-menu-item > a,
.main-menu > li.programs > ul > li > ul > li.current_page_item > a,
.main-menu > li.programs > ul > li > ul > li.current-menu-parent > a,
.main-menu > li.programs > ul > li > ul > li:hover > a {
    background: #f1f4f5;
    text-decoration: none;
}

.has-small-font-size {
    font-size: 14px;
    line-height: 1.71;
}

.padding-small {
    padding-top: 50px;
    padding-bottom: 60px;
}

#chat-window-wrapper{
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 999;
}

#chat-window-wrapper .iframe-wrapper{
    width: 400px;
    position: absolute;
    right: 20px;
    bottom: 100px;
    height: 415px;
    display: none;
    background-color: #ffffff;
    max-width: calc(100vw - 57px);
}

#chat-window-wrapper .iframe-wrapper iframe{
    max-width: 100%;
    width: 100%;
}

#chat-window-wrapper .button{
    height: 67px;
    width: 67px;
    border-radius: 50%;
    background: url('../img/chat.svg') center center no-repeat #b70404;
    position: absolute;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    transition: 0.3s all;
    display: none;
}

#chat-window-wrapper .close{
    position: absolute;
    right: 20px;
    bottom: 515px;
    background-color: #B70404;
    color: #ffffff;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.3;
    padding: 6px 15px;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    transition: 0.3s all;
    display: none;
}

#chat-window-wrapper .close:hover,
#chat-window-wrapper .button:hover{
    background-color: #830000;
}

#chat-window-wrapper.active .button{
    display: block;
}

#chat-window-wrapper.opened .close,
#chat-window-wrapper.opened .iframe-wrapper{
    display: block
}

.find-your-program {
    margin: 0 20px !important;
    padding-top: 20px;
}
.find-your-program > a {
    color: #05213b;
    background-color: #efac21;
    font-size: 14px;
    line-height: 19px;
    padding: 14px 10px 13px;
    font-weight: 700 !important;
    border: 0;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    border-radius: 3px;
    -webkit-appearance: none;
    transition: all 0.3s;
    width: 100%;
}
.find-your-program > a:hover {
    background-color: #ffba2f;
    color: #05213b;
    text-decoration: none !important;
}
.see-all {
    position: static;
    margin: auto 20px 9px;
}
.see-all > a {
    color: #144282;
    font-size: 16px;
    line-height: 28px;
}
.see-all > a span {
    display: inline-block;
    text-decoration: inherit;
}
.see-all > a span:after {
    content: "";
    background: url(../img/long-arrow-right-regular.svg) no-repeat center center;
    width: 22px;
    height: 12px;
    display: inline-block;
    margin-left: 10px;
}
.mobile-navigation {
    position: fixed;
    background: #fff;
    width: 100%;
    top: 69px;
    bottom: 0;
    display: none;
}
.mobile-menu > li > a {
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */

    text-transform: uppercase;

    color: #05213b;
    text-decoration: none;
    display: block;
    padding: 14px 24px 14px 24px;
    position: relative;
}
.mobile-menu > li.menu-item-has-children > a {
    padding-right: 50px;
}
.mobile-menu > li {
    position: relative;
}
.mobile-navigation .programs > ul > li > a {
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0.1px;
    text-transform: uppercase;

    color: #5d6f80;
}
.mobile-menu > li.programs > ul > li > ul > li > a {
    font-size: 16px;
    line-height: 19px;
    color: #05213b;
    display: none !important;
}
.mobile-menu > li > ul {
    display: none;
    margin-top: -2px;
    padding: 20px 24px 20px;
    background: #f1f4f5;
}
.mobile-menu > li.sub-menu-toggled > a:after {
    width: calc(100% - 48px);
    left: 24px;
    content: "";
    position: absolute;
    bottom: 2px;
    height: 4px;
    background: #efac21;
}
.mobile-menu > li > ul > li {
    line-height: 19px;
}
.mobile-menu > li > ul > li > a {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #05213b;
    text-decoration: none;
    position: relative;
}
.mobile-menu > li > ul > li.heading > a {
    font-size: 13px;
    text-transform: uppercase;
    color: #5d6f80;
    line-height: 15px;
}
.mobile-menu > li > ul > li.heading > ul > li > a {
    color: #05213b;
}
.mobile-menu > li > ul > li + li {
    margin-top: 20px;
}
.mobile-menu > li > ul > li > ul {
    padding-top: 18px;
    display: block !important;
}
.mobile-menu > li > ul > li > ul > li {
    line-height: 19px;
}
.mobile-menu > li.current-menu-item > a,
.mobile-menu > li.current-menu-parent > a {
    background: #f1f4f5;
}
.main-menu > li.programs .heading > a,
.main-menu
    > li.programs
    > ul
    > li
    > ul
    > li
    > a.main-menu
    > li.programs
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > a {
    pointer-events: none;
}
.mobile-menu > li > ul > li > ul > li.current-menu-item > a {
    text-decoration: underline;
}
.mobile-menu > li > ul > li > ul > li > a {
    padding-left: 16px;
    color: #5d6f80;
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-decoration: none;
}
.mobile-menu > li > ul > li > ul > li + li {
    padding-top: 20px;
}
.search-menu {
    width: 770px;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    height: 100%;
    background: #fff;
    align-items: center;
}
.menu-right {
    position: relative;
}
.search-menu input {
    margin: 0;
}
.search-menu {
    width: 770px;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    height: 100%;
    background: #fff;
    align-items: center;
    transform: translateY(-100%);
}
.search-menu input {
    margin: 0;
}
.open-search-complete {
    overflow: hidden;
}
.search-menu input[type="reset"] {
    width: 100px;
    background: none;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    right: 10px;
    text-indent: 1000%;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
    height: 40px;
    width: 40px;
    background: url(../img/x-icon.svg) no-repeat center center !important;
    z-index: 5;
    outline: none;
    border: 0;
    cursor: pointer;
    transition: all 0.3s ease-in;
}
.search-menu input[type="reset"]:hover {
    opacity: 0.7;
}
/* .search-menu input[type="text"]:not(:placeholder-shown) ~ input[type="reset"] {
    background: url(../img/x-icon.svg) no-repeat center center !important;
} */
.open-search-complete .header-search {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.open-search-complete .search-icon,
.open-search-complete .main-menu {
    transform: translateY(60%);
    opacity: 0;
}
.open-search {
    overflow: hidden;
}
.fade-in-top {
    -webkit-animation: fadeInTop 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation: fadeInTop 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.fade-out-bottom {
    -webkit-animation: fadeOutBottom 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation: fadeOutBottom 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.fade-out-top {
    -webkit-animation: fadeOutTop 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation: fadeOutTop 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.fade-in-bottom {
    -webkit-animation: fadeInBottom 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation: fadeInBottom 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.coolbadgeHolder iframe{
    display: block;
    max-width: 100%;
    margin: 0px auto !important;
}

@-webkit-keyframes fadeInTop {
    0% {
        opacity: 0;
        -webkit-transform: translatey(-100%);
    }

    to {
        opacity: 1;
        -webkit-transform: translatey(0);
    }
}

@keyframes fadeInTop {
    0% {
        opacity: 0;
        -webkit-transform: translatey(-100%);
        transform: translatey(-100%);
    }

    to {
        opacity: 1;
        -webkit-transform: translatey(0);
        transform: translatey(0);
    }
}

@-webkit-keyframes fadeOutTop {
    0% {
        opacity: 1;
        -webkit-transform: translatey(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translatey(-100%);
    }
}

@keyframes fadeOutTop {
    0% {
        opacity: 1;
        -webkit-transform: translatey(0);
        transform: translatey(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translatey(-100%);
        transform: translatey(-100%);
    }
}

@-webkit-keyframes fadeInBottom {
    0% {
        opacity: 0;
        -webkit-transform: translatey(100%);
    }

    to {
        opacity: 1;
        -webkit-transform: translatey(0);
    }
}

@keyframes fadeInBottom {
    0% {
        opacity: 0;
        -webkit-transform: translatey(100%);
        transform: translatey(100%);
    }

    to {
        opacity: 1;
        -webkit-transform: translatey(0);
        transform: translatey(0);
    }
}

@-webkit-keyframes fadeOutBottom {
    0% {
        opacity: 1;
        -webkit-transform: translatey(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translatey(100%);
    }
}

@keyframes fadeOutBottom {
    0% {
        opacity: 1;
        -webkit-transform: translatey(0);
        transform: translatey(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translatey(100%);
        transform: translatey(100%);
    }
}
[class="search-menu"] {
    visibility: hidden;
}
.angle-down {
    position: absolute;
    top: -2px;
    right: 3px;
    height: 47px;
    width: 47px;
    text-align: center;
    line-height: 47px;
    cursor: pointer;
}
.sub-menu-toggled .angle-down {
    transform: rotate(90deg);
    top: 0;
}
.sub-menu-toggled .angle-down svg path {
    fill: #05213b;
}
footer {
    padding: 22px 0 34px;
    background-color: #e1e7eb;
}

footer .wpb-container {
    max-width: 1230px;
}

footer .footer-top {
    border-bottom: 1px solid rgba(158, 178, 189, 0.4);
    padding-bottom: 40px;
}

footer .footer-top .ace-address-wrapper {
    margin-top: 24px;
}

footer .footer-top .ace-address-wrapper h6 {
    font-size: 15px;
    line-height: 28px;
}

footer .footer-top .ace-address-wrapper .ace-address-section li {
    font-size: 0;
    line-height: 0;
}

footer .footer-top .ace-address-wrapper .ace-address-section li a {
    color: #05213b;
    padding-left: 28px;
    overflow: hidden;
    font-size: 15px;
    line-height: 24px;
    margin-top: 8px;
    display: inline-block;
    position: relative;
    font-weight: 500;
    text-decoration: none;
}

footer .footer-top .ace-address-wrapper .ace-address-section li a:hover {
    text-decoration: underline;
}

footer .footer-top .ace-address-wrapper .ace-address-section li a:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 18px;
    top: 3px;
    left: 0;
}

footer
    .footer-top
    .ace-address-wrapper
    .ace-address-section
    li.location
    a:before {
    background: url(../img/icon-pin.svg) center center no-repeat;
    background-size: auto;
}

footer
    .footer-top
    .ace-address-wrapper
    .ace-address-section
    li.contact-number
    a:before {
    background: url(../img/icon-call.svg) center center no-repeat;
    background-size: auto;
}

footer
    .footer-top
    .ace-address-wrapper
    .ace-address-section
    li.contact-link
    a:before {
    background: url(../img/icon-mail.svg) center center no-repeat;
    background-size: auto;
}

footer .footer-top .wpb-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: auto;
}

footer .footer-top .footer-logo-address-section {
    width: 30%;
}

footer .footer-top .footer-partner-nav-section {
    width: 70%;
    text-align: right;
    align-self: flex-end;
    overflow-x: hidden;
}

footer .footer-top .footer-partner-nav-section p {
    font-size: 13px;
    line-height: 24px;
    padding-left: 20px;
}

footer .footer-top .footer-partner-nav-section .ace-partners-logo {
    margin-top: 20px;
}

footer .footer-top .footer-partner-nav-section .footer-nav {
    max-width: 651px;
    margin-left: auto;
    margin-top: 39px;
    column-count: 3;
    margin-right: -20px;
}

footer .footer-top .footer-partner-nav-section .footer-nav:not(:last-child) {
    margin-right: 20px;
}

footer .footer-top .footer-partner-nav-section .footer-nav li {
    font-size: 0;
    line-height: 0;
    text-align: left;
    padding-top: 8px;
    vertical-align: top;
    padding-right: 20px;
}

.apply-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-text-wrapper .prefix {
    font-size: 100px;
    color: #1e7a8c;
    font-weight: 900;
    margin-right: 30px;
}
.apply-text {
    position: relative;
    height: 240px;
    min-width: 150px;
}
.apply-text span {
    font-weight: 900;
    font-size: 268px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.apply-text > span:first-child {
    color: #efac21;
    z-index: 1;
    transform: translate(calc(-50% - 5px), calc(-50% - 5px));
}

.apply-text > span:last-child {
    transform: translate(calc(-50% + 5px), calc(-50% + 5px));
}

.apply-text > span:last-child {
    -webkit-text-fill-color: transparent;
    background: #1e7a8c url(../img/dotted-pettern.png);
    background-clip: text;
    -webkit-background-clip: text;
}

footer .footer-top .footer-partner-nav-section .footer-nav li a {
    font-size: 15px;
    line-height: 24px;
    color: #05213b;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

footer .footer-top .footer-partner-nav-section .footer-nav li a:hover {
    text-decoration: underline;
}

footer .footer-bottom {
    padding-top: 33px;
}

footer .footer-bottom .wpb-container {
    display: flex;
    flex-wrap: wrap;
}

footer .footer-bottom .footer-copyright-section,
footer .footer-bottom .footer-social-setion {
    width: 50%;
}

footer .footer-bottom .footer-copyright-section p {
    font-size: 13px;
    line-height: 24px;
    color: #05213b;
}

footer .footer-bottom .footer-copyright-section .privacy-links {
    margin-top: 8px;
    font-size: 0;
}

footer .footer-bottom .footer-copyright-section .privacy-links li {
    font-size: 0;
    line-height: 0;
    display: inline-block;
    padding-right: 14px;
    margin-right: 13px;
    position: relative;
}

footer
    .footer-bottom
    .footer-copyright-section
    .privacy-links
    li:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translatey(-50%);
    width: 1px;
    height: 13px;
    background-color: #05213b;
}

footer .footer-bottom .footer-copyright-section .privacy-links li a {
    font-size: 13px;
    line-height: 24px;
    color: #05213b;
    text-decoration: none;
    font-weight: 500;
}

footer .footer-bottom .footer-copyright-section .privacy-links li a:hover {
    text-decoration: underline;
}

footer .footer-bottom .footer-social-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2px 5px 0 0;
}

footer .footer-bottom .footer-social-list li {
    margin-left: 41px;
}

footer .footer-bottom .footer-social-list li a img {
    max-width: 27px;
    max-height: 19px;
}

footer .footer-bottom .footer-social-list li a:hover {
    opacity: 0.7;
}

/*--hero-section---*/
.hero-wrap {
    position: relative;
    background: #05213b;
    padding: 0 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 328px;
}

.hero-wrap .bg-overlay {
    width: 49%;
    height: 100%;
    left: auto;
    right: 0;
    top: 0;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    opacity: 1;
}
.hero-wrap .bg-overlay:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #05213b;
    opacity: 0.8;
    display: none;
}

.hero-wrap .wpb-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    z-index: 2;
}

.hero-wrap:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: inherit;
    z-index: 1;
    opacity: 0;
}

.hero-slider-style {
    position: absolute !important;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
}

.hero-slider-style .single-wrapper {
    height: 100%;
}

.hero-slider-style .single-wrapper .single-slide {
    height: 100%;
}

.hero-slider-style .single-wrapper .single-slide img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.hero-slider-style .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-wrap .hero-col {
    max-width: 100%;
    width: 52%;
    padding: 60px 40px 70px 0;
    position: relative;
    background: #05213b;
}

.hero-wrap .hero-col:after {
    content: "";
    position: absolute;
    height: 200%;
    width: 200px;
    background: inherit;
    top: -50%;
    right: -26px;
    border-radius: 0 100% 100% 0;
    z-index: -2;
    box-shadow: 41px 0 1px -7px rgb(255 255 255 / 25%);
    opacity: 0;
    visibility: hidden;
}

.hero-wrap .hero-col:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    background: inherit;
    width: 100%;
    height: calc(100% + 60px);
    z-index: -1;
}

.hero-wrap.has-background .hero-col:after {
    opacity: 1;
    visibility: visible;
}

.hero-wrap .affort-cont h1,
.hero-wrap .affort-cont h2,
.hero-wrap .affort-cont h3,
.hero-wrap .affort-cont h4,
.hero-wrap .affort-cont h5,
.hero-wrap .affort-cont h6 {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-wrap .affort-cont p {
    color: #ffffff;
    margin-top: 24px;
    font-size: 22px;
    line-height: 36px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.divider {
    width: 60px;
    height: 4px;
    background-color: #efac21;
    margin-top: 24px;
}

.divider.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.hero-wrap .affort-cont {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 570px;
}

.btn-col {
    margin: 24px -8px -16px -8px;
    width: calc(100% + 16px);
}

.btn-col .btn-wrap {
    margin: 0 8px 16px;
    display: inline-block;
}

.hero-col .btn-col {
    margin-bottom: -16px;
}

.hero-wrap .affort-cont h4 {
    color: #fff;
}

/* ---new-hero-sections */
.hero-new-wrap {
    background: #05213b;
}

.new-hero-slider {
    position: absolute !important;
    width: 60%;
    height: 100%;
    max-height: 754px;
    opacity: .2;
}

.new-hero-slider .single-wrapper {
    height: 100%;
}

.new-hero-slider .single-wrapper .single-slide {
    height: 100%;
}

.new-hero-slider .single-wrapper .single-slide img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.new-hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-hero-form {
    border: 3px solid rgb(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 20px;
    margin-top: 48px;
    max-width: 500px;
    padding-top: 0 !important;
    padding-bottom: 20px !important;
    background:#05213b;
    z-index: 11;
    top: -20px;
}

.form-center {
    display: flex;
    justify-content: center;
}

.hero-new-wrap .affort-cont-new h1,
.hero-new-wrap .affort-cont-new h2,
.hero-new-wrap .affort-cont-new h3,
.hero-new-wrap .affort-cont-new h4,
.hero-new-wrap .affort-cont-new h5,
.hero-new-wrap .affort-cont-new h6 {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.new-hero-form .footer-form-wrapper,
.footer-form-wrapper::before,
.footer-form-wrapper::after {
    background: transparent !important;
}

.new-hero-form .form-wrapper select {
    font-size: 14px !important;
}

.new-hero-form #input_3_9,
.new-hero-form #input_3_10,
.new-hero-form #input_3_20,
.new-hero-form #input_3_21,
.new-hero-form #input_3_28 {
    font-size: 14px !important;
    height: 40px !important;
}

.new-hero-block .footer-form-top {
    display: none !important;
}

.new-hero-block .footer-form-wrapper .wpb-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.new-hero-block .form-wrapper {
    background: #05213b;
    margin-top: 20px!important;

}

.new-hero-block .footer-form-wrapper {
    background-color: #05213b!important;
}

.new-hero-block .tabs-contents-top .program-heading {
    max-width: 45% !important;
}

.new-hero-block .gform_legacy_markup_wrapper {
    margin-bottom: 0 !important;
}

.new-hero-block .degree-search-cro {
    padding-right: 42%;
}

.new-hero-block .fp-section {
    z-index: 9;
}

.new-hero-block .fp-section .wpb-container {
    max-width: unset;
}

.new-hero-block .fp-form select {
    height: 60px!important;
    max-width: 300px;
}

.new-hero-block .form-top-content h3 {
    font-size: 24px!important;
}

.new-hero-block .form-top-content p {
    line-height: 1.3;
    font-size: 14px;
}

.new-hero-block .gform_footer {
    margin: 0!important;
    padding:  0!important;
}

.new-hero-block .rfi-hero {
    color: white;
    padding: 20px;
    background-position: top, center;
    padding-top: 120px;
    margin-right: -1px;
    z-index: 1;
}

.new-hero-block .rfi-hero h1 {
    margin-left: 20%;
}

.new-hero-block .rfi-hero p {
    font-size: 20px;
    padding-top: 40px;
    letter-spacing: .5px;
}

.new-hero-block .rfi-hero .divider,
.rfi-hero p {
    margin-left: 20%;
    margin-right: 40px;
}

.new-hero-block .footer-form-wrapper .gform_body .gfield.gfield--width-half {
    margin: 0 5px 12px !important;
}

.new-hero-block .gform_legacy_markup_wrapper form li.gfield--width-full {
    margin: 0 25px 12px 5px !important;
}

.new-hero-block .gform_legacy_markup_wrapper form {
    padding-left: 20px;
}

.new-hero-block .footer-form-wrapper .field_description_below.formpp {
    font-size: 11px;
}

.new-hero-block .gform_legacy_markup_wrapper .gform_footer {
    margin: 16px -10px 0 !important;
}

.new-hero-block .new-hero-slider{
    -webkit-mask-image: linear-gradient(90deg, transparent 5%, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 1) 65%, transparent 95%);
}

/* @media only screen and (min-width: 1024px) {
    .home .hero-wrap {
        display: none;
    }
    .home .footer-form-wrapper {
        display: none;
    }
    .home .fp-section {
        display: none;
    }
    .home .hero-new-wrap .fp-section {
        display: block;
    }
    .home .hero-new-wrap .footer-form-wrapper {
        display: block;
    }

}

@media only screen and (max-width: 1023px) {
    .home .hero-new-wrap {
        display: none;
    }
}

@media only screen and (max-width: 1240px) {
    .home .new-hero-block .rfi-hero h1 {
        margin-left: 0;
        font-size: 54px!important;
    }
    .home .new-hero-block .rfi-hero .divider,
    .rfi-hero p {
        font-size: 18px;
        margin-left: 0;
        margin-right: 0;
    }
} */

/*---cta-sections--*/
.text-cta {
    background: #083259;
    padding: 43px 0 41px 0;
    position: relative;
}

.text-cta:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: url("../img/dotted-pettern-dark-2x.png") repeat;
    opacity: 0.25;
}

.text-cta .wpb-container {
    z-index: 1;
    position: relative;
}

.text-cta .wpb-container,
.license-cta .wpb-container {
    max-width: 1230px;
}

.text-cta p,
.text-cta h3 {
    color: #ffffff;
}
.text-cta-2 h3 {
    margin-bottom: 24px;
}
.text-cta-2 {
    text-align: center;
}

.text-cta.text-cta-2 {
    padding: 42px 0px 48px 0px;
}

.license-cta {
    background: #f1f4f5;
    padding: 54px 0 50px;
}

.license-cta p:not(:last-child) {
    margin: 0 0 24px;
}

.license-cta p {
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
}

.license-cta p a {
    font-weight: bold;
    color: #b70404;
}

.license-cta .lice-para {
    margin: 16px 0 0;
}

.license-cta h6 {
    font-size: 20px;
    line-height: 23px;
}

/*--funds-cta-section-*/
.funds-sec {
    padding: 60px 0 58px;
}

.funds-sec .wpb-container {
    max-width: 1030px;
}

.funds-sec .lead-2 p:not(:first-child) {
    margin: 32px 0 0;
}

.funds-sec p {
    margin: 24px 0 0;
}

/*----btn-cta-section--*/

.btn-cta .wpb-container {
    max-width: 930px;
    z-index: 1;
}
.btn-cta {
    background-color: #1e7a8c;
    position: relative;
    padding: 70px 0 91px 0;
    display: flex;
    align-items: center;
    text-align: center;
}

.btn-cta::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/line-pattern.png);
    content: "";
    opacity: 0.1;
}

.btn-cta .divider {
    margin: 23px auto 0;
}

.btn-cta h2 {
    color: #ffffff;
}

.wp-block-embed {
    margin: 0;
}

.wp-block-embed iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 2.2;
}

.elm-pattern-bg::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/line-pattern.png);
    opacity: 0.1;
    mix-blend-mode: soft-light;
}

.blue-bg {
    background-color: #083259 !important;
    color: #ffffff;
}

.white-bg {
    background-color: #ffff !important;
}

.light-grey-bg {
    background-color: #f1f4f5 !important;
}

.blue-dotts-bg {
    background-color: #083259 !important;
    position: relative;
    color: #ffffff;
}

.blue-dotts-bg p a:not(.btn):not([class]),
.blue-bg p a:not(.btn):not([class]),
.elm-pattern-bg p a:not(.btn):not([class]) {
    color: #eda920;
}

.blue-dotts-bg p a:not(.btn):not([class]):hover,
.blue-bg p a:not(.btn):not([class]):hover,
.elm-pattern-bg p a:not(.btn):not([class]):hover {
    color: #eda920;
}

.blue-dotts-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: url(../img/dotted-pettern-dark-2x.png) repeat;
    opacity: 0.25;
}

.dotted-bg {
    position: relative;
    background-color: #e1e7eb;
}

.dotted-bg::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: url(../img/dotted-pettern-dark.png);
}

.aligncenter {
    text-align: center;
}

.btn-cta p {
    margin-top: 24px;
    color: #ffffff;
}

.btn-cta .btn-wrap {
    justify-content: center;
}

.btn-cta .btn-col {
    margin: 32px -8px -16px -8px;
}

.btn-cta .btn-wrap a:after {
    width: 229px;
}

/*--join-our-alumini-section--*/
.join-alumi {
    background-color: #1e7a8c;
    position: relative;
    padding: 36px 0 37px;
}
.join-alumi:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/line-pattern.png);
    content: "";
    opacity: 0.1;
}

.join-alumi .wpb-container {
    max-width: 1230px;
    position: relative;
    z-index: 1;
}

.join-alumi .inner-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.join-alumi h2 {
    color: #ffffff;
}

.alumni-section .wp-block-columns {
    z-index: 1;
    position: relative;
    justify-content: space-between;
}

.alumni-section .wp-block-column > p {
    font-size: 22px;
    line-height: 36px;
    font-weight: 500;
}

.alumni-section.padding-medium {
    padding: 38px 0;
}

.alumni-section .wp-block-column {
    margin: 0;
    max-width: 50%;
}

.alumni-section .wp-block-column:first-of-type {
    max-width: 500px;
    margin-right: 40px;
}

.alumni-section p {
    color: #ffffff;
    margin-top: 24px;
}

.alumni-section p a:not(.btn):not([class]){
    color: #fff;
    text-decoration: underline;
}

.alumni-section p a:hover:not(.btn):not([class]){
    color: #fff;
    text-decoration: none;
}

.join-alumi .alumini-cont {
    width: 51%;
    padding: 50px 60px 40px 0;
}

.join-alumi .divider {
    margin-top: 22px;
}

.circle-wrap {
    width: calc(100% + 15px);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.elm-pattern-bg {
    background-color: #1e7a8c;
    position: relative;
    color: #fff;
}

.elm-pattern-bg:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/line-pattern.png");
    content: "";
    opacity: 0.15;
}

.wp-block-columns {
    margin: 0;
}

.padding-medium {
    padding: 60px 0;
}

.icon-text h5,
.icon-text p {
    color: #ffffff;
    text-align: center;
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.icon-text {
    margin-top: 8px;
}

.icon-text p {
    margin-top: 2px;
    line-height: 23px;
    max-width: 156px;
    margin-left: auto;
    margin-right: auto;
}

.icons-box {
    width: calc(33.33% - 30px);
    margin: 18px 15px;
}

.circle-box {
    display: flex;
    justify-content: center;
}
.circle:after {
    position: absolute;
    top: 4px;
    left: 4px;
    content: "";
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border-radius: 50%;
    background: #155b6e;
}

.circle {
    position: relative;
    border-radius: 50%;
    width: 100%;
    padding-bottom: 98%;
    border: 2px solid #155b6e;
}

.circle .icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78%;
    height: auto;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.circle .icons img {
    width: auto;
    height: auto;
}

.alumni-section .btn-col {
    margin: 32px -8px -13px -8px;
}

.join-alumi .btn-col {
    margin: 32px -8px 0 -8px;
}
/* Author Profile */
body.author .affort-cont{
    max-width: 100%;
}
body.author .affort-cont .author-hero{
    display: flex;
    justify-content: space-between;
}
body.author .affort-cont .author-hero .info{
    width: 75%;  
    padding-left: 10px;
}
body.author .affort-cont .author-hero .profile{
    width: 100%;
    max-width: 250px;
    padding-right: 30px;
    padding-left: 30px;
}
body.author .affort-cont .author-hero .profile img{
    max-width: 100%;
    border-radius: 50%;
    object-fit: cover;
    width: 100%;  
}
body.author .affort-cont .author-hero p:not(.designation){
    font-size: 18px;
}
body.author .author-hero{
    padding: 50px 0px 50px;
}
/*---------accordion-----------*/

.accord-sec {
    background: #f1f4f5;
    padding: 50px 0 80px;
}

.accordion h2.has-small-font-size,
.accordion h3.has-small-font-size,
.accordion h4.has-small-font-size,
.accordion h5.has-small-font-size{
    font-size: 18px;
    line-height: 20px;
}

.accord-sec .wpb-container {
    max-width: 1030px;
    margin: 0 auto;
}

.accord-sec .wpb-container h3 {
    text-align: center;
}

.accordion {
    width: 100%;
}

.accordion:not(:last-child) {
    margin-bottom: 16px;
}


.tb-accord .table-wrap {
    background-color: transparent;
    margin: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
}
.table-wrap2 {
    border-radius: 10px;
    overflow: hidden;
}

.table-wrap2 tr {
    background-color: #ffffff !important;
}

.table-wrap2 tr td:not(:last-child) {
    font-weight: 700;
}

.accordion-item {
    background: #ffffff;
    border: 1px solid #e1e7eb;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
}

.text-wrap > h6 {
    font-size: 18px;
    line-height: 20px;
}

.text-wrap > h6:not(:first-child) {
    margin-top: 30px;
}

.text-wrap > p:not(:first-child) {
    margin-top: 16px;
}

.accordion-item.lock-accordion .ai-head {
    cursor: context-menu !important;
    padding: 25px 30px 24px;
}

.accordion-item.lock-accordion .ai-head h6 {
    text-align: center;
    padding: 0;
    color: #05213b;
}
.accordion-item.lock-accordion .ai-head:after {
    content: none !important;
}

.accordion-item:not(:first-child) {
    margin-top: 17px;
}

.accordion-item .ai-head {
    padding: 30px;
    font-size: 20px;
    position: relative;
    cursor: pointer;
}

.accordion-item .ai-head:hover {
    font-size: 20px;
    position: relative;
    cursor: pointer;
}

.ai-head h1,
.ai-head h2,
.ai-head h3,
.ai-head h4,
.ai-head h5,
.ai-head h6 {
    padding-right: 46px;
    line-height: 27px;
    color: #144282;
    font-size: 24px;
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    line-height: 28px;
    background-color: transparent;
}

.ai-head.loading {
    cursor: auto;
}

.ai-head.loading h1:empty,
.ai-head.loading h2:empty,
.ai-head.loading h3:empty,
.ai-head.loading h4:empty,
.ai-head.loading h5:empty,
.ai-head.loading h6:empty {
    min-height: 28px;
    padding-right: 0px;
    background-color: #f0f0f0;
    overflow: hidden;
    position: relative;
}

.ai-head.loading h1:empty:before,
.ai-head.loading h2:empty:before,
.ai-head.loading h3:empty:before,
.ai-head.loading h4:empty:before,
.ai-head.loading h5:empty:before,
.ai-head.loading h6:empty:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    animation: skeleton_loader 2s infinite;
    width: 180px;
    left: -120%;
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
}

.ai-head.loading {
    cursor: auto;
}

.sk-loading:empty {
    min-height: 28px;
    padding-right: 0px;
    background-color: #f0f0f0;
    overflow: hidden;
    position: relative;
}

.sk-loading.sk-grey:empty {
    background-color: #d9e0e6;
}

.sk-loading.sk-blue:empty {
    /* background-color: #0a2a48; */
    background-color: transparent;
}

.sk-loading:empty:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -120%;
    animation: skeleton_loader 1.5s infinite;
    width: 180px;
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.3) 50%,rgba(255,255,255,0) 100%);
}

.image-loading h1:empty,
.image-loading h2:empty,
.image-loading h3:empty,
.image-loading h4:empty,
.image-loading h5:empty,
.image-loading h6:empty {
    min-height: 450px;
    padding-right: 0px;
    background-color: #f0f0f0;
    overflow: hidden;
    position: relative;
}

.image-loading h1:empty:before,
.image-loading h2:empty:before,
.image-loading h3:empty:before,
.image-loading h4:empty:before,
.image-loading h5:empty:before,
.image-loading h6:empty:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    animation: skeleton_loader 2s infinite;
    left: -120%;
    width: 180px;
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
}

.ai-head.opened > h2,
.ai-head.opened > h3,
.ai-head.opened > h4,
.ai-head.opened > h5,
.ai-head.opened > h6 {
    color: #000000;
}

@keyframes skeleton_loader {
    100% {
        left: 120%;
    }
}


.accordion-item .ai-head:not(.loading):after {
    content: "";
    background: url(../img/icon-down-arrow.svg) no-repeat;
    position: absolute;
    right: 37px;
    top: 50%;
    color: #002774;
    transform: translateY(-50%);
    /* font-size: 22px; */
    font-weight: bold;
    transition: all 0.3s;
    background-size: cover;
    width: 18px;
    height: 11px;
}

.accordion-item .ai-head.opened:after{
    background: url(../img/icon-down-arrow-black.svg) no-repeat;
}

.accordion-item .ai-head.opened:after {
    transform: translateY(-64%) rotate(180deg);
}

.V-tabs-container p:not(:first-child){
    margin-top: 24px;
}

.V-tabs-container .lead-2{
    margin-top: 32px;
}

.V-tabs-container .micro-cards-wrapper .card-body{
    width: calc(50% - 30px);
}

.V-tabs-container ul:not(:first-child){
    margin-top: 32px;
}

.V-tabs-container h2:not(:first-child),
.V-tabs-container h3:not(:first-child),
.V-tabs-container h4:not(:first-child),
.V-tabs-container h5:not(:first-child),
.V-tabs-container h6:not(:first-child){
    margin-top: 40px;
}

.accordion-item .ai-content {
    overflow: hidden;
    padding: 0 29px 0;
    transition: display 0.3s;
    display: none;
    word-break: break-word;
}

.ai-content .text-wrap p:not(:first-child) {
    margin-bottom: 20px;
}

.ai-content .text-wrap ul {
    margin-top: 16px;
    margin-bottom: 16px;
}

.ai-content .text-wrap ul:first-child {
    margin-top: 0;
}

.ai-content .text-wrap img {
    margin-top: 20px;
}

.ai-content .text-wrap img {
    margin-bottom: 20px;
}

.ai-content .text-wrap h2,
.ai-content .text-wrap h3,
.ai-content .text-wrap h4,
.ai-content .text-wrap h5,
.ai-content .text-wrap h6 {
    margin-top: 30px;
    margin-bottom: 16px;
}

.ai-content .text-wrap h2:last-child,
.ai-content .text-wrap h3:last-child,
.ai-content .text-wrap h4:last-child,
.ai-content .text-wrap h5:last-child,
.ai-content .text-wrap h6:last-child,
.ai-content .text-wrap img:last-child,
.ai-content .text-wrap ul:last-child {
    margin-bottom: 0px;
}

.ai-content .text-wrap h2:first-child,
.ai-content .text-wrap h3:first-child,
.ai-content .text-wrap h4:first-child,
.ai-content .text-wrap h5:first-child,
.ai-content .text-wrap h6:first-child,
.ai-content .text-wrap img:first-child,
.ai-content .text-wrap ul:first-child {
    margin-top: 0px;
}

.tb-accord {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e1e7eb;
}

.myTable tr td {
    padding: 20px 18px;
}

.myTable tr td p{
    font-weight: 500;
    margin-top: 0 !important;
}

.myTable tr td p:first-child{
    font-weight: 700;
}

.tb-accord .accordion-item {
    margin-top: 0 !important;
    border-radius: 0;
    border: none;
}

.tb-accord .accordion-item .ai-head {
    border-bottom: 1px solid #e1e7eb;
}

.tb-accord .accordion-item .ai-content {
    border-bottom: 1px solid #e1e7eb;
    background-color: #f1f4f5;
}

.accordion-item:first-child .ai-content {
    display: block;
}

/*--accordion-content--*/

.accord-sec ul.outer-list li:before {
    content: "";
    background: url("../img/arrow-bullet.svg") no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
}

.news-archive-wrapper{
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
}

.posts-slider{
    overflow: hidden;
    position: relative;
    padding-bottom: 30px;
    padding-top: 40px;
}

.posts-slider-pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0 !important;
    left: 50% !important;
    transform: translatex(-50%);
}

.posts-slider-pagination > span{
    height: 8px;
    width: 8px;
    transition: 0.3s all;
    border-radius: 50px;
    background-color: #000000;
}

.posts-slider-pagination .swiper-pagination-bullet-active{
    width: 48px;
    background-color: #3aafb9 !important;
}

.posts-slider .news-archive-wrapper{
    flex-wrap: nowrap;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.posts-slider .news-archive-wrapper .sm-news-wrapper{
    margin: 0;
}

.news-archive-wrapper .sm-news-wrapper{
    width: calc(25% - 20px);
    margin: 10px;
}

.news-archive-wrapper .sm-news-wrapper a.sm-news-img{
    display: block;
    position: relative;
    padding-bottom: 100%;
    box-shadow: 0 0 12px rgba(0,0,0,0.08) inset;
}

.news-archive-wrapper .sm-news-wrapper.type-post a.sm-news-img{
    padding-bottom: 61%;
}

.news-archive-wrapper .sm-news-wrapper a.sm-news-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.news-archive-wrapper  .sm-news-content{
    padding: 10px 0 20px
}

.news-archive-wrapper  .sm-news-content a.taxonomy{
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #05213b;
    margin-bottom: 0;
}

.news-archive-wrapper  .sm-news-content a.taxonomy:hover{
    text-decoration: underline;
}

.news-archive-wrapper  .sm-news-content span.date{
    display: block;
    opacity: 0.7;
    font-size: 13px;
}

.news-archive-wrapper  .sm-news-content h3{
    margin-top: 5px;
    font-size: 20px;
    line-height: 1.4;
}

.news-archive-wrapper  .sm-news-content h3 a{
    text-decoration: none;
    font-weight: 400;
}

.news-archive-wrapper  .sm-news-content h3 a:hover{
    text-decoration: underline;
}

.accord-sec ul.outer-list li,
.accord-sec ul.outer-list li ul:not(:first-child) {
    position: relative;
    padding-left: 40px;
}

.accord-sec ul.outer-list li:not(:first-child) {
    margin-top: 14px;
}

.accord-sec ul.child-list {
    padding: 16px 0 0 27px;
}

.accord-sec ul.child-list li:not(:first-child) {
    margin-top: 12px;
}

.accord-sec ul.child-list li:before {
    content: "";
    background-color: #b70404;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    color: inherit;
    position: absolute;
    left: 0px;
    top: 9px;
    background-image: none;
}

.accord-sec ul.child-list li {
    padding-left: 18px;
}

.address-box {
    padding: 24px 20px 23px;
    background: #f1f4f5;
    border: 1px solid #e1e7eb;
    box-sizing: border-box;
    margin: 27px 0 0;
}

.address-box p {
    text-align: center;
}

.accord-sec .alert-text,
.adv-sec-4 .alert-text {
    font-size: 14px;
    font-weight: 400;
    color: #5d6f80;
    font-style: italic;
}

.accord-sec .alert-text:not(:first-child) {
    margin-top: 16px;
}

.ai-content .acc-text {
    margin-top: 30px;
}
.accord-sec .msg-text p:not(:last-child) {
    margin-bottom: 16px;
}

.accordion .table-wrap .dt-thd {
    padding: 17px 29px 15px 29px;
    margin-left: -29px;
    margin-right: -29px;
    flex-wrap: nowrap;
}

.top-buttons {
    display: inline-flex;
}
.top-buttons > li > a {
    color: #05213b;
    background-color: #efac21;
    border: 0;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    border-radius: 3px;
    -webkit-appearance: none;
    transition: all 0.3s;
    box-sizing: border-box;
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    max-width: 100%;
    font-size: 14px;
    line-height: 19px;
    padding: 14px 10px 13px;
    width: 154px;
}
.top-buttons > li > a:hover {
    background-color: #ffba2f;
    color: #05213b;
    text-decoration: none;
}
.top-buttons > li {
    margin-left: 16px;
}

.top-buttons > li.blue-button > a {
    color: #ffffff;
    background-color: #144282;
}
.top-buttons > li.blue-button > a:hover {
    background-color: #145abb;
}

/*-------how-to-apply-section--*/
.apply-sec {
    background: #f1f4f5;
    padding: 61px 0 42px;
    text-align: center;
    overflow-x: hidden;
}

.apply-sec .wpb-container {
    max-width: 1336px;
}

.apply-sec h3 {
    text-align: center;
}

.apply-sec .btn-cont .btn-col .btn-wrap {
    justify-content: center;
    margin-top: 32px;
}

.apply-sec .main-text {
    max-width: 970px;
    margin: 0 auto;
}

.apply-sec .main-text p {
    margin-top: 24px;
}

.apply-sec .apply-para-2 p {
    margin-top: 42px;
    max-width: 500px;
}

.apply-sec .apply-para-2 {
    display: flex;
    justify-content: center;
}

.apply-sec .numbers-con {
    display: flex;
    flex-wrap: wrap;
    margin-top: 41px;
    align-items: flex-start;
}

.apply-sec .numbers-con .numbr-img {
    width: 25%;
    position: relative;
    padding: 20px 10px;
}

.app-img {
    position: relative;
    width: 100%;
}

.app-img .inn-img img {
    width: auto;
    height: auto;
}

.ha-section {
    padding: 50px 0 35px 0;
    max-width: 1275px;
    margin-left: auto;
    margin-right: auto;
}

.ha-section .wp-block-column {
    margin: 0;
}

.wrapper .wrapper > div {
    padding-left: 0 !important;
    padding-left: 0 !important;
}

.ha-section .wp-block-column .numbr-img {
    padding: 5px 30px;
}

.numbr-img.numbr-img-divider {
    border-right: 2px solid #e1e7eb;
    position: relative;
}

.numbr-img.numbr-img-divider:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -24px;
    margin-top: -14px;
    width: 0;
    transform: translateY(-50%);
    height: 0;
    left: auto;
    border-bottom: solid 11px #50342600;
    border-left: solid 11px #e1e7eb;
    border-right: solid 11px #56111100;
    border-top: solid 11px #00800000;
}

.numbr-img.numbr-img-divider:after {
    content: "";
    position: absolute;
    top: 50%;
    left: AUTO;
    right: -20px;
    transform: translateY(-50%);
    margin-top: -14px;
    width: 0px;
    height: 0;
    border-bottom: solid 11px rgba(255, 0, 0, 0);
    border-left: solid 11px #f1f4f5;
    border-right: solid 11px rgba(255, 255, 0, 0.02);
    border-top: solid 11px rgba(1, 0, 255, 0);
}

.numbr-img h6 {
    margin: 6px 0 0;
    color: #1e7a8c;
    line-height: 30px;
    text-transform: uppercase;
    text-align: center;
    margin-left:-15px;
}

.numbr-img a {
    color: #1e7a8c !important;
    display: block;
    position: relative;
    z-index: 1;
}

.apply-sec .btn-col {
    margin-top: 32px;
}

/*-----logo-img-section------*/

hr {
    display: block;
    border: 0px;
    background: url("../img/divider-bg.png") center center no-repeat;
    margin: 0;
    padding: 20px 0;
}

hr.bg-line {
    background: #f1f4f5 url("../img/divider-bg.png") center center no-repeat;
}

.pf-table {
    border-collapse: collapse;
}

.pf-table thead {
    background-color: #06223a;
    color: #ffffff;
}

.pf-table thead tr th {
    width: 25%;
    padding: 10px;
}

.pf-table tbody tr td {
    padding: 7px;
    text-align: left;
    border: 1px solid #dae1e6;
}

.pf-table sup {
    display: inline-block;
    margin-top: -7px;
}

.pf-table tbody tr td {
    padding: 7px;
    text-align: left;
}

.pf-table tbody tr td a {
    text-decoration: none;
}

.pf-table tbody tr td a:hover {
    text-decoration: underline;
}

.pf-table tbody tr:nth-child(odd) td {
    background-color: #e1e7eb;
}

.pf-table tbody tr:nth-child(even) td {
    background-color: #ffffff;
}

.pf-table tbody tr td:first-child {
    font-weight: 900;
    min-width: 150px;
}

/*--side-bar-section--*/

.main-advance-std {
    display: flex;
    position: relative;
    padding: 0;
    max-width: 1440px;
}

.adv-content .wpb-container {
    padding: 10px 0 0 0;
}

.advance {
    padding: 50px 60px 60px 70px;
}

footer .ace-partners-logo {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
}

footer .ace-partners-logo > li {
    margin: 0 11.2px;
    max-height: 78px;
    max-width: 71px;
}

footer .ace-partners-logo > li:last-child {
    margin-right: 3px;
}

footer .ace-partners-logo > li > a > img {
    max-height: 100%;
    height: auto;
    max-width: 100%;
    width: auto;
}

.advance .accord-sec {
    padding: 0 !important;
    margin-top: 40px;
}

.advance:first-child {
    padding-bottom: 47px;
}

.main-advance-std .adv-sidenav {
    max-width: 305px;
    width: 100%;
    height: 100%;
    z-index: 2;
    position: sticky;
    top: 0;
    background: #fff;
}

.main-advance-std .adv-content {
    width: calc(100% - 305px);
    max-width: 100%;
    position: relative;
    right: 0;
    background: #f1f4f5;
    box-sizing: border-box;
}

ul.side-links {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}

.adv-content .btn-col {
    margin-top: 40px;
    margin-bottom: -16px;
}
/* ul.side-links li.active {
		background: #f1f4f5;
	} */

ul.side-links li {
    position: relative;
}

ul.side-links li a {
    text-decoration: none;
    display: block;
    padding: 16px 10px 16px 40px;
    border-bottom: 2px solid #f1f4f5;
    color: #5d6f80;
    transition: all 0.3s linear;
    line-height: 32px;
}

ul.side-links .side-button {
    padding: 20px 10px 20px 30px;
    border-bottom: 2px solid #f1f4f5;
    color: #000;
    transition: all 0.3s linear;
    position: relative;
    text-transform: capitalize;
    cursor: pointer;
    display: none;
}

ul.side-links .side-button:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: url("../img/icon-down-arrow.svg") no-repeat;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.side-button.open.ok:after {
    transform: translateY(-83%) rotate(180deg);
}

ul.side-links {
    overflow: hidden;
}

ul.side-links li.active:after {
    background: #efac21;
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    width: 5px;
    height: calc(100% + 2px);
}

ul.side-links li.active a {
    color: #05213b;
}
ul.side-links li.active {
    background: #f1f4f5;
}

ul.side-links li:not(:first-child) a:hover {
    background: #f1f4f5;
}

ul.side-links li:not(:first-child) a:hover:after {
    display: block;
}

.side-buttons {
    margin: 32px 40px 63px;
}

.side-buttons a {
    width: 100%;
}

.side-buttons .btn-wrap:not(:last-child) {
    margin-bottom: 16px;
}

/*------Main-content-section--*/
/*--M.Ed-sec--*/
.adv-sec-1 .sec-1-para {
    margin-top: 24px;
}

/* .adv-content .advance.adv-sec-1 {
	padding: 60px 0;
} */

.adv-sec-1 p:not(:last-child) {
    margin: 0 0 32px;
}

.adv-sec-1 .main-para p span {
    color: #b70404;
    font-size: 14px;
    font-weight: bold;
}
/*--advance-section-2--*/
.ace-text-box {
    margin: 37px 0 0;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #e1e7eb;
    border-radius: 10px;
}

.ace-text-box .box {
    background: #fff;
    padding: 30px 38px 34px 40px;
    width: 33.33%;
    box-sizing: border-box;
}

.ace-text-box .box:first-child {
    border-radius: 10px 0 0 10px;
}

.ace-text-box .box:last-child {
    border-radius: 0 10px 10px 0;
}

/* .adv-content .advance{
	padding: 54px 0 41px;
} */

.adv-sec-2 .btn-wrap a:after {
    width: 274px;
}

.ace-text-box .box h6 {
    color: #144282;
}

.ace-text-box .box p {
    margin-top: 16px;
}

.ace-text-box .box:not(:last-child) {
    border-right: 1px solid #e1e7eb;
}

.ace-text-box .box:first-child {
    border-radius: 10px 0 0 10px;
}

.ace-text-box .box:last-child {
    border-radius: 0 10px 10px 0;
}

.adv-sec-2 .btn-col .btn-wrap {
    display: block;
}

.adv-sec-1 .main-para .lead-2:not(:first-child) {
    margin-top: 31px;
}
/*--tution-section--*/

.advance .main-para {
    margin: 24px 0 0;
}

/* .advance.adv-sec-3 {
	padding: 55px 0 59px;
} */

.myTable tr.total-cost {
    background: #f1f4f5;
}

.myTable tr.total-cost td {
    text-transform: uppercase;
}

.tbl-hd th {
    text-align: center;
    padding: 30px 20px 30px;
    border-bottom: 1px solid #e1e7eb;
    color: #144282;
}

.tbl-hd th h6 span:last-child:after {
    content: "";
    width: 2px;
    background: #144282;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.myTable table td {
    padding: 20px 30px 20px 29px;
}

.tbl-hd th h6 span:last-child {
    position: relative;
    padding-left: 10px;
    text-align: left;
}
.tbl-hd th h6 {
    display: flex;
    justify-content: center;
}

.tbl-hd th h6 span:first-child {
    text-align: right;
    padding-right: 10px;
}

.myTable td:last-child {
    vertical-align: bottom;
}

.myTable td p.light-text {
    font-weight: 500;
}

/*--BTN-LEFT-CTA-*/

.plan-btn-cta {
    background: #1e7a8c;
    padding: 23px 30px;
    position: relative;
    border-radius: 10px;
    color: #ffffff;
}

.accordion .plan-btn-cta {
    border-radius: 0 0 10px 10px;
}

.plan-btn-cta p {
    font-weight: 700;
    line-height: 30px;
}

.plan-btn-cta .plan-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    position: relative;
}

.plan-btn-cta:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: url(../img/line-pattern.png);
    opacity: 0.1;
}

.plan-btn-cta .left-text {
    width: calc(100% - 280px);
    padding-right: 30px;
}

.plan-btn-cta .left-text p {
    color: #ffffff;
}

.plan-btn-cta .right-btn {
    max-width: 300px;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
}

.plan-btn-cta .right-btn a:after{
    width: 155px
}

/*--program-details--*/

.adv-sec-4 h3,
.adv-sec-4 h4 {
    text-transform: capitalize;
}

.adv-sec-4 h4 {
    margin-top: 40px;
}

.adv-sec-4 h4.focus {
    margin-top: 43px;
}

.adv-sec-4 .det-list .det-list-colms {
    display: flex;
    flex-wrap: wrap;
}

.adv-sec-4 .det-para {
    margin-top: 24px;
}

.alert-main {
    padding: 0 34px 0;
}

.adv-sec-4 .det-btn {
    margin: 0 -15px;
    flex-direction: column;
    display: flex;
}

.advance .btn-cont .btn-col .btn-wrap {
    flex-direction: column;
}

.adv-sec-4 .main-para .lead-2:not(:first-child) {
    margin-top: 31px;
}

.det-list {
    padding: 0 15px;
}
.det-list-colms {
    padding: 30px 0;
}
.det-col ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 10px;
}

/*---courses-section--*/
.table-wrap {
    border: 1px solid #e1e7eb;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    background: #ffffff;
    overflow: auto;
    margin: 37px 0 0;
}

.accordion .table-wrap{
    overflow: hidden;
}
/*--simple-sections--*/
.image-with-cta{
	justify-content: space-between;
    display: flex;
    align-items: center;
}

.image-with-cta .ab-cont {
	width:calc(53% - 50px);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 30px 30px 30px 0;
}

.image-with-cta .ab-cont  h3{
    margin: 0;
}

.image-with-cta .img-col {
    width:calc(47% - 50px);
    padding-right: 10px;
}

.image-with-cta .img-col img {
	border-radius: 10px;
    width: 100%;
}

.image-with-cta .ab-cont .text-col p:not(:first-child) {
	margin: 32px 0 0;
}

.image-with-cta .ab-cont .text-col {
	margin-top: 17px;
}

.image-with-cta .btn-cont {
	margin-top: 22px;
}

body .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html{
    color: #ffffff !important
}

body .rfi-form .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html{
    color: #5D6F80 !important
}

body .rfi-form .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.form-error p{
    color: #ffffff !important;
    margin: 0 !important;
}
 
body .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html a{
    color: #EFAC21 !important;
}

body .rfi-form-page .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html a{
    color: #B70404;
}


/*--reverse-row-sections--*/

.image-with-cta.reverse{
    flex-direction: row-reverse
}

.image-with-cta.reverse .ab-cont {
    padding: 30px 0 30px 30px
}

/*--dotted-bg-sections--*/

.image-with-cta .img-col .box{
    
    border-radius: 10px 10px 15px 15px;
    background-color: rgba(128, 128, 128, 0);
    position: relative;
    margin: 0
}

.image-with-cta .img-col .box img{
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.image-with-cta.dotted_bg .img-col .box{
    padding: 26px 0 26px 20px;
}

.image-with-cta.dotted_bg .img-col .box img{
    right: -10px;
    margin-right: -10px;
}

.image-with-cta.dotted_bg .img-col .box::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 15px 15px;
    background: url(../img/dotted-pettern-dark.png);
}


/* .adv-sec-5.advance {
	padding: 53px 0 47px;
} */

.myTable {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    min-width: 450px;
}

.myTable td {
    font-size: 16px;
    line-height: 28px;
    font-family: "PublicSans", sans-serif;
    padding: 20px 30px;
}

.myTable td:last-child {
    text-align: right;
}

.myTable tr:not(:last-child) {
    border-bottom: 1px solid #e1e7eb;
}
.myTable table tr:first-child td {
    padding: 31px 29px 20px;
}

.myTable table tr:last-child td {
    padding: 20px 30px 30px;
}

.myTable table td:nth-child(2),
.myTable table tr:first-child td:nth-child(2),
.myTable table tr:last-child td:nth-child(2) {
    padding-left: 7px;
}

/*--btn-advance-sections--*/
.adv-content .btn-cont {
    margin: 38px 0 0;
}

/*--team-section--*/

.adv-sec-6 .team-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 40px -15px 0;
    width: calc(100% + 30px);
}

.adv-sec-6 .team-wrap .team-col {
    width: 33.33%;
    position: relative;
    display: flex;
}

/* .adv-sec-6.advance {
	padding: 53px 0 46px;
} */
/* 
.team-wrap .team-col .team-col-wrap {
    background: #ffffff;
    border: 1px solid #e1e7eb;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    margin: 0 15px 30px;
    width: 100%;
    transition: 0.3s all;
}

.team-wrap .team-col .team-col-wrap:hover {
    opacity: 0.8;
}

.team-wrap .team-col .team-col-wrap img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
} */

.team-wrap{
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px
}

.team-wrap .team-col{
    background: #ffffff;
    border: 1px solid #e1e7eb;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 4%);
    border-radius: 10px;
    margin-right: 30px;
    width: 100%;
    transition: 0.3s all;
    width: calc(33.33% - 30px);
    overflow: hidden;
}

.team-wrap .team-img{
    position: relative;
    padding-bottom: 100%;
}

.team-wrap .team-img img{
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.team-wrap .team-col .team-text {
    padding: 19px 17px 15px 20px;
}

.team-wrap .team-col .team-text h6 {
    color: #144282;
    text-transform: capitalize;
    margin: 0 0 3px;
}

.team-wrap .team-col .team-text span {
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    color: #5d6f80;
}

.adv-sec-6 .btn-col {
    margin-top: 10px;
}

/*--admission-section--*/
.adv-sec-7 {
    margin: 40px 0 0;
}

/* .adv-sec-7.advance {
	padding: 58px 0 80px;
} */

.adv-sec-7 .accord-sec {
    padding: 0;
}

.adv-sec-7 .text-wrap {
    padding: 21px 0 28px;
}

.ai-content .text-wrap {
    border-top: 1px solid #e1e7eb;
    padding: 26px 0 29px;
}

.accordion.tb-accord .ai-content .text-wrap {
    border-top: none;
}

.ai-content .lead-2 p {
    font-weight: 700;
}

.adv-sec-7 span.link-text a {
    font-size: 14px;
    line-height: 24px;
    color: #05213b;
    text-decoration: none;
    padding-right: 10px;
    display: block;
    word-break: break-all;
}

.adv-sec-7 span.link-text {
    margin: 38px 0 0;
    display: block;
}

.adv-sec-7 .link-text:hover {
    text-decoration: underline;
}

.adv-sec-7 .ai-content .acc-text {
    margin-top: 24px;
}
.adv-sec-7 .accord-sec .alert-text:not(:first-child) {
    margin-top: 7px;
}

/*----------------------
	//////ABOUT-US-PAGE/////
	---------------------*/
.trust-sec {
    padding: 50px 0 42px;
    background: #f1f4f5;
}

.trust-sec .wpb-container {
    max-width: 1030px;
}

.trust-sec h3,
.trust-sec p {
    text-align: center;
}

.trust-sec p {
    margin: 23px 0 0;
}

.trust-sec .brand-logo {
    max-width: 752px;
    width: 100%;
    margin: 50px auto 0;
}

.trust-sec .brand-logo .br-inner-wrap {
    display: flex;
}

.trust-sec .brand-logo .br-log-col {
    width: 33.333%;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 24px 30px;
}

.trust-sec .brand-logo .br-log-col:last-child {
    padding: 31px 24px 30px;
}

.trust-sec .brand-logo .br-log-col:first-child {
    padding: 44px 24px 30px;
}

.trust-sec .br-log-col .br-img {
    display: flex;
    justify-content: center;
}

.trust-sec .brand-logo .br-log-col:not(:last-child) {
    border-right: 1px solid rgb(158 178 189 / 30%);
}

.trust-sec .btn-cont .btn-col .btn-wrap {
    justify-content: center;
}

.trust-sec .btn-cont {
    margin-top: 50px;
}

.trust-sec .btn-col {
    text-align: center;
    margin-top: 44px;
}
/*--ab-colledge-section--*/
.AB-collg {
    padding: 50px 0 43px;
    background: #f1f4f5;
}

.AB-collg .wpb-container {
    max-width: 1230px;
    display: flex;
    justify-content: space-between;
}

.AB-collg .ab-cont {
    width: calc(53% - 50px);
}

.AB-collg .img-col {
    width: calc(47% - 50px);
    padding: 8px 0 0;
}

.AB-collg .img-col img {
    border-radius: 10px;
}

.AB-collg .ab-cont .text-col p:not(:first-child) {
    margin: 32px 0 0;
}

.AB-collg .ab-cont .text-col {
    margin-top: 22px;
}

.AB-collg .btn-cont {
    margin-top: 22px;
}

/*-- ACE-TEAM-section --*/
.ace-team {
    padding: 56px 40px 56px 0;
}

.ace-team .wpb-container {
    max-width: 1187px;
}
.ace-team .ab-cont {
    width: calc(48% - 64.7px);
}

.ace-team .img-col {
    width: calc(52% - 64.7px);
    position: relative;
}

.ace-team .ab-cont {
    display: flex;
    align-items: center;
}

.ace-team .ab-cont .inner-col {
    padding: 40px 0 20px;
    width: 100%;
}

.ace-team .img-col img {
    border-radius: 10px;
    margin: 26px -15px 33px 24px;
    position: relative;
    z-index: 1;
    width: calc(100% + 24px);
}
.ace-team .box {
    position: relative;
}
.ace-team .box:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/Pattern-cta.png") no-repeat center center;
    background-size: cover;
    border-radius: 15px;
}

.ace-team .btn-col {
    margin-top: 32px;
}

/*---text-accordion--*/
.para-ac-wrap {
    padding: 49px 0 83px;
}

.para-ac-wrap {
    margin: 49px 0 0;
}

.para-ac-wrap .ai-content {
    padding: 0 34px 0 29px;
}

.para-ac-wrap .para-acc {
    padding: 23px 0 29px;
}

.para-acc p.lead-2 {
    line-height: 20px;
    font-size: 18px;
    font-weight: 700;
}

.para-acc p.spara {
    margin: 16px 0 0;
}

.para-acc .lead-2:not(:first-child) {
    margin: 30px 0 0;
}

.para-ac-wrap .accordion-item .ai-head {
    padding: 30px;
}

.para-ac-wrap .ai-content .text-wrap {
    padding: 24px 0 29px;
}

.para-ac-wrap .ai-content .text-wrap h6 {
    font-size: 18px;
    line-height: 20px;
}

.para-ac-wrap .ai-content .text-wrap h6:not(:first-child) {
    margin-top: 30px;
}

.para-ac-wrap .ai-content .text-wrap p {
    font-size: 16px;
    line-height: 28px;
}

.para-ac-wrap .ai-content .text-wrap h6 + p {
    margin-top: 16px;
}

.para-ac-wrap .ai-content .text-wrap p:not(:first-child) {
    margin-top: 16px;
}

.para-ac-wrap .ai-content .text-wrap p i {
    font-size: 14px;
    line-height: 24px;
    color: #5d6f80;
    margin-top: 30px;
}

.para-ac-wrap .accordion-item:not(:first-child) {
    margin-top: 15.9px;
}

.para-acc .acc-text p {
    font-size: 14px;
    line-height: 24px;
    font-style: italic;
    font-weight: 400;
    color: #5d6f80;
}

.table-wrap .dt-thd {
    padding: 17px 0 15px 0;
    display: flex;
    flex-wrap: wrap;
}

.table-wrap .dt-thd:not(:last-child) {
    border-bottom: 1px solid #e1e7eb;
}

.table-wrap .dt-thd > div:not(:last-child) {
    font-weight: bold;
    min-width: 140px;
}

/*--advance-section-8--*/
.table-wrap .dt-thd .adv-sec-8 .plan-btn-cta {
    border-radius: 0 0 10px 10px;
}

/*--advance-section-separate paddings--*/

.adv-content .advance:nth-of-type(5) {
    padding: 47px 60px 58px 70px;
}

.adv-content .advance:nth-of-type(2) {
    padding: 50px 60px 58px 70px;
}

.adv-content .advance:nth-of-type(4) {
    padding: 49px 60px 56px 70px;
}

.adv-content .advance:nth-of-type(3) {
    padding: 50px 60px 58px 70px;
}

.accordion .wp-block-cover {
    border: 1px solid #e1e7eb;
}

/*--footer-icons-section--*/
.foot-icons-sec {
    padding: 50px 0 50px;
    min-height: 356px;
}

.foot-icons-sec .lead-2 {
    margin: 24px 0 0;
}

.social-icon-wrap .soc-wrap {
    width: 60px;
    height: 60px;
    margin: 0 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.myTable .content.show{
    display: table-row !important;
}

.myTable .credits{
    font-weight: 500 !important
}

.myTable .content td{
    text-align: start !important;
    padding: 0 !important;
}

.myTable .content .description-wrapper{
    padding: 20px 18px;
    background: rgb(241, 244, 245);
}

.program-course-list tr.content{
    border-bottom: none !important
}

.program-course-list tr.content.active{
    border-bottom: 1px solid #e1e7eb !important
}

.table-arrow{
    height: 25px;
    width: 25px;
    min-width: 30px;
    background: url(../img/icon-down-arrow-black.svg) center no-repeat;
    background-size: 20px;
    display: block;
    cursor: pointer;
    margin-left: auto;
    transition: 0.3s all;
}

.table-arrow.arrow-up{
    transform: rotate(180deg);
}
.course-row {
    cursor: pointer;
}
.social-icon-wrap {
    display: flex;
    justify-content: center;
    margin: 38px 0 0;
}

.social-icon-wrap .soc-wrap img {
    text-align: center;
}

.social-icon-wrap .soc-wrap a {
    display: flex;
    align-items: center;
}
.social-icon-wrap .soc-wrap a:hover {
    opacity: 0.7;
}

/*others-styling--*/
.sr-section .tabs-contents {
    margin-top: 35px;
}

.video-wrapper .btn-c {
    margin: 45px -8px 0;
}

.sr-section .btn-c {
    margin: 23px -8px 0;
}
/*--gobal-use-classes--*/
.cont-c {
    text-align: center;
}

.btn-c {
    text-align: center;
}

.sect-bg {
    background: #f1f4f5;
}

/*---video-wrap-section---*/

.video-wrapper .btn-col a:after {
    width: 200px;
}

.ace-awrds {
    padding: 49px 0 42px;
}
.ace-awrds .btn-col {
    margin-top: 22px;
}

/* Category landing Page ---Program Built Section */
.Program-mind-wrapper {
    padding: 60px 0px;
    background: #f1f4f5;
}

.Program-built .wpb-container {
    display: flex;

    justify-content: flex-start;
    max-width: 1233px;
}

.Program-built .right-col {
    flex: 1;
    margin-left: 96px;
}
.Program-built .right-col .stats-4 {
    width: 310px;

    text-align: center;
}
.Program-built .right-col .stats-4 img {
    padding-right: 46px;
}
.Program-built .left-col {
    width: 100%;
    max-width: 687px;
    padding-top: 1px;
}

.Program-built .left-col p {
    margin-top: 24px;
}

.Program-built .right-col p {
    color: #1e7a8c;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 16px;
    text-align: center;
}

/* Spacer for sections */
.spacer-sections {
    padding: 20px;
    background-color: #8fa5de;
    color: #e6e6e6;
}

/* Program Detail Page--Stas Section */
.stats-wrapper {
    padding: 40px 0px 26px 0px;
    background-image: url(../img/Pattern-stats.png);
    background-color: #083259;
}

/* .stats-wrapper .wpb-container {
    max-width: 1274px;
} */

.stats-wrapper .stats-points {
    list-style: none;
    display: flex;
    justify-content: space-between;
    /* max-width: 1173px; */
    max-width: 1000px;
    margin: auto !important;
}

.stats-wrapper .stats-points li.program-avg-salary {
    display: none;
}

.stats-wrapper ul li {
    padding-left: 0px;
    margin-bottom: 15px;
}

.stats-wrapper ul li {
    margin-right: 20px;
    margin-left: 20px;
}

.stats-wrapper li:before {
    display: none;
}

.stats-wrapper ul li:nth-child(1) > .subheading-stat:before {
    background: url(../img/icon-university.svg);
    background-repeat: no-repeat;
}

.stats-wrapper ul li:nth-child(3) > .subheading-stat:before {
    background: url(../img/icon-clock.svg);
    background-repeat: no-repeat;
}

.stats-wrapper ul li:nth-child(4) .subheading-stat:before {
    background: url(../img/icon-star.svg);
}

.stats-wrapper ul li:nth-child(5) .subheading-stat:before {
    background: url(../img/graduation-cap-solid-2.svg);
}

.subheading-stat:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 18px;
    background: url(../img/icon-calendar.svg);
    background-repeat: no-repeat !important;
    vertical-align: bottom;
}

.subheading-stat {
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 13px;
    line-height: 20px;
    color: #efac21;
    text-transform: uppercase;
    text-align: center;
}

.subheading-stat p {
    display: inline-block;
    margin-left: 4px;
    letter-spacing: 0.4px;
    font-weight: 700;
}

.stat-value {
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    line-height: 35px;
    color: #ffff;
    text-align: center;
    margin-top: 7px;
}

/* Homepage---Cta-row-reverse-section */
.cta-row-wrapper {
    position: relative;
    padding-bottom: 81px;
}
.cta-row-wrapper:before {
    content: "";
    position: absolute;
    background: url(../img/arrow_background.svg) no-repeat;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}
.enroll-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.enroll-wrapper .enroll-right-col .lead-1 {
    font-weight: 500;
}

.faculty-single-content-wrapper{
    display: flex;
    flex-direction: column
}

.faculty-single-content-wrapper .img-text{
    width: 400px;
    min-width: 400px;
    min-height: 300px;
}

.faculty-single-content-wrapper .img-text:empty{
    min-height: 300px;
}

.faculty-single-content-wrapper .img-text img{
    width: 100%;
    height: auto;
}

.faculty-single-content-wrapper .img-text h4{
    font-size: 25px;
    margin-top: 15px;
    margin-bottom: 0;
    max-width: 330px;
}

.rfi-form-page{
    display: flex;
}

.rfi-sidebar{
    width: 400px;
    min-width: 400px;
    background-color: #083259;
    position: relative;
    color: #ffffff
}

.rfi-wrapper{
    width: calc(100% - 400px);
    padding: 70px 30px 70px 30px;
}

.rfi-sidebar-img{
    height: 300px;
    position: relative;
    z-index: 1;
}

.rfi-sidebar-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.rfi-sidebar-content{
    padding: 40px;
    z-index: 5;
    position: relative;
}

.rfi-sidebar-content a{
    color: #EFAC21;
}

.rfi-sidebar-content a:hover{
    color: #EFAC21;
}

.rfi-sidebar-content ul:not([class]) li:before{
    background: url(../img/arrow-yellow.svg) center center no-repeat;
}

.rfi-sidebar-content h4:not(:first-child){
    margin-top: 40px
}

.rfi-sidebar-content ul:not(:first-child){
    margin-top: 25px
}

.rfi-sidebar-content p:not(:first-child){
    margin-top: 24px
}

.rfi-sidebar-content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/dotted-pettern-dark-2x.png);
    display: block;
    z-index: -1;
    opacity: 0.2;
}

.rfi-container{
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
}

.rfi-content p:not(:first-child){
    margin-top: 24px
}

.rfi-form{
    margin-top: 40px;
}

.faculty-single-content-wrapper .img-text h6{
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.3;
    max-width: 330px;
}

.faculty-single-content-wrapper .content-wrapper{
    background-color: #ffffff;
    padding: 100px;
    margin-top: -250px;
    width: calc(100% - 360px);
    margin-left: 360px;
    position: relative;
    min-height: 300px;
}

.enroll-left-col {
    flex-basis: calc(50% - 2px);
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.enroll-right-col {
    flex-basis: calc(50% + 2px);
    max-width: calc(50% + 2px);
    padding-top: 48px;
    background-color: #f1f4f5;
}

.list-enrol {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    flex-wrap: wrap;
}

.list-enroll-wrapper {
    padding: 17px 28px 0px 28px;
    background-color: #e1e7eb;
    border-left: 2px solid #f1f4f5;
}

.list-enrol a.text-link {
    color: #05213b;
    background-size: 20px !important;
    background: url(../img/arrow-circle-down-regular.svg) left top 5px no-repeat;
    padding: 2px 0px 0px 32px;
    margin-bottom: 14px;
}
.list-enrol a.text-link:not(:last-child) {
    margin-right: 43px;
}

.enroll-left-col h2 {
    position: relative;
    display: inline-block;
}

.enroll-right-top {
    max-width: 630px;
}

.enroll-right-content {
    padding-left: 32px;
    padding-right: 20px;
    max-width: 660px;
    padding-bottom: 22px;
}

.enroll-left-content {
    position: relative;
    max-width: 554px;
    text-align: start;
    margin-left: auto;
    margin-bottom: 48px;
}

.enroll-left-content h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #efac21;
    display: inline-block;
    position: absolute;
    left: 0px;

    bottom: -28px;
}

.cta-rows .wpb-container {
    max-width: 1385px;
}

.cta-row-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-left-col {
    position: relative;
    display: flex;
    flex-basis: calc(50% - 34px);
    align-items: center;
    padding: 30px 0px 30px 31px;

    margin-top: 61px;
    margin-bottom: 60px;
    border-radius: 10px;
}
.cta-left-col:after {
    content: "";
    background: url("../img/dotted-pettern-dark.png");
    position: absolute;
    left: 0;
    width: calc(100% - 30px);
    height: 100%;
    border-radius: 10px;
    opacity: 0.8;
    z-index: -1;
}
.cta-left-col img {
    width: 100%;
    max-width: 596px;
    border-radius: 10px;
    z-index: 2;
}

.cta-right-col {
    flex-basis: calc(50% + 1px);
    align-self: stretch;
    padding: 0px 30px 80px 30px;
    border-left: 2px solid #f1f4f5;
}

.cta-right-col a {
    margin-top: 32px;
    font-size: 18px !important;
    line-height: 32px !important;
    padding: 0px 0 5px 45px !important;
    background: url(../img/cta-row-right.svg) left top no-repeat !important;
    width: fit-content;
}

.cta-row-wrapper .cta-row-body:nth-child(even) {
    flex-direction: row-reverse;
}

.cta-row-wrapper .cta-row-body:nth-child(even) > .cta-right-col {
    border-left: none;
    border-right: 2px solid #f1f4f5;
}

.cta-row-wrapper .cta-row-body:not(:first-child) > .cta-left-col {
    margin-top: 0px;
}

.cta-row-wrapper
    .cta-row-body:nth-child(even)
    > .cta-right-col
    .cta-right-content {
    margin-left: auto;
}

.cta-right-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
    padding-bottom: 39px;
    max-width: 553px;
    padding-top: 40px;
}

.cta-right-content h2,
.cta-right-content h3,
.cta-right-content h4,
.cta-right-content h5,
.cta-right-content h6 {
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: 700 !important;
}

.cta-right-content .lead-2 {
    margin-top: 24px;
    line-height: 32px;
}

.cta-btn-wrapper {
    text-align: center;
}
.cta-btn-wrapper button {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 15px;
}

/* Admisions Page--Flexible-section */
.flexible-start-wrapper {
    padding: 50px 0px 56px 0px;
}

.flexible-start-wrapper .wpb-container {
    max-width: 1030px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flexible-start-wrapper .wpb-container .flexible-content p {
    margin-top: 24px;
}

.flexible-start-wrapper {
    background-color: #f1f4f5;
    text-align: center;
}

.table-wrapper {
    margin-top: 47px;
    width: 100%;
    text-align: center;

    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
}
.table-wrapper figure {
    background-color: #ffff;
    padding: 23px 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.04);
}
.table-wrapper table {
    width: 100%;
    max-width: 970px;

    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.04);
    border-radius: 10px 10px 0px 0px;
    border: 1px solid #e1e7eb;
}
.table-wrapper .plan-btn-cta {
    text-align: start;
    margin-top: -2px;
}
.table-wrapper .plan-btn-cta .lead-1 p {
    line-height: 31px;
}

.table-wrapper table td {
    padding: 17px 0px 13px 26px;
}
.table-wrapper table th {
    padding: 22px 27px 23px 27px;
}
.table-wrapper table .td-p {
    font-weight: 500;
}

.admin-bar .wp_header {
    top: 32px;
}
.table-wrapper table td {
    text-align: left;
}
.table-wrapper table tr td {
    border-bottom: 1px solid #e1e7eb;
    background-color: #f1f4f5;
}
.table-wrapper th {
    background-color: #ffff;
    border-bottom: 1px solid #e1e7eb;
}

.date-table {
    font-weight: 700;
}

/* Payment options Page---Out of pocket section */
.pocket-payment-wrapper {
    padding-top: 61px;
    padding-bottom: 38px;
    background-color: #f1f4f5;
}
.pocket-payment-wrapper .wpb-container {
    max-width: 1380px;
}

.payment-content {
    text-align: center;
}

.payment-content p {
    margin-top: 24px;
}

.cards-wrapper {
    display: flex;
    height: 100%;
}
.pocket-payment-wrapper .cards-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    justify-content: start;
    flex-wrap: wrap;
    width: calc(100% + 30px);
}
.cards-wrapper .card-body a {
    font-weight: 700;
}
.pocket-payment-wrapper .cards-wrapper .card-body {
    width: calc(33.3% - 30px);
    min-height: 226px;
    margin-left: 15px;
    margin-right: 15px;
}

.cards-wrapper .card-body {
    padding: 39px 40px 29px;
    text-align: center;
    background-color: #e1e7eb;
    border: 1px solid rgba(158, 178, 189, 0.1);
    border-radius: 10px;
    width: 100%;
}

.video-wrapper .card-body {
    border: 1px solid #e1e7eb;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.04);
}

.cards-wrapper.aligncenter {
    justify-content: center;
}

.cards-wrapper .card-body p {
    margin-top: 16px;
}

.cards-wrapper.content-left .card-body {
    justify-content: left !important;
    text-align: left !important;
}

.cards-wrapper.content-center .card-body {
    justify-content: center !important;
    text-align: center !important;
}

.cards-wrapper.content-right .card-body {
    justify-content: right !important;
    text-align: right !important;
}

/* Funding-Page */
.federal-funding .video-content {
    max-width: 974px;
}

.video-wrapper.federal-funding {
    padding-top: 62px;
    padding-bottom: 58px;
}

.video-wrapper.federal-funding.video-sec {
    padding-top: 62px;
    padding-bottom: 41px;
}

.video-wrapper.federal-funding .wpb-container {
    max-width: 1030px;
}

.federal-funding .plan-btn-cta .left-text {
    width: calc(100% - 242px);
}

.video-wrapper.federal-funding .plan-btn-cta {
    margin-top: 54px;
    border-radius: 10px;
}

.video-wrapper.federal-funding .plan-btn-cta {
    margin-top: 45px;
}

.federal-funding .plan-btn-cta .left-text p {
    color: #ffffff;
    line-height: 30px;
    font-weight: 700;
}

.federal-funding .video-frame {
    margin-top: 46px;
}

.federal-funding .video-content .para-below {
    margin-top: 32px;
}

/* Tuition Page --Video-section */

.video-wrapper {
    padding-top: 51px;
    padding-bottom: 60px;
    background-color: #f1f4f5;
}
.video-content {
    text-align: center;
    max-width: 975px;
    margin-left: auto;
    margin-right: auto;
}
.video-content p {
    margin-top: 24px;
}
.video-wrapper .card-body {
    background-color: #ffff;
    text-align: left;

    padding: 40px 40px 38px;
}
.video-wrapper .card-content > strong {
    font-family: "Public Sans", "Segoe UI";
    font-weight: bold;
    font-style: italic;
    margin-top: 24px;
    display: block;
}
.video-wrapper a {
    font-weight: bold;
}
.video-wrapper a:hover {
    font-weight: bold;
}

.tuition-block table{
    min-width: 450px;
}

.tuition-block{
    overflow: auto
}

.video-wrapper .card-content p > span {
    background-color: rgba(239, 172, 33, 0.5);
    font-weight: bold;
}
.video-frame {
    margin-top: 41px;
    text-align: center;
    padding-bottom: 42%;
    position: relative;
}
.federal-funding .video-frame {
    padding-bottom: 58%;
}
.video-frame iframe {
    width: 100%;
    max-width: 970px;
    max-height: 555px;
    /* padding-bottom: 40px; */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
}

/* Pay with Financing */
.pay-financing {
    padding-top: 50px;
    padding-bottom: 60px;
    text-align: center;
    background-color: #f1f4f5;
}
.pay-financing .financing-content .lead-2 {
    margin-top: 24px;
}
.pay-financing .financing-content p:not(:first-child) {
    margin-top: 30px;
    color: #5d6f80;
    font-style: italic;
    line-height: 28px;
    font-size: 16px;
    font-weight: 400;
    word-spacing: -1px;
}
.financing-table {
    margin-top: 50px;
    max-width: 811px;
    margin-left: auto;
    margin-right: auto;
}
.pay-financing .wpb-container {
    max-width: 1030px;
}
/* .financing-table{
    
} */
.financing-table ol {
    list-style-position: inside;
    font-size: 14px;
    line-height: 24px;
    text-align: initial;
    margin-top: 30px;
    padding-left: 0px;
    margin-left: 0px;
    color: #5d6f80;
    font-style: italic;
}
.financing-table ol li:not(:last-child) {
    margin-bottom: 13px;
}
.financing-table ol li::marker {
    color: #5d6f80;
    font-weight: 400;
    font-family: "Public Sans";
}

/* PARTNERSHIP PAGE ----Ace partnership */
.ace-partnership {
    padding: 60px 0px;
    text-align: center;
}
.ace-partnership .wpb-container {
    max-width: 1027px;
}
.ace-partnership .ace-partnership-content .lead-2 {
    margin-top: 17px;
    font-weight: 600;
}
.ace-partnership img {
    margin-top: 50px;
}

/* Partnership Page --Vertical Tabs*/
.V-tabs-wrapper {
    display: flex;
    align-items: stretch;
    position: relative;
    background-color: #f1f4f5;
    max-width: 1440px;
    margin: 0 auto;
}

.V-tabs-container hr{
    margin-left: -70px;
    margin-right: -60px
}

.V-tabs-container {
    background-color: #f1f4f5;
    padding: 62px 61px 78px 70px;
    position: relative;
}
.V-tabs-container .wpb-container {
    padding-left: 0px;
    padding-right: 0px;
}

.V-tabs {
    width: 305px;
    z-index: 4;
    background-color: #ffff;
    transition: all 0.5s;
}
.V-tabs .V-tabs-body {
    position: sticky;
    top: 165px;
}
.V-tabs-wrapper .wpb-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.tabs-toggle {
    display: flex;
    display: none;
}
.V-tabs-wrapper .tabs-contents {
    max-width: 1030px;
}

.V-tabs-wrapper:not(.V-tabs-scroll) .tabs-contents:not(.active) {
    display: none;
}

.V-tabs-container {
    width: calc(100% - 305px);
}
.busisness-p1 {
    margin-top: 40px;
}

.search-results > li > h3{
    margin-bottom: 15px;
    font-size: 35px;
    line-height: 1.2;
}

.search-results h3 a{
    text-decoration: none;
    color: #05213b;
}

.search-results h3 > a:hover{
    text-decoration: underline;
}

.search-results > li{
    padding: 20px 0;
    border-bottom: 1px solid rgb(216,207,207);
}

.search-results > li:last-child{
    border-bottom: none;
}

.search-results > li .labels{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.search-results > li .labels span{
    margin-right: 10px;
    padding: 5px 10px;
    border-radius: 3px;
    background: #efac21;
    color: #05213b;
    font-size: 13px;
    font-weight: 600;
    line-height: 17px;
}

.pagination-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.pagination-wrapper:empty{
    display: none;
}

.pagination-wrapper > a,
.pagination-wrapper > span{
    background-color: #ffffff;
    padding: 10px 20px 6px;
    border: 1px solid rgb(226,226,226);
    border-radius: 5px;
    font-weight: 700;
    margin: 0 7px 5px;
    text-decoration: none;
    transition: 0.3s all;
    color: #B70404;
}

.pagination-wrapper > a:hover,
.pagination-wrapper > a.active{
    background-color: #B70404;
    color: #ffffff
}

.pagination-wrapper > span{
    opacity: 0.5
}

.pagination-wrapper > a.next,
.pagination-wrapper > a.prev{
    color: transparent;
    width: 52px;
    height: 46px;
    overflow: hidden;
    background: url('../img/arrow-bullet.svg') center no-repeat;
    border: none;
}

.pagination-wrapper > a.prev{
    transform: rotate(180deg);
}

.V-tabs li {
    padding: 18px 30px 19px 40px;
    border-bottom: 1px solid #f1f4f5;
    cursor: pointer;
}
.V-tabs .tabs-links:first-child {
    border-top: 1px solid #f1f4f5;
}
.V-tabs-body li:before {
    display: none;
}
.V-tabs a {
    color: #5d6f80;
    text-decoration: none;
    line-height: 32px;
}
.V-tabs-container .tabs-contents-lists li:last-child {
    margin-bottom: 0px;
}

.V-tabs-container .tabs-contents-lists li {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    padding-left: 46px;
}
.lead-2.single-p {
    position: relative;
    margin-top: 40px;
}
.bg-yellow-1 {
    color: #efac21;
}
.bg-yellow-1:hover {
    color: #efac21;
}
.tabs-contents-top p > {
    margin-top: 23px;
}

.blog-single-wrapper .author-sm-profile{
    display: flex;
    align-items: center;
    margin-top: 30px
}

.blog-single-wrapper .author-sm-profile .author-image{
    height: 100px;
    width: 100px;
    border-radius: 50px;
    overflow: hidden;
    min-width: 100px;
}

.blog-single-wrapper .author-sm-profile .author-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-title-bar{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.category-title-bar > li a{
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid;
    border-radius: 3px;
    display: block;
    margin: 5px
}

.category-title-bar > li a.current{
    cursor: default;
    background: #b70404;
    color: #ffffff;
}

.category-title-bar > li a:not(.current):hover{
    opacity: 0.7
}

.blog-single-wrapper .author-sm-profile .author-text{
    margin-left: 20px;
}

.blog-single-wrapper .author-sm-profile .author-text p{
    margin-top: 5px;
}
 
.blog-single-wrapper .author-sm-profile .author-text > a{
    margin-top: 10px;
}

.blog-single-wrapper .post-sharing{
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.blog-single-wrapper h5{
    margin: 0 !important;
    font-size: 26px;
}

.blog-single-wrapper .post-sharing ul{
    display: flex;
    align-items: center;
    margin-left: 10px
}

.blog-single-wrapper .post-sharing ul > li:before{
    content: none;
}

.blog-single-wrapper .post-sharing ul > li{
    padding: 0;
    margin: 0 8px !important;
    transition: 0.3s all;
}

.blog-single-wrapper .post-sharing ul > li a{
    border: 1px solid gray;
    border-radius: 50px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.blog-single-wrapper .post-sharing ul > li:hover{
    opacity: 0.6
}

.blog-single-wrapper .post-sharing h5{
    padding-bottom: 7px;
}

.V-tabs-container .tabs-contents-lists li a.text-link {
    color: #05213b;
    line-height: 32px;
    font-size: 18px;
    background: url(../img/arrow-bullet.svg) no-repeat;
    padding: 1px 0 1px 47px;
    font-weight: 500;
}
.V-tabs-container .tabs-contents-lists ul {
    margin-top: 32px;
}
.V-tabs-container .tabs-contents-lists .lead-2 {
    margin-top: 38px;
}
.V-tabs-container .tabs-contents-lists .lead-2 a {
    font-weight: 700;
}
.tabs-contents-lists {
    margin-top: 41px;
}
.tabs-links.active {
    background-color: #f1f4f5;
    border-left: 5px solid #efac21;
    font-weight: 700;
    padding: 18px 30px 19px 35px;
}

.blog-single-wrapper{
    padding: 70px 0
}

.blog-single-wrapper .wpb-container{
    display: flex;
}

.blog-single-wrapper .blog-sidebar{
    width: 410px;
    min-width: 410px;
}

.blog-single-wrapper .blog-content{
    width: calc(100% - 440px);
    margin-right: 30px;
}

.blog-single-thumbnial{
    position: relative;
}

.blog-single-thumbnial img{
    width: 100%;
    height: auto;
}

.blog-single-wrapper .blog-content .gb-content{
    margin-top: 30px;
}

.blog-single-wrapper .blog-content .post-tags{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-right: -5px;
    padding-left: 40px;
    background: url('../img/tag.svg') top 4px left 5px no-repeat;
    background-size: 30px;
}

.blog-single-wrapper .blog-content .post-tags > a{
    display: block;
    max-width: max-content;
    margin: 0 5px;
    text-transform: capitalize;
}

.blog-single-wrapper .blog-content .post-tags > a:not(:last-child):after{
    content: ","
}

.blog-sidebar .related-posts{
    padding: 0 20px
}

.related-posts-wrapper{
    display: flex;
    flex-direction: column;
}

.related-posts-wrapper .related-post-box{
    margin-top: 30px;
    text-decoration: none;
}

.related-posts-wrapper .related-post-box:first-child{
    margin-top: 0px;
}

.related-posts-wrapper .related-post-box:hover{
    opacity: 0.7
}

.related-posts-wrapper .related-post-box .tag{
    color: #ffffff;
    background: #b70404;
    padding: 5px 10px;
}

.related-posts-wrapper .related-post-box .title{
    margin-top: 10px;
    margin-bottom: 0px;
    color: #05213b;
}

.related-posts-wrapper .related-post-box .date{
    margin-top: 10px;
    font-weight: 300;
}

.partners-cards-wrapper {
    margin:0 0 -39px;
}
.partners-cards-wrapper .p-bottom {
    margin-top: 2px;
}
.partners-cards-wrapper .undergraduate-t1 {
    margin-bottom: 38px;
    margin-top: 3px;
}
.partners-cards-wrapper .cards-contents h3 {
    margin-bottom: 40px;
}
.partners-cards-wrapper .cards-contents {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.partners-cards-wrapper .p-cards {
    width: calc(50% - 15px);
}

.partners-cards-wrapper .cards-contents{
    margin-top: 40px
}

.p-cards .img-wrapper {
    text-align: center;
    background-color: rgba(241, 244, 245, 0.6);
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-cards .img-wrapper img {
    max-width: 100%;
    max-height: 100%;
}
.p-cards {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid #e1e7eb;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.04);
    margin-bottom: 39px;
}
.p-cards .cards-content {
    position: relative;
    background-color: #ffff;
    padding: 24px 29px 27px 29px;
    min-height: 264px;
    flex-grow: 1;
    border-radius: 0px 0px 10px 10px;
}
.p-cards .cards-content a {
    position: absolute;
    display: inline-block;
    bottom: 29px;
    background: url(../img/icon-btn.svg) no-repeat;
    text-transform: capitalize;
    padding: 2px 0 0px 42px;
    color: #b70404;
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    text-decoration: none;
}
.p-cards .cards-content h6 {
    color: #144282;
}
.p-cards .cards-content p {
    margin-top: 17px;
    padding-bottom: 54px;
}

.logos-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
    overflow: hidden;
}
.lead-2.p-bottom {
    margin-top: 40px;
}
.p-top-logo {
    margin-top: 33px;
}
.logos-wrapper .logo {
    width: 25%;
    text-align: center;
    flex-grow: 1;
    padding: 12px 16px 14px 20px;
    border-right: 1px solid rgba(158, 178, 189, 0.3);
    border-bottom: 1px solid rgba(158, 178, 189, 0.3);
    margin-left: -1px;
    margin-bottom: -1px;
    height: 192px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos-wrapper .logo img {
    max-height: 100%;
}

.logos-wrapper .logo:nth-child(4n) {
    border-right: none;
}

.logos-wrapper .logo:last-child {
    border-right: none;
}

.category-tag{
    position: relative;
    padding-top: 20px;
}

.category-tag a{
    color: #05213b;
    text-decoration: none;
    font-size: 24px;
}

.category-tag a:hover{
    text-decoration: underline;
}

/* Footer-form */

.footer-form-wrapper {
    position: relative;
    padding-top: 70px;
    padding-bottom: 59px;
    text-align: center;
    background: #083259;
    color: #ffff;
}

.footer-form-wrapper .gform_confirmation_message {
    color: #efac21;
    font-size: 30px;
    padding: 30px;
    margin-top: 30px;
    line-height: 1.4;
}

.footer-form-wrapper select {
    padding: 7px 35px 7px 15px !important;
    font-size: 16px !important;
    margin: 0 !important;
}

.footer-form-wrapper input:not([type="submit"]) {
    padding: 15px !important;
    font-size: 16px !important;
    margin: 0 !important;
}

.select .options li[rel=""]{
    display: none;
}

.footer-form-wrapper:after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/dotted-pettern-dark-2x.png) repeat;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
}
.footer-form-wrapper:before {
    content: "";
    background: url("../img/footer-bg-img.svg") top right no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    z-index: 5;
}
.footer-form-wrapper .wpb-container {
    position: relative;
    z-index: 10;
    max-width: 1030px;
}

.footer-form-wrapper .gform_wrapper {
    margin-top: 24px;
}

.footer-form-top .form-points {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 24px;
    position: relative;
}
.footer-form-top .form-points li {
    position: relative;
    padding: 0px 34px;
	color: #ffffff !important;
}
.privacy {
    text-decoration: underline;
    text-underline-position: under;
    cursor: pointer;
    color: #9eb2bd;
    font-weight: 400;
}
.privacy:hover {
    color: #9eb2bd;
    text-decoration: none;
}
/* .footer-form-top ul > li:not(:first-child){
   
    border-left:3px solid #EFAC21;
} */
.footer-form-top .form li {
    padding: 0px 34px;
    position: relative;
}
.footer-form-top li:not(:first-child):before {
    content: "";
    position: absolute;
    width: 3px;
    height: 28px;
    background-color: #efac21;
    left: -1px;
    top: 4px;
}

.form-wrapper .form-top-content h2,
.form-wrapper .form-top-content h3,
.form-wrapper .form-top-content h4,
.form-wrapper .form-top-content h5,
.form-wrapper .form-top-content h6 {
    color: #efac21;
    font-family: "Public Sans";
    line-height: 1.29;
    font-weight: 700;
}

.form-top-content p {
    margin-top: 13px;
    font-size: 18px;
    line-height: 1.78;
}

.form-wrapper {
    max-width: 770px;
    margin-inline: auto;
    margin-top: 48px;
}

.form-wrapper form {
    margin-top: 33px;
}

.form-bottom-content {
    grid-column-start: 1;
    grid-column-end: 3;
    z-index: 4;
    margin-top: 8px;
}

.form-bottom-content p {
    font-size: 13px;
    line-height: 19px;
    color: #9eb2bd;
    margin-bottom: 24px;
    text-align: start;
}

.footer-form-wrapper .gform_body .gform_fields {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    margin-right: -10px !important;
    margin-left: -10px !important;
}

.footer-form-wrapper .gform_body .gfield.gfield--width-half  {
    width: calc(50% - 20px) !important;
    margin: 0 10px 16px !important;
}

.gform_legacy_markup_wrapper form li.gfield--width-full{
    width: calc(100% - 20px) !important;
    margin: 0 10px 16px !important;
}

.footer-form-wrapper .field_description_below.formpp {
    color: #9eb2bd;
    font-size: 13px;
    line-height: 1.46 !important;
    text-align: left;
    width: 100%;
    margin-top: 8px !important;
    margin-bottom: 0 !important;
}

.gform_footer {
    display: flex;
    flex-wrap: wrap;
    margin-top: 7px !important;
}
.gform_footer input[type="submit"] {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 375px;
}

.footer-form-wrapper li.gfield {
    padding: 0 !important;
}

/* -----------------------------------
  Home page Find Your Program form section
----------------------------------- */

.fp-section {
    background: #083259;
    padding: 30px 0;
    position: relative;
    z-index: 11;
}

.fp-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url("../img/dotted-pettern-dark-2x.png");
    display: block;
    z-index: 0;
    opacity: 0.2;
}

.fp-section .wpb-container {
    display: flex;
    max-width: 1230px;
    position: relative;
}

.fp-section .fp-form {
    display: flex;
    flex: 1;
    column-gap: 20px;
}

.fp-section .fp-form select:first-child {
    max-width: 255px;
}

.fp-section .fp-form select {
    margin: 0;
}

.fp-section .fp-form button[type="submit"]:after {
    width: 174px;
}

.fp-section .fp-divider {
    color: #fff;
    font-size: 13px;
    line-height: 15px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin: 0 12px;
}

.fp-section .ri-btn::after {
    width: 120px;
}

/* -----------------------------------
  Home page slider Quility you expect
----------------------------------- */

.tcs-section {
    position: relative;
}

.tcs-section2 {
    position: relative;
}

.tcs-section .wpb-container {
    padding-left: 18px;
    padding-right: 18px;
    position: relative;
}

.tcs-section .tcs-slider {
    padding: 10px 12px;
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-top: -10px;
    margin-bottom: -10px;
}

.tcs-section .tcs-slider2 {
    padding: 10px 12px;
}

.tcs-slider .swiper-slide {
    height: auto;
    text-align: left;
}

.tcs-cta-box {
    display: flex;
    flex-direction: column;
}

.tcs-slider2 .swiper-slide {
    height: auto;
    text-align: left;
}

.tcs-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #05213b;
}

.cd-content-center .tcs-box{
    text-align: center !important;
}

.cd-content-center .tcs-box p{
    text-align: center !important;
}

.tcs-box p a{
    color: #b70404 !important;
}

.mi-slider .tcs-box p > strong {
    background-color: #f7d590 !important;
}

.mi-slider .tcs-box .tcs-text-box a em{
    color: #05213B;
    display: inline-block;
    margin-top: 7px;
}

.cards-have-shadow .tcs-box {
    box-shadow: 5px 5px 0 3px #196b81;
}

.tcs-slider2 .tcs-box {
    padding: 30px 24px;
}

.tcs-text-box {
    margin-bottom: auto;
}

.tcs-box h6 {
    margin: 0;
}

.tcs-box p {
    margin-top: 16px;
}

.tcs-box:not(.tcs1-box) p {
    margin-top: 17px;
    margin-bottom: auto;
}

.tcs-box p strong {
    font-weight: 800;
}

.tcs-box a {
    margin-top: 24px;
    max-width: max-content;
}

.tcs-slider2 .tcs-box a {
    margin-top: 23px;
}

.tcs-box a:not(:first-of-type) {
    margin-top: 8px;
}

.disclaimer-text {
    font-size: 15px;
    opacity: 0.7;
    font-style: italic;
}


/* ----------------------------------------
  Home page Meet Our 2021 Graduates slider
---------------------------------------- */
.chat-icon {
    display: none;
    width: 67px;
    height: 67px;
    border-radius: 50%;
    background: url(../img/chat.svg) center center no-repeat #b70404;
    position: fixed;
    background-size: 100%;
    right: 20px;
    bottom: 20px;
    box-shadow: 0 1px 9px 0 rgb(0 0 0 / 19%);
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
    outline: 0;
    text-decoration: none;
    z-index: 9999;
}
.mog-section {
    position: relative;
    background: #f1f4f5 url("../img/background-icon-dark.svg") 60% bottom
        no-repeat;
    background-size: 593px;
    padding: 100px 0;
    overflow: hidden;
}

.mog-section.lighter-bg{
    background-color: #ffffff
}

.mog-section.darker-bg{
    background-color: #E2E7EB
}

.mog-section.blue-bg{
    background: #08325A url("../img/mog-arrow-blue.svg") 60% bottom no-repeat; 
}

.mog-single .mog-box{
    position: relative;
    z-index: 1
}

.mog-box .social-icon-wrap{
    justify-content: left;
    margin: 30px -14px 0;
}

.mog-box .social-icon-wrap .soc-wrap{
    height: auto;
    width: auto;
    margin: 0 14px;
}

.mog-section:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 50%;
    left: 0;
    top: 0;
    background: url("../img/dotted-pettern-dark.png");
}

.mog-section:before {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    width: 16%;
    right: 0;
    background: url("../img/dotted-pettern-dark.png");
}

.mog-section.blue-bg:before{
    background: url("../img/dotted-pettern-dark-2x.png");
    opacity: 0.2;
}

.mog-section.blue-bg:after{
    background: url("../img/dotted-pettern-dark-2x.png");
    opacity: 0.2;
}

.mog-section.blue-bg a{
    color: #F1AA1D;
}

.mog-section.blue-bg a.text-link{
    color: #F1AA1D;
    background: url(../img/icon-btn-yellow.svg) left top no-repeat
}

.mog-slider {
    width: calc(100% + 59px);
}

.mog-slider .swiper-slide {
    height: auto;
}

.mog-section .wpb-container {
    position: relative;
    padding-left: 135px;
}

.mog-section.mog-single .wpb-container {
    position: relative;
    padding: 0 30px;
    max-width: 1110px;
}

.mog-box {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.mog-box .mog-thumb {
    width: 51%;
}

.mog-box .mog-thumb img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.mog-box .mog-info {
    width: 50%;
    padding: 30px 30px 31px 60px;
}

.mog-box.image-width-small{
    align-items: center;
}

.mog-box.image-width-small .mog-thumb{
    width: 30%
}

.mog-box.image-width-small .mog-info{
    width: 70%
}

.mog-box .mog-info h5 {
    font-family: "Blacker Pro Display", Georgia, "Times New Roman", Times, serif;
    line-height: 1.29;
    margin-bottom: 7px;
}

.mog-box .mog-info > a {
    margin-top: 24px;
    font-size: 18px;
    line-height: 32px;
    background-position: 1px 2px;
    padding: 1px 0 3px 45px;
}

.mog-box .mog-info p {
    margin-top: 16px;
    font-size: 18px;
    line-height: 32px;
}

.mog-arrow-left {
    height: 74px;
    width: 74px;
    border: 3px solid #ffffff;
    border-radius: 50px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 33px;
    z-index: 1;
    background: #3aafb9 url("../img/arrow-left-white.svg") center no-repeat;
    transition: 0.3s all;
    opacity: 0.98;
}

.mog-arrow-left:hover {
    opacity: 0.6;
}

.mog-arrow-right {
    height: 74px;
    width: 74px;
    border: 3px solid #ffffff;
    border-radius: 50px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 33px;
    z-index: 1;
    opacity: 0.98;
    background: #3aafb9 url("../img/arrow-right-white.svg") center no-repeat;
    transition: 0.3s all;
}

.mog-arrow-right:hover {
    opacity: 0.6;
}

.mog-pagination:not(.swiper-pagination-lock) {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    display: none;
}

.mog-pagination .swiper-pagination-bullet {
    background-color: #c1cad0;
    height: 8px;
    width: 8px;
    opacity: 1;
    transition: 0.3s all ease;
    border-radius: 50px;
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.mog-pagination
    .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
    background-color: #85ebff;
}

.mog-pagination .swiper-pagination-bullet-active {
    background-color: #3aafb9;
    width: 48px;
    cursor: default;
}

.news-hero{
    background-color: #083259;
    color: #ffffff;
    text-align: center;
    padding: 70px 0;
}


.news-hero > .wpb-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-hero h1{
    padding-bottom: 30px;
    position: relative;
}

.news-hero h1:after{
    content: "";
    width: 60px;
    height: 4px;
    background-color: #efac21;
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.news-hero .date{
    margin-top: 10px;
}
.alumni-newsletter-section{
    position: relative;
    z-index: 11;
}
.news-hero .date-category{
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize
}

.news-hero .date-category > *{
    padding: 0 15px;
}

.news-hero .date-category .category{
    color: #efac21;
    border-left: 1px solid;
}

.news-hero .author-box{
    display: flex;
    align-items: center;
    margin-top: 30px;
    text-align: left;
}

.news-hero a{
    color: #efac21;
}

.news-hero .wpb-container > a{
    margin-top: 20px;
}

.post-hero .category{
    color: #ffffff !important
}

.news-hero .author-box .profile{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.news-hero .author-box .profile img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.news-hero .author-box .info{
    max-width: 200px;
}

.news-hero .author-box .info .name{
    font-weight: 900
}

.news-hero .author-box .info .label{
   margin-top: 5px;
}

body.single-ace-news-events .news-hero .date,
body.single-ace-events .news-hero .date{
    margin-top: 0px;
}

body.single-ace-news-events .news-hero .date-category,
body.single-ace-events .news-hero .date-category{
    margin-top: 30px;
}

body.single-ace-news-events .news-hero .date-category .category,
body.single-ace-events .news-hero .date-category .category{
    border-left: none;
    border-right:1px solid #ffff;
}

.post-disclaimer {
    font-style: italic;
    font-weight: bold;
    font-size: 14px;
}

/* ------------------------------------------------
  Tuition and ROI Page Low Cost You Deserve section
------------------------------------------------- */

.lcd-section {
    background-color: #f1f4f5;
    padding: 61px 0 50px 0;
}

.header_landing-page.wp_header .wpb-container {
    padding-top: 15px;
    padding-bottom: 15px;
}

.lcd-section .wpb-container {
    max-width: 1030px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lcd-section .wpb-container > .lead-2 {
    margin-top: 23px;
}

.lcd-section .wpb-container > .lead-2 p:not(:first-child) {
    margin-top: 32px;
}

.lcd-progress-wrapper {
    margin-top: 61px;
    width: 100%;
    max-width: 742px;
    margin-left: auto;
    margin-right: auto;
}

.is-type-video .wp-block-embed iframe{
    box-shadow:0px 0px 10px rgba(0, 0, 0, 0.2);
}

.footer-form-wrapper .top_label div.ginput_container {
    margin: 0 !important;
}

.lcd-progress-wrapper .lcdp-item {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}

.price-wraper {
    position: relative;
}

.lcd-progress-wrapper .lcdp-item .fprice {
    position: absolute;
    top: -41px;
    left: 57px;
}

.lcdp-item {
    position: relative;
}

.lcdp-item .price {
    position: absolute;
    left: 40.5%;
    top: -13px;
    font-size: 20px;
    line-height: 20px;
    font-weight: 800;
    z-index: 1;
}

.lcdp-item-logo {
    width: 213px;
    display: flex;
    justify-content: end;
    max-width: 50%;
}

.lcdp-item-heading {
    width: 213px;
    text-align: end;
}

.lcd-progress-wrapper .lcdp-item .lcdp-item-logo > img {
    width: auto;
    max-width: 100%;
    height: 60px;
    object-fit: contain;
}

.lcd-progress-wrapper .lcdp-item .lcdp-item-heading > h6 {
    font-size: 18px;
}

.lcd-progress-wrapper .lcdp-item:not(:first-child) {
    margin-top: 8px;
    padding: 22px 0 10px 0;
}

.lcd-progress-wrapper .lcdp-item:first-child {
    margin-bottom: 10px;
}

.lcd-progress-wrapper .lcdp-item .prog-outer {
    width: 100%;
    background-color: #e1e7eb;
    border-radius: 50px;
    height: 16px;
    min-height: 16px;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.lcd-progress-wrapper .lcdp-item .prog-outer > span {
    position: absolute;
    height: 100%;
    top: 0;
    left: -100%;
    background-color: #3aafb9;
    transition: 1s all ease-in-out;
}

.lcd-progress-wrapper .lcdp-item.animate .prog-outer > span {
    left: 0;
}

/* -----------------------------------
  Tuition and ROI Page Payment Options
----------------------------------- */

.po-section {
    background: #e1e7ebc7 url("../img/dotted-pettern-dark.png");
    padding: 51px 0 58px 0;
    text-align: center;
}

.po-section .wpb-container > h2 {
    padding-bottom: 28px;
    position: relative;
}

.po-section .wpb-container > h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #efac21;
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.po-section .wpb-container > .lead-1 {
    margin-top: 24px;
}

.po-section .swiper {
    margin-top: 40px;
}

.po-section .tcs-box {
    box-shadow: none;
    border: 1px solid #e1e7eb;
}

.po-section .tcs-box p strong {
    font-weight: 700;
}

.po-section
    .tcs-slider-pagination
    .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background-color: #3aaeb9a6;
}

.fai-section .tcs-box {
    text-align: center;
}

/* -----------------------------------
  Scholarships and Grants section
----------------------------------- */

.sg-section {
    background-color: #f1f4f5;
    text-align: center;
    padding: 49px 0 51px 0;
}

.sg-section .wpb-container {
    max-width: 1030px;
}

.sg-wrapper:not(:last-child) {
    margin-bottom: 39px;
}

.sg-box {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    overflow: hidden;
}

.sg-box:not(:last-child) {
    margin-bottom: 39px;
}

.sg-box .sg-title {
    background-color: #e1e7eb;
    padding: 21px 30px 23px 30px;
    text-align: center;
    margin: 0
}

.sg-content-wrapper {
    display: flex;
    background-color: #ffffff;
    text-align: left;
    flex-wrap: wrap;
    margin-bottom: -1px;
    margin-right: -1px;
}

.sg-content-wrapper .sg-content {
    padding: 30px;
    width: 50%;
}

.sg-content-wrapper .sg-content h6 {
    color: #144282;
}

.sg-content-wrapper .sg-content p {
    margin-top: 17px;
}

.sg-content-wrapper .sg-content ul {
    margin-top: 16px;
}

.sg-content-wrapper .sg-content {
    border-right: 1px solid #e1e7eb;
    border-bottom: 1px solid #e1e7eb;
}

.sg-box .sg-footer {
    border-top: 1px solid #e1e7eb;
    padding: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
}

.sg-box .sg-footer p:not(:last-child) {
    margin-bottom: 15px;
}

.sg-box .sg-footer h6 {
    color: #144282;
}

.sg-box .sg-footer h6 + p {
    margin-top: 15px;
}

.sg-box .sg-footer .sf-footer-content {
    max-width: 480px;
}

.sg-box .disclaimer {
    padding: 30px;
    font-size: 14px;
    line-height: 24px;
    color: #5d6f80;
    font-style: italic;
    background-color: #f4f5f7;
    text-align: left;
}

/* Filter programs section */

.fpl-filter:before,
.fpl-filter .fpl-fwraper:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    left: 0;
    top: 0;
    background-color: rgba(20, 67, 130, 0.1);
    transition: 0.3s all;
    opacity: 0;
    visibility: hidden;
}
.fpl-filter.loading:before,
.fpl-filter.loading .fpl-fwraper:before {
    opacity: 1;
    visibility: visible;
}

.fpl-section-wrapper {
    background-color: #f1f4f5;
}

.fpl-section {
    display: flex;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.fpl-section .fpl-aside {
    background-color: #ffffff;
    width: 305px;
    min-width: 305px;
}

.fpl-section .aside-header {
    background-color: #36a1ab;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 15px 14px 15px;
    gap: 8px;
    display: none;
}

.fpl-section .aside-header h6 {
    color: #ffffff;
    font-size: 14px;
    line-height: 16px;
}

.fpl-section .filter-close-btn,
.fpl-section .filter-toggle-btn {
    padding: 5px !important;
    background: none !important;
    display: none !important;
}

.fpl-section .filter-close-btn::after,
.fpl-section .filter-toggle-btn::after {
    width: 0 !important;
}

.fpl-section .filter-toggle-btn > h6 {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fpl-filter.active .filter-toggle-btn > h6 .hide {
    display: none !important;
}

.fpl-filter.active .filter-close-btn {
    display: block;
}

.fpl-filter {
    padding-top: 74px;
    z-index: 1;
    position: sticky;
    top: 135px;
}

.fpl-filter-container {
    position: relative;
}

.fpl-filter-container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(20, 69, 130, 0.2);
    z-index: 10;
    width: 100%;
    height: 100%;
    transition: 0.3s all;
    opacity: 0;
    visibility: hidden;
}

.fpl-filter-container.loading:after {
    opacity: 1;
    visibility: visible;
}

.no-results {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 20px;
    font-size: 30px;
}

.no-results-small {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    font-size: 18px;
    width: 100%;
}

.api-program-wrapper.accordion {
    margin-top: 20px;
}

.fpl-filter .fpl-filter-top {
    display: flex;
    padding: 0 11px 10px 40px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #f1f4f5;
}

.fpl-filter .fpl-filter-top button[type="reset"] {
    padding: 5px;
    background-color: transparent;
    font-size: 13px;
    line-height: 20px;
    color: #9eb2bd;
}

.fpl-filter .fpl-filter-top button[type="reset"]:after {
    width: 0;
}

.fpl-filter .fpl-filter-top h6 {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px;
}

.fpl-filter .fpl-fbox {
    padding: 24px 40px 20px 40px;
}

.fpl-filter-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fpl-submit-btn {
    margin-top: auto;
    border-radius: 0 !important;
    display: none !important;
}

.fpl-filter .fpl-fbox:not(:first-child) {
    border-top: 2px solid #f1f4f5;
    padding-top: 17px;
}

.fpl-filter .fpl-fwraper .select,
.fpl-filter .fpl-fwraper select {
    margin-bottom: 24px;
}

.fpl-filter .fpl-fwraper .select .styledSelect{
    text-transform: capitalize;
    height: 46px;
}

.fpl-filter .fpl-fwraper h6 {
    font-size: 13px;
    text-transform: uppercase;
    line-height: 20px;
    margin-bottom: 20px;
}

.fpl-filter .fpl-fwraper .dl-checkbox {
    line-height: 1;
}

.fpl-filter .fpl-fwraper .dl-checkbox:last-child .ace-checkbox {
    margin-bottom: 0;
}

.fpl-aside .more-btns {
    background-color: #083259;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 32px 40px;
    position: relative;
}

.fpl-aside .more-btns::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../img/dotted-pettern-dark-2x.png");
    z-index: 0;
    opacity: 0.25;
}

.fpl-aside .more-btns a {
    z-index: 1;
}

.fpl-aside .more-btns a:after {
    width: 177px;
}

.logo-desc-wrapper{
    display: flex;
}

.logo-desc-wrapper .logo-wrap{
    margin-right: 20px;
    max-width: 200px;
}

.fpl-aside .more-btns a:not(:first-child) {
    margin-top: 16px;
}

.fpl-section .wpb-container {
    padding: 0;
}

.fpl-section .fbl-content {
    padding: 54px 60px 17px 70px;
}

.fpl-section .fbl-content:not(:first-child) {
    padding-top: 39px;
}

.fpl-section .fbl-content:last-child {
    padding-bottom: 39px;
}

.fpl-reset-btn.active {
    color: #05213b !important;
}

.fbl-content > p {
    margin-top: 24px;
}

.fbl-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 40px;
}

.fbl-box {
    width: calc(50% - 30px);
    margin: 0 15px 40px 15px;
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fbl-box .fbl-box-content {
    padding: 29px 27px 25px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fbl-box .fbl-box-content > h6 {
    color: #144282;
}

.fbl-box .fbl-box-content > p {
    margin-top: 17px;
    margin-bottom: auto;
}

.fbl-box .fbl-box-content > a {
    margin-top: 23px;
    max-width: max-content;
}

.fbl-box .fbl-details {
    background-color: #f7f8f9;
    padding: 12px 20px 12px 19px;
}

.fbl-box .fbl-details > li {
    display: flex;
    align-items: center;
}

.fbl-box .fbl-details > li.AverageSalary {
    display: none;
}

.fbl-box .fbl-details > li .label {
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 20px;
    color: #5d6f80;
    text-transform: uppercase;
    min-width: 190px;
    padding-left: 24px;
    position: relative;
    background-position: 0 2px;
    background-repeat: no-repeat;
    background-size: 19px 15px;
}

.fbl-box .fbl-details > li .label.university-icon {
    background-image: url("../img/icon-university.svg");
}

.fbl-box .fbl-details > li .label.calender-icon {
    background-image: url("../img/icon-calendar.svg");
}

.fbl-box .fbl-details > li .label.clock-icon {
    background-image: url("../img/icon-clock.svg");
}

.fbl-box .fbl-details > li .label.star-icon {
    background-image: url("../img/icon-star.svg");
}

.fbl-box .fbl-details > li .label.graduation-icon {
    background-image: url("../img/icon-graduation-cap.svg");
}

/* Rankings & Awards section */

.ra-section {
    padding: 49px 0 43px 0;
    background-color: #f1f4f5;
}

.ra-section .btn-col {
    margin-top: 44px;
}

.ra-section .wpb-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ra-section .content-wraper {
    max-width: 945px;
}

.ra-section .content-wraper p {
    margin-top: 24px;
}

.ra-section .content-wraper p:not(:first-child) {
    margin-top: 32px;
}

.ra-section .content-wraper > .p-space {
    margin-top: 32px;
}

.ra-section .content-wraper h3:not(:first-child) {
    margin-top: 40px;
}

.ra-box {
    text-align: center;
    height: auto;
    background: #e1e7eb;
    border: 1px solid rgba(158, 178, 189, 0.1);
    border-radius: 10px;
    padding: 24px 20px;
}

.ra-box h4 {
    color: #efac21;
    font-family: "Public Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 0 !important;
}

.ra-box p {
    margin-top: 8px !important;
    line-height: 23px;
}

.ra-box p.small {
    line-height: 20px;
}

.ra-box p small {
    font-size: 13px;
    color: #5d6f80;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 700;
}
/* 
.ra-section .slick-wrapper {
    width: 100%;
}

.ra-section .slide-item {
    padding: 15px;
} */

.ra-slider-wrapper {
    width: 100%;
    position: relative;
    padding: 0 70px;
}

.ra-slider {
    width: 100%;
}

.ra-slider .swiper-slide {
    display: flex;
    flex-direction: column;
    height: auto;
}

.ra-slider .swiper-slide .ra-box:not(:last-child) {
    margin-bottom: 30px;
}

.ra-slider-wrapper .ra-arrow {
    position: absolute;
    top: calc(50% + 1px);
    transform: translateY(-50%);
    z-index: 2;
    color: transparent;
    background: transparent;
    padding: 0;
    line-height: 0;
    cursor: pointer;
    font-size: 0;
    transition: 0.3s all;
}

.ra-slider-wrapper .ra-arrow:hover {
    opacity: 0.5;
    background: none;
}

.ra-slider-wrapper .ra-arrow-left {
    left: -1px;
}

.ra-slider-wrapper .ra-arrow-right {
    right: -1px;
}

.ra-slider-wrapper .ra-arrow:focus {
    background: none !important;
    font-size: 0;
    line-height: 0;
    padding: 0;
}

.ra-slider-wrapper .ra-arrow::after {
    content: none;
}

.ra-slider-wrapper .ra-arrow::before {
    content: "";
    display: block;
    width: 57px;
    height: 57px;
    opacity: 0.98;
    border: 2px solid #c8d3d9;
    border-radius: 50px;
    background-size: 14px 25px;
    background-position: center;
    background-repeat: no-repeat;
}

.ra-slider-wrapper .ra-arrow-left::before {
    background-image: url("../img/arrow-left-black.svg");
}

.ra-slider-wrapper .ra-arrow-right::before {
    background-image: url("../img/arrow-right-black.svg");
}

.ra-slider-wrapper .ra-pagination {
    display: none !important;
    margin-top: 20px;
}

.ra-slider-wrapper .ra-pagination > .swiper-pagination-bullet {
    background: #3aaeb9a6;
    height: 8px;
    width: 8px;
    margin: 4px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s all;
    opacity: 1;
}

.ra-slider-wrapper
    .ra-pagination
    > .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #3aafb9;
    width: 48px;
}

/* -----------------------------------
      Social Responsibility section
    ----------------------------------- */

.sr-section {
    padding: 52px 0 40px;
}

.sr-section .wpb-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1230px;
}

.sr-section .content-wraper {
    max-width: 970px;
    text-align: center;
}

.sr-section .content-wraper > .lead-2 {
    margin-top: 23px;
}

.sr-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: -15px;
    width: calc(100% + 30px);
}

.sr-box {
    width: calc(25% - 30px);
    margin: 15px;
    background: #e1e7eb;
    border: 1px solid rgba(158, 178, 189, 0.1);
    border-radius: 10px;
    text-align: center;
    padding: 21px 18px 30px 18px;
}

.sr-box > h4 {
    color: #efac21;
    font-family: "Public Sans", sans-serif;
    font-weight: 700;
    margin: 0 !important;
}

.sr-box > p {
    margin-top: 8px !important;
    line-height: 23px;
}

.link-yellow a {
    color: #efac21;
}

.myTable tr:not(.content) td:first-child {
    text-transform: uppercase;
}

.img-background-dotted {
    background: none;
    padding-right: 10px;
}

.img-background-dotted:after {
    content: none;
}

.img-background-dotted .image-box {
    max-width: max-content;
    border-radius: 10px 10px 15px 15px;
    background-color: rgba(128, 128, 128, 0);
    padding: 26px 0 26px 20px;
    position: relative;
}

.img-background-dotted .image-box img {
    border-radius: 10px;
    margin-right: -10px;
    position: relative;
    right: -10px;
    z-index: 1;
}

.img-background-dotted .image-box::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 15px 15px;
    background: url(../img/dotted-pettern-dark.png);
}

.cc-logo {
    border-radius: 10px;
    overflow: hidden;
    padding: 40px;
    max-width: 500px;
    margin-left: auto;
}

.smd-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin: -15px;
}

.smd-card {
    width: calc(50% - 30px);
    margin: 15px;
    box-shadow: 0 0 10px 0 rgba(118, 134, 147, 0.15);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.smd-wrapper.dk-col-1 .smd-card{
    width: calc(100% - 30px)
}

.smd-wrapper.dk-col-2 .smd-card{
    width: calc(50% - 30px)
}

.smd-wrapper.dk-col-3 .smd-card{
    width: calc(33.33% - 30px)
}

.smd-wrapper.dk-col-4 .smd-card{
    width: calc(25% - 30px)
}

.smd-wrapper.dk-col-5 .smd-card{
    width: calc(20% - 30px)
}

.smd-wrapper.dk-col-6 .smd-card{
    width: calc(16.66% - 30px)
}

.smd-card-content{
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.smd-card .smd-card-content h2,
.smd-card .smd-card-content h3,
.smd-card .smd-card-content h4,
.smd-card .smd-card-content h5,
.smd-card .smd-card-content h6,
.smd-card .smd-card-content p {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
}

.smd-card .smd-card-content .btn-wrap{
    margin-top: auto !important;
}

.smd-card .img-wrapper {
    position: relative;
    padding-bottom: 80%;
}

.smd-card .img-wrapper img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.micro-cards-wrapper {
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin: -15px;
}

.micro-cards-wrapper .card-body {
    width: calc(33.33% - 30px);
    margin: 15px;
    display: flex;
    flex-direction: column;
}

.micro-cards-wrapper .card-content {
    margin-bottom: auto;
}

.rfi-form .gform_legacy_markup_wrapper ul.gform_fields{
    display: flex !important;
    flex-wrap: wrap;
    width: calc(100% + 20px) !important;
    margin-left: -10px !important;
    margin-right: -10px !important;
}

.rfi-form li.gfield{
    width: calc(50% - 20px) !important;
    margin: 10px !important;
    padding: 0 !important;
}

.rfi-form li.gfield.gform_hidden{
    display: none !important;
}

.rfi-form .gform_legacy_markup_wrapper form li.gfield--width-full{
    width: calc(100% - 20px) !important;
    margin: 10px !important;
    padding: 0 !important;
}

.rfi-form .gform_legacy_markup_wrapper form li.gfield--width-full.gfield_html{
    width: calc(100% - 20px) !important;
}

.rfi-form .gform_legacy_markup_wrapper form li.gfield--width-full.gfield_html a{
    color: #B70404;
    font-weight: 700;
}

.rfi-form .gform_footer input[type="submit"]{
    margin-left: 0 !important;
}

p.red-alert-wrapper{
    color: #b70404;
    font-weight: bold;
    text-align: center;
    width: 100%;
    padding: 100px 20px;
}

/* timeline */

.timeline-sec {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-top: 60px;
}

.timeline-sec::after {
	content: "";
	border-right: 2px solid #bfd0e7;
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	z-index: -1;
}

.tl-content {
	display: flex;
	position: relative;
	justify-content: space-between;
	align-items: center;
}

.tl-content:not(:first-child) {
	margin-top: 55px;
}

.tl-content:nth-child(2n + 1) {
	flex-direction: row-reverse;
	position: relative;
}

.tl-content:nth-child(2n) {
	flex-direction: row;
	position: relative;
}

.tl-content .tl-image {
	width: 36%;
	display: flex;
	justify-content: center;
}

.tl-content .tl-text {
	width: 36%;
	display: flex;
	justify-content: center;
	box-shadow: 0px 12px 30px rgba(137, 154, 231, 0.2);
	border-radius: 10px;
	padding: 30px;
	z-index: 6;
	position: relative;
	background-color: #ffffff;
}

.tl-content h5 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.tl-content h5 {
	padding: 14px 20px;
	min-width: 100px;
	height: 55px;
	color: #fff;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #144282;
	z-index: 5;
	margin-top: 0 !important;
}

.tl-content h5.red-date {
	background-color: #b70404;
}

.tl-content h5.yellow-date {
	background-color: #efac21;
}

.tl-content:nth-child(2n + 1) h5::after {
	content: "";
	width: 75px;
	height: 4px;
	background-color: inherit;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 100%;
}

.tl-content:nth-child(2n) h5::after {
	content: "";
	left: 100%;
	width: 75px;
	height: 4px;
	background-color: inherit;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 100%;
}

.image-slider .caption-wrapper{
    text-align: center;
    margin-top: 5px
}

.image-slider .img-wrapper img{
    width: 100%;
    height: auto;
}

.image-slideshow-wrapper{
    padding: 0 0 30px 0;
    position: relative;
}

.image-slideshow-pagination{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px
}

.image-slideshow-pagination > span{
    transition: 0.3s all;
    border-radius: 50px;
}

.image-slideshow-pagination > span:hover{
    opacity: 0.6
}

.image-slideshow-pagination > span.swiper-pagination-bullet-active{
    width: 48px;
    background-color: #3AAFB9;
}

.image-slideshow-arrow-right {
    height: 50px;
    width: 50px;
    border: 3px solid #ffffff;
    border-radius: 50px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    z-index: 1;
    opacity: 0.98;
    background: #3aafb9 url(../img/arrow-right-white.svg) center no-repeat;
    background-size: 15px;
    transition: 0.3s all;
    display: none;
}

.image-slideshow-arrow-left {
    height: 50px;
    width: 50px;
    border: 3px solid #ffffff;
    border-radius: 50px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    z-index: 1;
    background: #3aafb9 url(../img/arrow-left-white.svg) center no-repeat;
    transition: 0.3s all;
    background-size: 15px;
    display: none;
}

.image-slideshow-arrow-right:hover,
.image-slideshow-arrow-left:hover{
    opacity: 0.7;
}

.image-slideshow-wrapper.show-arrows .image-slideshow-arrow-right,
.image-slideshow-wrapper.show-arrows .image-slideshow-arrow-left{
    display: block;
}

p + ul, p + ol {
    margin-top: 15px;
}

.wrapper .wp-block-image{
    margin-top: 15px;
}

.program-white-bullet-area{
    background: #ffffff;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 4%);
    border-radius: 10px;
    margin-top: 38px;
    border: 1px solid #e1e7eb;
    padding: 30px 25px;
}

.program-white-bullet-area .alert-main{
    padding: 0;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #5d6f80;
    font-style: italic;
}

.program-course-list{
    margin-bottom: 50px
}

.program-course-list td:not(:last-child){
    font-weight: 700;
}

.api-fee-structure-wrapper .table-wrap{
    border-radius: 10px 10px 0 0;
}

.api-fee-structure-wrapper .plan-btn-cta{
    border-radius: 0 0 10px 10px;
}

.program-heading > span > span{
    display: block;
}

.program-heading > span > span:first-child:not(:only-child){
    line-height: 44px;
    font-size: 34px;
    margin-top: 10px
}

.program-heading:empty{
    max-width: 300px;
}

.faculty-slider{
    position: relative;
    width: 100%;
}

.faculty-arrow-right{
    height: 44px;
    width: 44px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 23px;
    z-index: 1;
    opacity: 0.98;
    background: #3aafb9 url(../img/arrow-right-white.svg) center no-repeat;
    transition: 0.3s all;
}

.faculty-arrow-left{
    height: 44px;
    width: 44px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 23px;
    z-index: 1;
    opacity: 0.98;
    background: #3aafb9 url(../img/arrow-left-white.svg) center no-repeat;
    transition: 0.3s all;
}

.faculty-arrow-right:hover,
.faculty-arrow-left:hover{
    opacity: 0.7;
}

.program-course-list .cap{
    width: 120px
}

.program-course-list .credits{
    width: 200px
}

.program-course-list .arrow{
    width: 50px
}

.api-courses-wrapper{
    margin-top: 50px;
}

.api-courses-wrapper .courses-filter{
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(128,128,128,0.31);
}

.courses-wrapper{
    width: 100%;
}
.single-course{
    border-bottom: 1px solid rgba(128,128,128,0.31);
}

.single-course .single-course-title{
    padding: 15px 35px 15px 0;
    cursor: pointer;
    position: relative;
}

.single-course .single-course-title:after{
    content: "";
    position: absolute;
    top: 31px;
    right: 10px;
    width: 18px;
    height: 11px;
    background: url(../img/icon-down-arrow-black.svg) no-repeat;
    transition: 0.3s all;
    
}

.single-course .single-course-title.active:after{
    transform: rotate(-180deg)
}

.single-course .single-course-title h4{
    margin: 0;
    font-size: 25px;
    line-height: 1.5;
}

.single-course .single-course-title h5{
    margin: 0 ;
    font-size: 18px;
    line-height: 1.5;
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.single-course-description{
    padding: 5px 0 15px;
    display: none;
}

body .single-course-description h6{
    margin-bottom: 0;
    margin-top: 10px;
}

.courses-footer{
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    align-items: center;
    flex-wrap: wrap;
}

.courses-footer .prev,
.courses-footer .next{
    padding: 0;
    background: none !important;
    padding-left: 28px;
    min-height: 22px;
    position: relative;
    opacity: 0.4;
    transition: 0.3s;
    cursor: default;
}

.courses-footer .prev.active,
.courses-footer .next.active{
    opacity: 1;
    cursor: pointer;
}

.courses-footer .prev.active:hover,
.courses-footer .next.active:hover{
    text-decoration: underline;
}

.courses-footer .next{
    padding-right: 28px;
    padding-left: 0;
    margin-left: 15px;
}

.courses-footer .prev:after,
.courses-footer .next:after{
    height: 22px;
    width: 22px;
    background: url(../img/arrow-bullet.svg) center center no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(180deg);
}

.courses-footer .next:after{
    right: 0;
    left: auto;
    transform: rotate(0deg);
}

.single-course-description .btn-wrap{
    display: inline-block;
    margin-top: 20px;
    margin-right: 15px;
}

.single-course-description .btn-wrap a{
    padding: 15px 30px 13px;
}

.single-course-description .btn-wrap a:after{
    width: 160px;
}

@media screen and (min-width: 1100px) {
    footer .footer-top .footer-partner-nav-section .footer-nav{
        margin-right: 55px;
    }
    footer .footer-top .footer-partner-nav-section .footer-nav li{
        white-space: nowrap;
    }
}
/* max-1500 fils */
@media screen and (max-width: 1500px) {
    .main-menu > li.programs > ul > li > ul > li > ul > li > ul > li > ul {
        width: 300px;
    }
}
@media screen and (max-width: 1250px) {
    .main-menu > li:last-child > ul {
        left: -68px;
    }
}
/* max-1200 fils */
@media screen and (max-width: 1200px) {
    /*--side-bar-section--*/
    /*--why-ace-sec--*/

    .ace-text-box .box {
        width: 100%;
    }

    .ace-text-box .box:first-child {
        border-radius: 10px 10px 0 0;
    }

    .ace-text-box .box:last-child {
        border-radius: 0 0 10px 10px;
    }

    .ace-text-box .box:not(:last-child) {
        border-bottom: 1px solid #e1e7eb;
    }

    .circle .icons {
        width: 55%;
    }

    .blog-sidebar .related-posts{
        padding: 0;
    }

    .blog-single-wrapper .blog-sidebar {
        width: 370px;
        min-width: 370px;
    }

    .blog-single-wrapper .blog-content {
        width: calc(100% - 400px);
    }
}

@media screen and (max-width: 1140px) {
    .header-bottom .logo {
        width: 180px;
    }
    .search-menu {
        width: 700px;
    }
    .phone-text {
        margin-right: 10px;
    }
    .search-icon {
        margin-right: 0;
        margin-left: 25px;
    }
    .main-menu > li + li {
        margin-left: 12px;
    }
    .main-menu > li > a {
        padding-left: 3px;
        padding-right: 3px;
    }
    .main-menu > li > ul {
        width: 230px;
    }
    .main-menu > li.programs > ul > li > ul > li > ul,
    .main-menu > li.programs > ul > li > ul > li > ul > li > ul > li > ul {
        width: 100%;
    }

    .team-wrap .team-col{
        width: calc(50% - 30px);
    }
}

/* max-1100 fils */
@media screen and (max-width: 1100px) {

    .header_landing-page.wp_header .wpb-container {
        padding-top: 0;
        padding-bottom: 0;
        justify-content: center;
    }
    .wpb-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .fbl-wrapper {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .fbl-box {
        width: 100%;
        margin: 0 0 40px 0;
    }

    .fpl-section .fbl-content {
        padding: 40px;
    }

    /*--team-section--*/
    .adv-sec-6 .team-wrap .team-col {
        width: 50%;
    }

    /* .team-wrap .team-col .team-col-wrap {
        margin: 0 10px 20px;
    } */

    .apply-text span {
        font-size: 250px;
    }

    .apply-text {
        height: 200px;
    }

    .news-archive-wrapper .sm-news-wrapper{
        width: calc(33.33% - 20px);
        margin: 10px;
    }

}

/* min-1025px fils */
@media screen and (min-width: 1025px) {
    .menu-btn,
    .mobile-navigation,
    .mobile-bar {
        display: none !important;
    }
    .desktop-hide {
        display: none !important;
    }
}

/* max-1024 fils */
@media screen and (max-width: 1024px) {
    body h1,
    body .h1 {
        font-size: 45px;
        line-height: 52px;
    }

    body h2,
    body .h2,
    body h2.has-huge-font-size,
    body h3.has-huge-font-size,
    body h4.has-huge-font-size,
    body h5.has-huge-font-size,
    body h6.has-huge-font-size {
        font-size: 42px;
        line-height: 50px;
    }

    body h3,
    body .h3,
    body h2.has-large-font-size,
    body h3.has-large-font-size,
    body h4.has-large-font-size,
    body h5.has-large-font-size,
    body h6.has-large-font-size {
        font-size: 38px;
        line-height: 45px;
    }

    body h4,
    body .h4,
    body h2.has-medium-font-size,
    body h3.has-medium-font-size,
    body h4.has-medium-font-size,
    body h5.has-medium-font-size,
    body h6.has-medium-font-size {
        font-size: 28px;
        line-height: 36px;
    }

    body h5,
    body .h5,
    body h2.has-normal-font-size,
    body h3.has-normal-font-size,
    body h4.has-normal-font-size,
    body h5.has-normal-font-size,
    body h6.has-normal-font-size {
        font-size: 24px;
        line-height: 34px;
    }

    body h6,
    body .h6,
    body h2.has-small-font-size,
    body h3.has-small-font-size,
    body h4.has-small-font-size,
    body h5.has-small-font-size,
    body h6.has-small-font-size {
        font-size: 22px;
        line-height: 26px;
    }

    .lead-1,
    .lead-1 p {
        font-size: 20px;
        line-height: 33px;
    }

    .lead-2,
    .lead-2 p {
        font-size: 17px;
        line-height: 30px;
    }

    .wpb-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .pt-50 {
        padding-top: 40px;
    }

    .pb-50 {
        padding-bottom: 40px;
    }

    .pt-55 {
        padding-top: 45px;
    }

    .pb-55 {
        padding-bottom: 45px;
    }

    .pt-60 {
        padding-top: 50px;
    }

    .pb-60 {
        padding-bottom: 50px;
    }

    .pt-70 {
        padding-top: 50px;
    }

    .pb-70 {
        padding-bottom: 50px;
    }

    .pt-80 {
        padding-top: 50px;
    }

    .pb-80 {
        padding-bottom: 50px;
    }

    .pt-85 {
        padding-top: 60px;
    }

    .pb-85 {
        padding-bottom: 60px;
    }

    .pt-90 {
        padding-top: 60px;
    }

    .pb-90 {
        padding-bottom: 60px;
    }

    .pt-100 {
        padding-top: 70px;
    }

    .pb-100 {
        padding-bottom: 70px;
    }

    .cols-row-tb-1 .wp-block-column {
        min-width: calc(100% - 30px);
        flex-basis: auto !important;
        width: calc(100% - 30px);
        margin: 15px !important;
    }

    .cols-row-tb-2 .wp-block-column {
        min-width: calc(50% - 30px);
        flex-basis: auto !important;
        width: calc(50% - 30px);
        margin: 15px !important;
    }

    .cols-row-tb-3 .wp-block-column {
        min-width: calc(33.33% - 30px);
        flex-basis: auto !important;
        width: calc(33.33% - 30px);
        margin: 15px !important;
    }

    .cols-row-tb-4 .wp-block-column {
        min-width: calc(25% - 30px);
        flex-basis: auto !important;
        width: calc(25% - 30px);
        margin: 15px !important;
    }

    .cols-row-tb-5 .wp-block-column {
        min-width: calc(20% - 30px);
        flex-basis: auto !important;
        width: calc(20% - 30px);
        margin: 15px !important;
    }

    .cols-row-tb-6 .wp-block-column {
        min-width: calc(16.66% - 30px);
        flex-basis: auto !important;
        width: calc(16.66% - 30px);
        margin: 15px !important;
    }

    .cols-row-tb-1,
    .cols-row-tb-2,
    .cols-row-tb-3,
    .cols-row-tb-4,
    .cols-row-tb-5,
    .cols-row-tb-6 {
        flex-wrap: wrap;
        width: calc(100% + 30px);
        margin: -15px !important;
    }

    .cols-row-tb-default {
        flex-wrap: nowrap;
    }

    .top-bar {
        display: none;
    }
    .main-menu {
        display: none;
    }
    .header-bottom {
        padding: 11px 0;
        background: #f1f4f5;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    }
    .header-bottom .logo {
        width: 105px;
    }
    .menu-btn {
        background: url(../img/menu-icon.svg) no-repeat center center;
        width: 23px;
        height: 19px;
        cursor: pointer;
        margin-right: 2px;
    }
    .search-icon {
        margin-left: 0;
        width: 25px;
        height: 25px;
        background-size: 25px auto;
    }

    .main-wrapper {
        padding-top: 45px;
    }

    .mobile-bar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        font-size: 0;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
        display: flex;
    }
    .mobile-bar li {
        width: 50%;
    }
    .mobile-bar li.blue-button a {
        color: #ffffff;
        background-color: #144282;
    }
    .mobile-bar li a {
        border-radius: 0;
        font-size: 14px;
        line-height: 18px;
        width: 100%;
        padding: 14px 10px 13px;
        font-weight: 700;
        border: 0;
        display: inline-block;
        text-decoration: none;
        cursor: pointer;
        text-align: center;
        border-radius: 0;
        -webkit-appearance: none;
        transition: all 0.3s;
        box-sizing: border-box;
        font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana,
            sans-serif;
        text-transform: uppercase;
        width: 100%;
        background-color: #efac21;
        color: #05213b;
        text-decoration: none;
    }
    .mobile-bar li + li {
        border-left: 1px solid #fff;
    }
    .mobile-bar > .btn {
        border-radius: 0;
        width: 50%;
        padding: 14px 10px 13px;
    }
    .mobile-navigation {
        position: fixed;
        background: #fff;
        width: 100%;
        top: 59px;
        bottom: 0;
        overflow: auto;
    }
    .admin-bar .mobile-navigation {
        top: 91px;
    }
    .menu-right {
        position: static;
    }
    .search-menu {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        background: #f1f4f5;
    }
    .search-menu input {
        background: #f1f4f5;
        border: 0 !important;
        height: 59px;
    }
    .search-menu input[type="reset"] {
        right: 15px;
    }
    .btm-menu {
        padding: 28px 24px;
        margin-top: 14px;
        border-top: 1px solid #e1e7eb;
    }

    .rfi-form-page{
        flex-direction: column
    }
    
    .rfi-wrapper{
        width: 100%;
    }
    
    .rfi-sidebar{
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        display: flex;
    }
    
    .rfi-sidebar-img{
        width: 400px;
        height: auto;
    }

    .alumni-section .wp-block-columns {
        flex-direction: column;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .alumni-section .wp-block-column {
        width: 100%;
        max-width: 100% !important;
    }
    .alumni-section .wp-block-column:nth-child(n):not(:first-of-type) {
        margin-top: 17px;
        margin-left: 0;
    }
    .circle-wrap{
        width: 100%;
    }

    .btm-menu > li {
        font-size: 15px;
        line-height: 18px;
        color: #05213b;
    }
    .btm-menu > li > a {
        color: #05213b;
        text-decoration: none;
    }
    .btm-menu > li + li {
        margin-top: 27px;
    }
    .call-block {
        padding: 20px 15px;
        text-align: center;
        background: #f1f4f5;
        font-size: 14px;
        line-height: 16px;
        text-align: center;

        color: #05213b;
    }

    .blog-single-wrapper .wpb-container{
        flex-direction: column;
    }

    .blog-single-wrapper .blog-content{
        width: 100%;
        margin: 0;
    }

    .blog-single-wrapper .blog-sidebar{
        margin: 30px 0 0 0 !important;
        width: 100%;
        min-width: 100%;
    }

    .faculty-single-content-wrapper .content-wrapper{
        margin-top: 30px;
        width: 100%;
        margin-left: 0;
        padding: 40px
    }
    
    .mobile-menu {
        padding-top: 14px;
    }
    .btm-section {
        margin-top: auto;
    }
    .btm-section .mobile-bar {
        position: static;
    }
    .call-block > span {
        display: block;
    }
    .call-block > a[href*="tel:"] {
        color: #05213b;
        text-decoration: none;
    }
    .call-block > a[href*="tel:"] span {
        display: block;
        width: fit-content;
        margin-top: 4px;
        line-height: 18px;
        color: inherit;
        position: relative;
        text-decoration: none;
        margin: 4px auto 0;
        text-decoration: underline;
    }
    .call-block > a[href*="tel:"] span:hover {
        text-decoration: none;
    }
    .call-block > a[href*="tel:"] span::before {
        content: "";
        width: 14px;
        height: 18px;
        display: inline-block;
        vertical-align: middle;
        background: url(../img/icon-call.svg) no-repeat center center;
        margin-right: 8px;
        position: relative;
        top: -2px;
    }
    .mobile-hide {
        display: none !important;
    }

    .apply-text span {
        font-size: 170px;
    }

    .menu-inner {
        min-height: 100%;
        display: flex;
        flex-direction: column;
    }
    .menu-open .header-bottom {
        position: relative;
        z-index: 1;
    }
    .menu-open body {
        overflow: hidden;
        position: relative;
    }
    .menu-open .header-bottom .mobile-bar {
        display: none;
    }
    .menu-open .menu-btn {
        background: url(../img/x-icon.svg) no-repeat center center;
    }

    footer .footer-top .footer-partner-nav-section .footer-nav {
        max-width: 570px;
    }

    footer .footer-top .footer-partner-nav-section {
        padding-left: 60px;
    }

    /*--btn-cta-section--*/

    .btn-cta {
        min-height: 300px;
    }

    /*--icon-boxes--*/

    .join-alumi .alumini-cont {
        padding-right: 10px;
        width: 40%;
    }

    /*--side-bar-section--*/
    /*--cta-btn-section--*/

    .adv-sec-3 .plan-btn-cta .left-text {
        width: 100%;
        padding: 0;
        margin: 0 0 30px;
    }

    .numbr-img{
        margin-left: -30px
    }

    .numbr-img h6{
        font-size: 17px;
        line-height: 22px;
    }

    .alumni-section .wp-block-column {
        width: 100%;
        max-width: 100%;
    }

    .adv-sec-3 .plan-btn-cta .left-text p {
        text-align: center;
    }

    .adv-sec-3 .plan-btn-cta .right-btn {
        max-width: 100%;
    }

    .plan-btn-cta .plan-wrap {
        flex-direction: column;
    }

    /*--courses-section--*/
    /*--table--*/

    .myTable tr td {
        padding: 10px 18px !important;
    }

    .myTable td:last-child {
        text-align: center;
    }

    .myTable td,
    .tbl-hd th {
        padding: 15px 18px !important;
    }

    /*--ab-colledge-section--*/

    .AB-collg .ab-cont {
        width: calc(55% - 30px);
    }

    .AB-collg .img-col {
        width: calc(45% - 30px);
    }

    .AB-collg .ab-cont {
        width: calc(55% - 35px);
    }

    .AB-collg .img-col {
        width: calc(45% - 35);
    }

    .adv-sec-4 .det-list,
    .adv-sec-4 .det-list.short-list {
        padding: 30px 10px 25px;
    }

    ul.outer-list {
        margin: 0 15px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0 19px;
    }

    .main-advance-std {
        padding: 0;
    }

    .join-alumi .inner-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        row-gap: 30px;
    }

    .join-alumi .circle-wrap,
    .join-alumi .alumini-cont {
        width: 100%;
    }

    .join-alumi .alumini-cont {
        padding: 0 0 14px;
    }

    .apply-sec .numbers-con h6 {
        font-size: 20px;
    }

    /* Category landing Page ---Program Built Section */
    .Program-built .right-col {
        margin-left: 30px;
    }

    /* Program Detail Page--Stas Section */
    .stats-wrapper ul {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .stats-wrapper ul li {
        width: calc(33.33% - 40px);
    }

    .cta-right-col {
        padding: 0px 30px 20px 30px;
    }
    .cta-right-content {
        padding-top: 45px;
    }
    .cta-row-wrapper:before {
        top: -5%;
    }

    .cta-left-col {
        margin-top: 0px;
    }

    /* Tuition Page */
    .video-wrapper .cards-wrapper {
        flex-wrap: wrap;
    }
    .video-wrapper .card-body {
        width: calc(50% - 15px) !important;
    }
    /* Video Section */
    .video-frame {
        padding-bottom: 51%;
        position: relative;
    }

    /* Tabs */
    .partners-cards-wrapper .p-cards {
        width: 100%;
    }
    .logos-wrapper .logo {
        width: 50%;
        max-width: 50%;
    }

    .logos-wrapper .logo:nth-child(4n) {
        border-right: 1px solid rgba(158, 178, 189, 0.3);
    }

    .logos-wrapper .logo:nth-child(even) {
        border-right: none;
    }

    .V-tabs-container{
        padding: 40px 30px;
    }

    .V-tabs-container hr{
        margin-left: -30px;
        margin-right: -30px
    }

    /* Payment-option-Page */
    .cards-wrapper .card-body {
        padding: 30px 25px 30px;
    }
    .pocket-payment-wrapper .cards-wrapper .card-body {
        width: calc(50% - 30px);
    }

    /* Table */
    .table-wrapper .plan-btn-cta .plan-wrap {
        flex-direction: row;
    }

    .footer-form-top ul > li {
        padding: 0px 19px;
        position: relative;
    }
    .footer-form-top .lead-1 {
        font-size: 20px;
    }

    .image-with-cta .ab-cont{
        width: calc(50% - 15px);
    }

    .image-with-cta .img-col{
        width: calc(50% - 15px);
    }

    .fp-section .wpb-container {
        flex-direction: column;
        align-items: center;
    }

    .fp-section .fp-form {
        width: 100%;
    }

    .fp-section .fp-divider {
        margin-top: 8px;
    }

    .fp-section .ri-btn {
        margin-top: 8px;
    }

    .fp-section .ri-btn::after {
        width: 340px;
    }
    .sr-box {
        width: calc(33.33% - 30px);
    }

    .mog-section {
        padding: 80px 0;
        background-size: 426px;
    }

    .apply-text{
        min-width: 75px;
    }

    .mog-section .wpb-container {
        padding: 0 25px;
    }

    .mog-slider {
        padding: 0;
        width: 100%;
    }

    .mog-box .mog-info {
        padding: 30px 70px 30px 30px;
    }
    

    .mog-arrow-left {
        left: 40px;
        height: 50px;
        width: 50px;
        background-size: 15px;
    }

    .mog-arrow-right {
        right: 40px;
        height: 50px;
        width: 50px;
        background-size: 15px;
    }

    .alumni-section .wp-block-column:first-of-type {
        margin-right: 0;
    }

    .plan-btn-cta .left-text {
        padding: 0 0 20px;
        text-align: center;
        width: 100%;
        max-width: 550px;
    }

    .micro-cards-wrapper .card-body {
        width: calc(50% - 30px);
    }

    .smd-wrapper.tb-col-1 .smd-card{
        width: calc(100% - 30px)
    }
    
    .smd-wrapper.tb-col-2 .smd-card{
        width: calc(50% - 30px)
    }
    
    .smd-wrapper.tb-col-3 .smd-card{
        width: calc(33.33% - 30px)
    }
    
    .smd-wrapper.tb-col-4 .smd-card{
        width: calc(25% - 30px)
    }
    
    .smd-wrapper.tb-col-5 .smd-card{
        width: calc(20% - 30px)
    }
    
    .smd-wrapper.tb-col-6 .smd-card{
        width: calc(16.66% - 30px)
    }

    .program-white-bullet-area .det-col ul{
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-wrapper .stats-points {
        justify-content: center;
    }

}

@media screen and (max-width: 930px) {
    .det-col ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-form-top .form-points li {
        font-size: 18px;
        padding: 0 10px;
    }

    .ha-section {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }

    .ha-section .wp-block-column:not(:first-child) {
        margin-top: 30px;
    }

    .V-tabs-container .micro-cards-wrapper .card-body{
        width: calc(100% - 30px);
    }
}

/* max-767 fils */
@media screen and (max-width: 800px) {
    /*--team-section--*/
    .adv-sec-6 .team-wrap .team-col {
        width: 100%;
    }

    /* .team-wrap .team-col .team-col-wrap {
        margin: 0 15px 30px;
    } */

    .smd-card {
        width: calc(100% - 30px);
    }
}

/* min-768px files */
@media screen and (min-width: 768px) {
    .V-tabs-body {
        display: block !important;
    }

    .fpl-fwraper {
        display: block !important;
    }
}
@media screen and (max-width: 782px) {
    .admin-bar .mobile-navigation {
        top: 105px;
    }
    .admin-bar .wp_header {
        top: 46px;
    }
}
/* max-767 fils */
@media screen and (max-width: 767px) {
    body h1,
    body .h1 {
        font-size: 32px;
        line-height: 41px;
    }

    body h2,
    body .h2,
    body h2.has-huge-font-size,
    body h3.has-huge-font-size,
    body h4.has-huge-font-size,
    body h5.has-huge-font-size,
    body h6.has-huge-font-size {
        font-size: 32px;
        line-height: 41px;
    }

    body h3,
    body .h3,
    body h2.has-large-font-size,
    body h3.has-large-font-size,
    body h4.has-large-font-size,
    body h5.has-large-font-size,
    body h6.has-large-font-size {
        font-size: 32px;
        line-height: 41px;
    }

    body h4,
    body .h4,
    body h2.has-medium-font-size,
    body h3.has-medium-font-size,
    body h4.has-medium-font-size,
    body h5.has-medium-font-size,
    body h6.has-medium-font-size {
        font-size: 24px;
        line-height: 32px;
    }

    body h5,
    body .h5,
    body h2.has-normal-font-size,
    body h3.has-normal-font-size,
    body h4.has-normal-font-size,
    body h5.has-normal-font-size,
    body h6.has-normal-font-size {
        font-size: 24px;
        line-height: 31px;
    }

    body h6,
    body .h6,
    body h2.has-small-font-size,
    body h3.has-small-font-size,
    body h4.has-small-font-size,
    body h5.has-small-font-size,
    body h6.has-small-font-size {
        font-size: 20px;
        line-height: 23px;
    }

    .lead-1,
    .lead-1 p {
        font-size: 18px;
        line-height: 31px;
    }

    .lead-2,
    .lead-2 p {
        font-size: 16px;
        line-height: 28px;
    }

    body [type="button"],
    body [type="button"]:focus,
    body [type="submit"],
    body [type="submit"]:focus,
    body button:focus,
    body button,
    body .btn {
        font-size: 14px !important;
        line-height: 16px !important;
        padding: 15px 20px 14px;
    }

    body button:after,
    body .btn:after,
    body [type="submit"]:after {
        content: "";
        width: 340px;
        display: block;
        max-width: 100%;
    }

    .hero-wrap:after {
        opacity: 0.8;
    }

    html body .size-sm-button {
        padding: 16px 20px 15px;
    }

    body ul:not[class] > li,
    body ul li ol li ul > li,
    body ol li ul > li {
        margin-bottom: 14px;
        padding-left: 35px;
    }

    body ul:not[class] li:before {
        width: 26px;
        height: 26px;
        top: 0px;
    }

    body ul:not[class] li ul,
    body ol li ul:not[class],
    body ol li ol,
    body ul:not[class] li ol {
        margin-left: 4px;
    }

    .footer-form-wrapper .gform_confirmation_message {
        margin-top: 20px;
        margin-top: 10px;
    }

    .wpb-container,
    .sm-container,
    .lg-container,
    semi-md-container,
    .md-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    input[type="text"],
    input[type="email"],
    input[type="number"],
    input[type="tel"] {
        height: 45px;
    }

    select,
    body .gform_wrapper select {
        height: 45px;
    }

    textarea {
        height: 100px;
    }

    .pt-40 {
        padding-top: 30px;
    }

    .pb-40 {
        padding-bottom: 30px;
    }

    .pt-50 {
        padding-top: 30px;
    }

    .pb-50 {
        padding-bottom: 30px;
    }

    .pt-55 {
        padding-top: 35px;
    }

    .pb-55 {
        padding-bottom: 35px;
    }

    .pt-60 {
        padding-top: 40px;
    }

    .pb-60 {
        padding-bottom: 40px;
    }

    .pt-70 {
        padding-top: 40px;
    }

    .pb-70 {
        padding-bottom: 40px;
    }

    .pt-80 {
        padding-top: 40px;
    }

    .pb-80 {
        padding-bottom: 40px;
    }

    .pt-85 {
        padding-top: 40px;
    }

    .pb-85 {
        padding-bottom: 40px;
    }

    .pt-85 {
        padding-top: 40px;
    }

    .pb-85 {
        padding-bottom: 40px;
    }

    .pt-90 {
        padding-top: 40px;
    }

    .pb-90 {
        padding-bottom: 40px;
    }

    .pt-100 {
        padding-top: 40px;
    }

    .pb-100 {
        padding-bottom: 40px;
    }

    body .p-space-24 p {
        margin-top: 16px;
    }

    body .p-space-32 p {
        margin-top: 20px;
    }

    .cols-row-mb-1 .wp-block-column {
        min-width: calc(100% - 30px);
        flex-basis: auto !important;
        width: calc(100% - 30px);
        margin: 15px !important;
    }

    .cols-row-mb-2 .wp-block-column {
        min-width: calc(50% - 30px);
        flex-basis: auto !important;
        width: calc(50% - 30px);
        margin: 15px !important;
    }

    .cols-row-mb-3 .wp-block-column {
        min-width: calc(33.33% - 30px);
        flex-basis: auto !important;
        width: calc(33.33% - 30px);
        margin: 15px !important;
    }

    .cols-row-mb-4 .wp-block-column {
        min-width: calc(25% - 30px);
        flex-basis: auto !important;
        width: calc(25% - 30px);
        margin: 15px !important;
    }

    .cols-row-mb-5 .wp-block-column {
        min-width: calc(20% - 30px);
        flex-basis: auto !important;
        width: calc(20% - 30px);
        margin: 15px !important;
    }

    .cols-row-mb-6 .wp-block-column {
        min-width: calc(16.66% - 30px);
        flex-basis: auto !important;
        width: calc(16.66% - 30px);
        margin: 15px !important;
    }

    .cols-row-mb-1,
    .cols-row-mb-2,
    .cols-row-mb-3,
    .cols-row-mb-4,
    .cols-row-mb-5,
    .cols-row-mb-6 {
        flex-wrap: wrap;
        width: calc(100% + 30px);
        margin: -15px !important;
    }
    footer {
        padding-top: 30px;
    }
    .desktop-hide {
        display: block !important;
    }

    footer .footer-top .footer-logo {
        max-width: 100px;
        margin-left: auto;
        margin-right: auto;
    }

    .V-tabs-container .micro-cards-wrapper .card-body{
        width: calc(50% - 30px);
    }

    footer .footer-top .ace-address-wrapper {
        margin-top: 16px;
    }

    footer .footer-top .ace-address-wrapper .ace-address-section li {
        margin-top: 12px;
    }

    footer .footer-top .ace-address-wrapper .ace-address-section li a {
        padding: 0;
        margin: 0;
    }

    footer .footer-top .footer-partner-nav-section p {
        padding: 0;
    }

    footer .footer-top .ace-address-wrapper .ace-address-section li a::before {
        content: none;
    }

    footer .footer-top .wpb-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .footer-top .footer-logo-address-section {
        width: 100%;
    }

    footer .footer-top .footer-partner-nav-section {
        width: 100%;
        padding: 0;
        text-align: center;
        margin-top: 31px;
    }

    footer .footer-top .footer-partner-nav-section .ace-partners-logo {
        margin-top: 15px;
    }

    .gform_footer {
        padding-top: 8px !important;
    }

    footer .footer-top .footer-partner-nav-section .footer-nav {
        column-count: 1;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 27px;
    }

    footer .footer-top .footer-partner-nav-section .footer-nav > li {
        padding: 8px 12px;
        position: relative;
        text-align: center;
    }

    footer
        .footer-top
        .footer-partner-nav-section
        .footer-nav
        > li:not(:last-child):after {
        content: "";
        height: 40%;
        width: 1px;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background-color: #23384e;
        position: absolute;
    }

    footer .footer-bottom .wpb-container {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    footer .footer-bottom .footer-social-list {
        justify-content: center;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-wrap .hero-col:after {
        display: none !important;
    }

    .hero-slider {
        width: 100%;
    }

    footer .footer-bottom .footer-social-list li {
        margin: 10px 20px;
    }

    footer .footer-bottom .footer-copyright-section,
    footer .footer-bottom .footer-social-setion {
        width: 100%;
    }

    footer .footer-top {
        padding-bottom: 22px;
    }

    footer .footer-bottom {
        padding-top: 17px;
    }

    footer .footer-bottom .footer-copyright-section p {
        margin-top: 22px;
        max-width: 251px;
        margin-left: auto;
        margin-right: auto;
    }

    footer .footer-bottom .footer-copyright-section .privacy-links {
        margin: 0;
    }

    footer .footer-bottom .footer-copyright-section .privacy-links li {
        padding: 12px 13px;
        margin: 0 !important;
    }

    /*--hero-section--*/

    .hero-wrap {
        min-height: 200px;
        padding: 0 15px;
    }
    /* .hero-wrap.hero-prog {
		background: url("../img/hero-2.png") no-repeat center center;
		background-size: cover;
	} */

    .hero-wrap .bg-overlay {
        width: 100%;
    }

    .hero-wrap .bg-overlay:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #05213b;
        opacity: 0.8;
        display: block;
    }

    .image-with-cta.reverse{
		flex-direction: column-reverse !important;
	}

	.image-with-cta .ab-cont, .image-with-cta .img-col {
		width:100%;
	}

	.image-with-cta.reverse .ab-cont , .image-with-cta .ab-cont {
		padding: 30px 0 0 0;
	}

    .btn-cta {
        padding: 40px 0;
    }

    .hero-wrap .hero-col {
        max-width: 100%;
        width: 100%;
        padding: 30px 0 30px;
    }

    .hero-wrap .hero-col {
        background: transparent !important;
    }

    .hero-wrap .affort-cont .divider {
        margin-top: 16px;
    }

    .hero-wrap .affort-cont p {
        margin-top: 16px;
        font-size: 18px;
        line-height: 31px;
    }

    .btn-cover a::after {
        width: 180px;
    }
    .text-cta {
        padding: 30px 0;
    }

    .license-cta {
        padding: 40px 0;
    }

    .hero-wrap .btn-col {
        margin-top: 16px;
    }

    .faculty-single-content-wrapper .content-wrapper{
        padding: 30px 20px;
    }
    
    .faculty-single-content-wrapper .img-text{
        width: 100%;
        max-width: 400px;
        min-width: auto;
        min-height: auto;
    }

    .btn-col .btn-wrap {
        margin: 0 8px 16px;
        display: block;
    }
    /*--icon-bxes--*/

    .join-alumi .alumini-cont {
        width: 100%;
        padding: 0;
    }

    .circle-wrap {
        width: 100%;
        justify-content: space-between;
    }

    .join-alumi {
        padding: 40px 0 28px;
    }

    .rfi-wrapper{
        padding: 40px 0px 0 0;
    }

    .rfi-sidebar-content{
        padding: 30px 15px;
    }

    .rfi-sidebar{
        flex-direction: column;
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
        min-width: 100%;
    }
    
    .rfi-sidebar-img{
        width: 100%;
    }

    .join-alumi .divider {
        margin-top: 16px;
    }

    .join-alumi .alumini-cont p {
        margin-top: 16px;
    }

    .join-alumi .btn-col {
        margin-top: 23px;
    }

    .join-alumi .inner-container {
        row-gap: 6px;
    }

    .alumni-section.padding-medium {
        padding: 40px 0 32px 0;
    }

    .footer-form-wrapper .field_description_below.formpp {
        margin-top: 0 !important;
    }

    .form-top-content p {
        line-height: 28px;
        margin-top: 9px;
        font-size: 16px;
    }

    .divider {
        margin-top: 16px;
    }

    .alumni-section p {
        margin-top: 16px;
    }

    .alumni-section .btn-col {
        margin-top: 24px !important;
    }

    .accord-sec {
        padding: 50px 0 60px;
    }

    .accordion-item .ai-head {
        padding: 18px;
    }

    .accordion-item .ai-head::after {
        right: 20px;
        top: 31px;
    }

    .ai-head h6 {
        line-height: 23px;
    }
    
    /* Author Profile Section */
    body.author .affort-cont .author-hero{
        flex-direction: column;
    }
    body.author .affort-cont .author-hero .info{
        width: 100%;  
        padding-left: 0px;
    }
    body.author .affort-cont .author-hero .info > h1{
        text-align: center;
    }
    body.author .affort-cont .author-hero .info .designation{
        text-align: center;
    }
    body.author .affort-cont .author-hero .profile{
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }
    /*-------how-to-apply-section--*/
    .apply-sec .apply-para-2 p {
        max-width: 100%;
    }

    .numbr-img {
        width: 100%;
    }
    .app-img {
        position: relative;
        width: 100%;
        padding: 0;
    }

    .app-img .inn-img {
        position: static;
        width: 100%;
        top: 0;
        left: 0;
        transform: translate(0, 0);
    }

    .app-img .inn-img img {
        width: auto;
        height: auto;
    }

    .apply-sec .numbers-con .numbr-img:not(:last-child) {
        border-bottom: 2px solid #e1e7eb;
        border-right: 0;
    }

    .apply-sec .apply-para-2 p {
        margin-top: 25px;
    }

    /*--side-bar-section--*/
    /*--cta-btn-section--*/

    .adv-sec-3 .plan-btn-cta .left-text {
        margin: 0 0 20px;
    }

    .plan-btn-cta {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .plan-btn-cta .left-text p {
        text-align: center;
    }

    .plan-btn-cta .right-btn {
        max-width: 100%;
    }

    /*--side-bar-links--*/
    ul.side-links .side-button {
        display: block;
    }

    .numbr-img.numbr-img-divider:before {
        content: "";
        position: absolute;
        top: auto;
        width: 0;
        height: 0;
        left: 50%;
        bottom: -22px;
        transform: translateX(-50%);
        border-bottom: solid 11px rgba(80, 52, 38, 0);
        border-left: solid 11px rgba(225, 231, 235, 0);
        border-right: solid 11px rgba(86, 17, 17, 0);
        border-top: solid 11px #e1e7eb;
    }

    .numbr-img.numbr-img-divider:after {
        content: "";
        position: absolute;
        top: auto;
        bottom: -19px;
        left: 50%;
        width: 0px;
        height: 0;
        transform: translateX(-50%);
        border-bottom: solid 11px rgba(80, 52, 38, 0);
        border-left: solid 11px rgba(225, 231, 235, 0);
        border-right: solid 11px rgba(86, 17, 17, 0);
        border-top: solid 11px #f1f4f5;
    }

    .numbr-img.numbr-img-divider {
        border-right: none;
        border-bottom: 2px solid #e1e7eb;
        padding: 30px;
    }

    ul.side-links li {
        display: none;
    }

    .main-advance-std {
        flex-direction: column;
        padding: 0;
    }

    .main-advance-std .adv-sidenav {
        max-width: 100%;
        height: 100%;
        position: static;
    }

    .main-advance-std .adv-content {
        width: 100%;
        margin-top: 0;
    }

    .adv-content .advance {
        padding: 40px 0;
    }

    .ace-text-box,
    .tution-tabel,
    .det-list,
    .table-wrap {
        margin: 35px 0 0;
    }

    .advance .main-para {
        margin-top: 16px;
    }

    /*courses-section--*/

    /*--team-section--*/
    .adv-sec-6 .team-wrap .team-col {
        width: 50%;
    }

    /* .team-wrap .team-col .team-col-wrap {
        margin: 0 15px 30px;
    } */

    .adv-sec-7 {
        margin: 35px 0 0;
    }

    .ai-head h1,
    .ai-head h2,
    .ai-head h3,
    .ai-head h4,
    .ai-head h5,
    .ai-head h6 {
        line-height: 23px;
        font-size: 20px;
    }

    .logos-wrapper .logo{
        height: 125px;
    }

    .adv-sec-4 ul.outer-list {
        margin: 0 0 30px;
    }

    .adv-sec-7 p.link-text {
        margin: 35px 0 0;
    }

    /*-- A B Corp College-section -*/
    .AB-collg .ab-cont,
    .AB-collg .img-col {
        width: 100%;
    }

    .AB-collg .ab-cont {
        padding: 30px 0 0;
    }

    .AB-collg .wpb-container {
        flex-direction: column-reverse;
    }

    .ace-team .wpb-container {
        padding: 0;
    }

    .ace-team {
        padding: 40px 40px 48px 15px;
    }

    .AB-collg .ab-cont .text-col p:not(:first-child) {
        margin: 16px 0 0;
    }

    .ace-team .ab-cont .inner-col {
        padding: 0;
    }
    .main-advance-std .adv-content {
        padding: 0 15px;
    }

    /* .adv-sec-4 .det-list,
    .adv-sec-4 .det-list.short-list {
        padding: 30px 20px 25px 20px;
    } */

    .alert-main {
        padding: 0 10px;
    }

    .ace-text-box .box {
        padding: 25px 25px;
    }

    /*--social-icons--*/
    .social-icon-wrap .soc-wrap {
        width: 40px;
        height: 40px;
    }

    /*--funds-cta-section-*/
    .funds-sec {
        padding: 40px 0 40px;
    }

    .funds-sec p.lead-2:not(:first-child) {
        margin: 24px 0 0;
    }

    .license-cta h6 {
        font-size: 17px;
        line-height: 20px;
    }

    /* Category landing Page ---Program Built Section */
    .Program-built .wpb-container {
        flex-direction: column;
        align-items: center;
    }

    .Program-mind-wrapper {
        padding: 40px 0px;
    }

    .Program-built .right-col {
        margin-left: 0px;
    }

    .cta-row-wrapper {
        padding-bottom: 40px;
    }

    /* Program Detail Page--Stas Section */
    .Program-built .right-col {
        margin-top: 30px;
    }

    .Program-built .right-col .stats-4 {
        max-width: 310px;
        width: 100%;
    }

    .stats-wrapper ul li {
        width: calc(50% - 40px);
    }

    .stats-wrapper ul li:last-child {
        flex-grow: 0;
    }

    .stats-wrapper {
        padding: 40px 0px 40px 0px;
    }

    /* Homepage---Cta-row-section */
    .cta-row-wrapper {
        padding-bottom: 40px;
    }
    .enroll-wrapper {
        flex-direction: column;
        width: 100%;
    }
    .enroll-wrapper .list-enrol a:last-child {
        margin-bottom: 0px;
    }

    .enroll-right-col {
        width: 100%;
        max-width: 100%;
        padding-top: 25px;
    }
    .enroll-left-content {
        margin-left: 0;
        margin-bottom: 32px;
    }

    .cta-rows .cta-row-body {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .cta-left-col {
        margin-top: 30px;
        padding: 16px 0px 16px 16px;
        margin-bottom: 19px;
        width: 73%;
    }
    .cta-row-wrapper .cta-row-body:nth-child(even) > .cta-right-col {
        border-right: none;
    }

    .cta-right-content {
        padding: 0;
        max-width: 100%;
    }
    .cta-right-content .lead-2 {
        margin-top: 17px;
        line-height: 28px;
    }

    .cta-right-col {
        border-bottom: none;
        position: relative;
        border-left: 0;
        padding: 0px 0px 31px;
    }

    .cta-right-col:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: -15px;
        height: 2px;
        width: calc(100% + 30px);
        background: #f1f4f5;
    }

    .cta-right-col a {
        margin-top: 22px;
        font-size: 16px !important;
        line-height: 28px !important;
        padding: 3px 0 4px 42px !important;
    }

    .cta-row-wrapper .cta-row-body:not(:first-child) > .cta-left-col {
        margin-top: 30px;
    }

    .enroll-left-col {
        text-align: start;
        width: 100%;
        padding: 41px 15px 15px 15px;
    }

    .list-enrol {
        flex-direction: column;
        align-items: flex-start;
    }

    .list-enroll-wrapper {
        padding: 16px 15px 16px 15px;
        border: none;
    }

    .enroll-right-content {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    .cta-btn-wrapper {
        margin-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .cta-btn-wrapper button {
        margin-left: 0px;
        margin-right: 0px;
    }

    .cards-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
    .cards-wrapper .card-body {
        width: 100%;
        max-width: 500px;
    }
    .video-wrapper .yellow-bg {
        white-space: nowrap;
    }

    /* Tuition Page  */
    .video-wrapper .card-body {
        width: 100% !important;
    }

    /* Form Footer */
    /* .form-wrapper form {
    display: block;
} */
    .footer-form-wrapper {
        padding-top: 40px;
        padding-bottom: 8px;
    }
    .form-wrapper form select {
        padding: 8px 34px 6px 14px;
    }
    .form-wrapper form input[type="text"],
    .form-wrapper form input[type="number"],
    .form-wrapper form input[type="tel"],
    .form-wrapper form input[type="email"] {
        padding: 10px 15px 7px 15px;
    }
    .footer-form-wrapper .footer-form-top .lead-1 {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 17px;
        flex-direction: column;
    }
    .footer-form-top li:not(:first-child) {
        margin-top: 18px;
    }
    .footer-form-top li:not(:first-child):before {
        width: 28px;
        height: 3px;
        left: 50%;
        transform: translateX(-50%);
        top: -9px;
    }
    .footer-form-top .lead-1 {
        font-size: 18px;
    }

    .form-wrapper {
        margin-top: 33px;
    }
    .form-top-content .lead-2 {
        margin-top: 6px;
    }
    .footer-form-top h2 {
        padding: 0px 15px;
    }
    .footer-form-top > ul {
        margin-top: 12px;
    }
    .footer-form-top ul > li:not(:first-child) {
        padding: 0px 34px;
        position: relative;
    }
    .form-bottom-content p {
        margin-bottom: 18px;
    }

    /* tabs-section */
    .tabs-toggle {
        display: flex !important;
        gap: 15px;
        margin-right: auto;
        padding: 10px 15px;
        display: block;
        background-color: #36A1AB;
        align-items: center;
        cursor: pointer;
        position: relative;
    }

    .tabs-toggle:after{
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        right: 30px;
        height: 20px;
        width: 20px;
        background: url('../img/arrow-right-white.svg') center no-repeat;
        background-size: contain;
        z-index: 1;
        transition: 0.3s all;
    }
    
    .tabs-toggle.axpand:after{
        transform: translateY(-50%) rotate(-90deg);
    }

    .tabs-toggle p {
        color: #ffffff;
    }

    .lead-2.p-bottom {
        margin-top: 20px;
    }

    .V-tabs-container,
    .V-tabs {
        width: 100%;
    }
    .V-tabs{
        position: sticky;
        top: 104px;
        left: 0;
        z-index: 11;
    }
    .V-tabs{
        width: auto;
    }
    .V-tabs-wrapper {
        flex-direction: column;
    }
    .V-tabs-container {
        padding: 40px 15px;
    }
    .ace-partnership {
        padding: 40px 0px;
    }
    .V-tabs-body {
        display: none;
    }
    .V-tabs-body.open {
        height: auto;
    }
    .filter-tabs {
        font-family: "Public Sans";
        font-size: 14px;
        line-height: 16px;
        font-weight: 700;
        letter-spacing: 0px;
        text-align: center;
        flex-basis: 50%;
        color: #ffff;
    }

    /* Payment option */
    .pocket-payment-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .pocket-payment-wrapper .cards-wrapper .card-body {
        width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
    }

    /*  */
    .table-wrapper .plan-btn-cta .left-text {
        width: 100%;
        padding: 0px;
        margin-bottom: 15px;
    }
    .video-wrapper.federal-funding .plan-btn-cta .left-text {
        width: 100%;
        padding: 0px;
        margin-bottom: 15px;
    }
    .table-wrapper table td {
        padding: 17px 0px 13px 15px;
    }
    .table-wrapper .plan-btn-cta .plan-wrap {
        flex-direction: column !important;
    }

    /* -----------------------------------
      Home page slider Quility you expect
    ----------------------------------- */

    .fp-section .fp-form select:first-child {
        max-width: 100%;
    }

    .fp-section {
        padding: 30px 0;
    }

    .fp-section .wpb-container {
        max-width: 500px;
    }

    .fp-section .ri-btn {
        width: 100%;
    }

    .tcs-section {
        color: #05213b !important;
        margin-left: -15px;
        margin-right: -15px;
    }

    .tcs-section .wpb-container {
        padding-left: 0;
        padding-right: 0;
    }

    .tcs-section .tcs-slider {
        padding: 15px;
        margin: 0 !important;
        width: 100%;
        margin-top: -15px !important;
        margin-bottom: -15px !important;
    }

    .enroll-left-content h2::after {
        bottom: -20px;
    }

    .tcs-box {
        padding: 32px 30px 29px 30px;
    }

    .tcs-box a {
        margin-top: 23px;
    }

    .fp-section .fp-form {
        flex-direction: column;
        row-gap: 16px;
    }

    .lcd-progress-wrapper {
        margin-top: 28px;
        max-width: 592px;
    }

    .lcd-progress-wrapper .lcdp-itme .prog-outer {
        max-width: 350px;
        width: 350px;
    }

    .po-section {
        padding: 30px 0 30px 0;
    }

    .po-section .wpb-container > h2 {
        padding-bottom: 10px;
    }

    .po-section .wpb-container > p {
        margin-top: 10px;
    }

    .po-section .swiper {
        margin-top: 20px;
    }

    .fpl-section {
        flex-direction: column;
    }

    .fpl-section .fpl-aside {
        width: 100%;
        position: sticky;
        top: 0;
        z-index: 15;
    }

    .fpl-section .fbl-content {
        width: 100%;
    }

    .fpl-filter {
        padding-top: 0;
        background-color: #ffffff;
    }

    .fpl-filter .fpl-filter-top button[type="reset"] {
        color: #9ad0d5;
        display: none;
    }

    .fpl-filter.active .fpl-filter-top button[type="reset"] {
        display: block;
    }

    .fpl-filter .fpl-fbox {
        padding: 20px;
    }

    .fpl-filter .fpl-fwraper {
        display: none;
        position: absolute;
        background-color: #ffffff;
        width: 100%;
        left: 0;
        top: 46px;
        max-height: calc(100vh - 150px);
        overflow: auto;
    }

    .fpl-submit-btn {
        display: block !important;
    }

    .fpl-filter .fpl-filter-top {
        padding: 8px 15px 7px 17px;
        background-color: #36a1ab;
    }

    .fpl-filter .fpl-filter-top > h6 {
        display: none;
    }

    .fpl-section .filter-toggle-btn {
        display: block !important;
        color: #fff !important;
        margin-left: auto;
        margin-right: auto;
    }

    .fpl-filter.active .filter-close-btn {
        display: block !important;
        color: #fff !important;
    }

    .fpl-aside .more-btns {
        padding: 32px 20px;
        display: none;
    }

    .fpl-aside .more-btns a {
        width: 100%;
        max-width: 390px;
    }

    .fbl-content > h3 {
        font-size: 32px;
        line-height: 42px;
    }

    .fbl-content > p {
        margin-top: 17px;
    }

    .fbl-box .fbl-box-content > p {
        margin-top: 16px;
    }

    .fbl-box .fbl-box-content {
        padding: 24px 21px 24px 24px;
    }

    .fbl-wrapper {
        margin-top: 30px;
    }

    .fbl-box .fbl-box-content > a {
        margin-top: 15px;
    }

    .fbl-box {
        margin: 0 0 17px 0;
    }

    .alumni-section .wp-block-column > p {
        font-size: 18px;
        line-height: 31px;
    }

    /* .ra-slider{
        padding: 0;
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    } */

    .accordion .table-wrap .dt-thd {
        flex-wrap: wrap;
    }

    .ra-slider-wrapper {
        padding: 0;
    }

    .ra-slider-wrapper .ra-arrow {
        display: none !important;
    }

    .ra-slider-wrapper .ra-pagination {
        display: flex !important;
        overflow: hidden;
        max-width: 100%;
        justify-content: center;
    }

    .sr-box {
        width: calc(50% - 30px);
    }

    .mog-section {
        padding: 40px 0 30px 0;
        background-image: none;
    }

    .mog-section .wpb-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .mog-slider {
        overflow: visible;
    }

    .numbr-img{
        margin-left: 0
    }

    .apply-text span{
        height: 170px;
    }

    .blog-single-wrapper{
        padding: 40px 0;
    }

    .mog-box {
        flex-direction: column;
        align-items: flex-start;
        background-color: #fff;
        border: 1px solid #e1e7eb;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.04);
        border-radius: 10px;
    }

    .mog-thumb {
        width: 100% !important;
    }

    .mog-box .mog-info {
        width: 100%;
        padding: 18px 24px 24px 23px;
    }

    .mog-box .mog-info h4 {
        margin-bottom: auto;
    }

    .mog-box .mog-info > a {
        margin-top: 13px;
        line-height: 28px;
        font-size: 16px;
    }

    .mog-arrow-left {
        display: none;
    }

    .mog-arrow-right {
        display: none;
    }
    
    .rfi-sidebar{
        margin-top: 30px;
    }

    .news-archive-wrapper .sm-news-wrapper{
        width: calc(50% - 20px);
    }

    .mog-section .wpb-container {
        padding: 0 !important;
    }

    .mog-section.mog-single .wpb-container {
        padding: 0 15px !important;
    }

    .mog-slider {
        padding: 0 15px !important;
    }

    .mog-box .mog-info p {
        font-size: 16px;
        line-height: 28px;
    }

    .mog-section:after {
        width: 20%;
    }

    .footer-form-wrapper input:not([type="submit"]) {
        padding: 7px 15px !important;
    }

    .mog-section::before {
        width: 10%;
    }

    .mog-pagination:not(.swiper-pagination-lock) {
        display: flex;
        margin-top: 19px;
    }

    .logo-desc-wrapper{
        flex-direction: column;
    }

    .logo-desc-wrapper .logo-wrap{
        margin-bottom: 20px;
        margin-right: 0;
    }

    .lcd-progress-wrapper .lcdp-item .prog-outer {
        margin-top: 10px;
    }

    .lcdp-item .price {
        top: auto;
        left: auto;
        bottom: 38px;
        right: 0;
    }

    .fpl-filter .fpl-filter-top h6 {
        font-size: 14px;
    }

    .fpl-section .filter-toggle-btn h6 img {
        margin-left: 4px;
    }

    .oveflowHidden {
        overflow: hidden !important;
    }

    .adv-content .advance:nth-of-type(4) {
        padding: 40px 0;
    }

    .det-col ul {
        grid-template-columns: repeat(1, 1fr);
    }

    /* .padding-inline-zero .wpb-container{
        padding:  0 !important;
    } */

    .circle:after {
        top: 3px;
        left: 3px;
        width: calc(100% - 6px);
        height: calc(100% - 6px);
    }

    .circle .icons img {
        max-width: 70px;
        max-height: 70px;
        width: auto;
        height: auto;
    }

    footer .footer-bottom .footer-social-list {
        padding: 2px 0 0 0;
    }

    .padding-medium {
        padding: 40px 0;
    }

    footer .ace-partners-logo {
        justify-content: center;
        width: calc(100% + 10px);
        margin-left: -5px;
        margin-right: -5px;
    }

    footer .ace-partners-logo > li {
        margin: 0 7px;
    }

    footer .ace-partners-logo > li:last-child {
        margin-right: 7px;
    }

    .wp-block-embed iframe {
        height: 340px;
    }

    .cc-logo {
        margin-right: auto;
        margin-top: 30px;
    }

    .hero-wrap .hero-col:before {
        content: none;
    }

    .micro-cards-wrapper .card-body {
        width: calc(100% - 30px);
        margin: 8px 15px;
    }

    .lead-1,
    .lead-1 p,
    p.has-large-font-size {
        font-size: 18px;
        line-height: 32px;
    }

    .lead-2,
    .lead-2 p,
    .has-medium-font-size {
        font-size: 16px;
        line-height: 28px;
    }

    .fp-table-responsive {
        overflow: auto;
    }

    .image-with-cta{
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .image-with-cta .ab-cont{
        width: 100%;
    }

    .image-with-cta .img-col{
        width: 100%;
        max-width: 500px;
    }
    
    .mog-box .social-icon-wrap .soc-wrap{
        height: auto;
        width: auto;
    }

    .mog-box .social-icon-wrap .soc-wrap img{
        height: 23px;
    }

    .reverse-on-mobile .wp-block-columns{
        flex-direction: column-reverse;
    }

    .timeline-sec::after {
        content: none;
    }
    
    .tl-content .tl-text {
        width: 100%;
        margin-top: 10px;
    }
    
    .timeline-sec {
        margin-top: 0;
    }
    
    .tl-content .tl-image {
        width: 100%;
    }
    
    .tl-content:nth-child(2n + 1) {
        flex-direction: column;
    }
    
    .tl-content:nth-child(2n) {
        flex-direction: column;
    }
    
    .tl-content h5 {
        position: relative;
        text-align: center;
        margin-top: 45px !important;
        z-index: 5;
        top: auto;
        left: auto;
        transform: none;
    }
    
    .tl-content:nth-child(2n + 1) h5::after,
    .tl-content:nth-child(2n) h5::after {
        content: "";
        left: 100%;
        width: 4px;
        height: 70px;
        background-color: inherit;
        position: absolute;
        top: 100%;
        transform: translateY(-50%);
        left: 50%;
        z-index: -1;
    }

    .smd-wrapper.mb-col-1 .smd-card{
        width: calc(100% - 30px)
    }
    
    .smd-wrapper.mb-col-2 .smd-card{
        width: calc(50% - 30px)
    }
    
    .smd-wrapper.mb-col-3 .smd-card{
        width: calc(33.33% - 30px)
    }
    
    .smd-wrapper.mb-col-4 .smd-card{
        width: calc(25% - 30px)
    }
    
    .smd-wrapper.mb-col-5 .smd-card{
        width: calc(20% - 30px)
    }
    
    .smd-wrapper.mb-col-6 .smd-card{
        width: calc(16.66% - 30px)
    }

    .mog-box.image-width-small .mog-thumb{
        width: 100%
    }
    
    .mog-box.image-width-small .mog-info{
        width: 100%
    }

    .image-slideshow-arrow-right{
        height: 40px;
        width: 40px;
        background-size: 10px;
        right: 20px;
    }

    .image-slideshow-arrow-left{
        height: 40px;
        width: 40px;
        background-size: 10px;
        left: 20px;
    }

    .program-white-bullet-area .det-col ul{
        grid-template-columns: repeat(2, 1fr);
    }

    .courses-switch-but{
        width: 100%;
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .single-course .single-course-title{
        padding: 10px 29px 10px 0px;
    }

    .single-course .single-course-title:after{
        right: 7px;
        top: 24px;
        background-size: contain;
        height: 6px;
        width: 9px;
    }

    .courses-footer{
        padding: 15px 0;
    }

    .single-course .single-course-title h4{
        font-size: 20px;
        line-height: 1.3;
    }

    .single-course .single-course-title h5{
        font-size: 16px;
        line-height: 1.5;
    }

    .single-course-description{
        padding: 5px 0px 15px;
    }

    .V-tabs-container hr{
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media screen and (max-width: 600px) {
    html #wpadminbar {
        position: fixed;
    }    
}
/* max-630 fils */
@media screen and (max-width: 630px) {
    .lcd-section {
        padding: 30px 0;
    }

    .lcd-section .wpb-container > p.mmt {
        margin-top: 10px;
    }

    .lcd-progress-wrapper .lcdp-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-top: 10px !important;
    }

    .lcdp-item-logo {
        justify-content: flex-start;
    }

    .lcdp-item-heading {
        text-align: left;
        width: 100%;
    }

    .sg-content-wrapper {
        flex-direction: column;
    }

    .sg-content-wrapper .sg-content {
        width: 100%;
        padding: 20px;
    }

    .sg-box .sg-title {
        padding: 20px;
    }

    .sg-box .sg-footer {
        padding: 20px;
    }

    .sg-box .disclaimer {
        padding: 20px;
    }

    .sg-content-wrapper .sg-content:not(:last-child) {
        border-bottom: 1px solid #e1e7eb;
        border-right: none;
    }

    .fpl-section .fbl-content {
        padding: 27px 15px 14px;
    }

    .fpl-section .fbl-content:not(:first-child) {
        padding-top: 26px;
    }

    .fpl-section .fbl-content:last-child {
        padding-bottom: 22px;
    }

    .form-wrapper form {
        display: block;
    }

    .cta-row-wrapper:before {
        width: 300px;
        background-position: top left;
        background-size: contain;
        top: 0;
    }

    .table-wrap .dt-thd > div:not(:last-child) {
        margin-right: 27px;
    }

    .accordion-item .ai-content {
        padding: 0 20px;
    }
}
@media screen and (max-width: 641px) {
    html body .gform_legacy_markup_wrapper .ginput_container span.text-ellipses:not(.ginput_price){
        margin: 0;
    }
}
/* max-540px */
@media screen and (max-width: 540px) {
    .styledSelect{
        height: 45px;
    }
    .stats-wrapper ul {
        justify-content: center;
    }
    .stats-wrapper ul li {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-form-wrapper .gform_body .gfield.gfield--width-half {
        width: calc(100% - 20px) !important;
    }

    .tcs-box:not(.tcs1-box) p {
        margin-top: 15px;
    }

    .alumni-section .wp-block-column:nth-child(n):not(:first-of-type) {
        margin-top: 17px;
    }

    .icons-box {
        width: calc(50% - 30px);
        margin: 10px 6px 8px 6px;
    }

    .news-archive-wrapper .sm-news-wrapper{
        width: calc(100% - 20px);
    }

    .icon-text p {
        margin-top: 5px;
    }

    .circle .icons {
        width: 100%;
    }

    .circle .icons img {
        max-width: 70px;
        max-height: 70px;
        width: 100%;
        height: 100%;
    }

    .circle-box {
        display: flex;
        justify-content: center;
        max-width: 119px;
        margin-left: auto;
        margin-right: auto;
    }

    .V-tabs-container .micro-cards-wrapper .card-body{
        width: calc(100% - 30px);
    }

    .news-hero .date-category{
        flex-direction: column;
        margin-top: 20px;
    }

    .news-hero .date-category .category{
            border-left: none;
            margin-top: 5px;
    }

    .news-hero .date:after{
        content: "";
        width: 60px;
        height: 1px;
        background-color: #ffffff;
        position: absolute;
        display: block;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
    }

    .news-hero .date{
        padding-bottom: 15px;
        position: relative;
        
    }

    body.single-ace-news-events .news-hero .date,
    body.single-ace-events .news-hero .date{
        margin-top: 10px;
    }
    body.single-ace-news-events .news-hero .date-category,
    body.single-ace-events .news-hero .date-category{
        margin-top: 30px;
    }
    body.single-ace-news-events .news-hero .date-category .category,
    body.single-ace-events .news-hero .date-category .category{
        border-right: none;    
    }

    .wp-block-image .alignright{
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
    
    .program-white-bullet-area .det-col ul{
        grid-template-columns: repeat(1, 1fr);
    }

}

/* max-479 fils */
@media screen and (max-width: 479px) {
    .sr-box {
        width: calc(100% - 30px);
        margin: 8px 15px;
    }

    .table-wrap .dt-thd {
        flex-direction: column;
    }

    .news-hero .author-box{
        flex-direction: column;
        align-items: center;
    }

    .news-hero .author-box .profile{
        margin: 0;
    }

    .news-hero .author-box .info{
        text-align: center;
    }

    .rfi-form li.gfield{
        width: calc(100% - 20px) !important;
        margin: 4px 10px !important;
    }
    
    .rfi-form .gform_legacy_markup_wrapper form li.gfield--width-full{
        width: calc(100% - 20px) !important;
        margin: 4px 10px !important;
    }

    .rfi-form .styledSelect{
        height: 45px !important;
    }

    .blog-single-wrapper .author-sm-profile{
        flex-direction: column;
        text-align: center;
    }

    .blog-single-wrapper .author-sm-profile .author-text{
        margin-left: 0;
        margin-top: 20px;
    }

    .blog-single-wrapper .post-sharing{
        flex-direction: column;
    }

    .blog-single-wrapper .post-sharing ul{
        margin-left: 0;
        margin-top: 15px;
    }

    .team-wrap .team-col{
        width: calc(100% - 30px);
    }
}

/* @import url('style-max-479px.css'); */
@media screen and (max-width: 374px) {
    footer .footer-top .footer-partner-nav-section .footer-nav > li {
        padding: 4px 11.5px;
    }

    footer .footer-bottom .footer-copyright-section .privacy-links li {
        padding: 1px 13px;
    }

    /*--hero-section--*/
    .hero-wrap .affort-cont {
        max-width: 100%;
    }

    .btn-cta .btn-cover,
    .join-alumi .btn-cover {
        max-width: 100%;
        width: 100%;
    }

    .circle {
        width: 84.2%;
        padding-bottom: 81.4%;
    }

    /*-join-alumi-sections--*/
    .join-alumi .btn-cover a {
        max-width: 100%;
        width: 100%;
    }

    /*--team-section--*/
    .adv-sec-6 .team-wrap .team-col {
        width: 100%;
    }
/* 
    .team-wrap .team-col .team-col-wrap {
        margin: 0 15px 30px;
    } */

    .adv-sec-2 .btn-cover {
        max-width: 100%;
    }

    .adv-sec-5 table tr:first-child td {
        padding: 0;
    }

    .adv-sec-5 table tr:last-child td {
        padding: 0;
    }

    .adv-sec-5 .myTable td {
        padding: 10px !important;
        font-size: 12px;
        line-height: 18px;
    }

    .side-buttons {
        margin: 32px 22px 43px;
    }

    .accord-sec ul.child-list {
        padding: 16px 0 0 10px;
    }

    .trust-sec .brand-logo .br-log-col {
        width: 100%;
    }

    .trust-sec .brand-logo .br-inner-wrap {
        flex-direction: column;
    }

    .trust-sec .brand-logo {
        margin: 32px 0 0;
    }

    .trust-sec .brand-logo .br-log-col:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid rgb(158 178 189 / 30%);
    }

    .trust-sec .brand-logo .br-log-col {
        width: 100%;
    }

    .trust-sec .btn-cont {
        margin-top: 35px;
    }

    .trust-sec .brand-logo .br-log-col:last-child,
    .trust-sec .brand-logo .br-log-col:first-child {
        padding: 24px 24px 30px;
    }

    .social-icon-wrap .soc-wrap {
        width: 30px;
        height: 30px;
        margin: 0 14px;
    }

    /* Homepage CTA */
    .cta-row-wrapper:before {
        background-size: 250px;
        top: 0;
    }
    .enroll-left-content h2::after {
        bottom: -20px;
    }

    .stats-wrapper ul li {
        width: 100%;
        margin-right: 0px !important;
    }
    .stats-wrapper ul li:last-child {
        margin: 0px;
    }
    /* .table-wrapper table td{
        padding: 17px 33px 13px 15px;
    } */
    .table-wrapper tr {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .table-wrapper tr:not(:first-child) {
        border-top: 1px solid #e1e7eb;
    }
    .table-wrapper tr td {
        flex-grow: 1;
        width: 100%;
        border-top: none !important;
    }

    .circle .icons img {
        max-width: 58px;
        max-height: 58px;
    }
}

@media screen and (max-width: 374px) {
    /*--courses-section--*/
    /*table--*/
    .adv-sec-5 .myTable tr td {
        padding: 10px !important;
        font-size: 11px;
        line-height: 16px;
    }

    /* <!---join-our-alumini-section--> */

    .icons-box {
        width: calc(50% - 20px);
    }

    .icon-text p {
        font-size: 13px;
    }
}
.gravity_form_ppc{
    position: absolute;
    padding-top: 20px;
    padding-bottom: 29px;
    width: 44%;
    padding-left: 20px;
    padding-right: 15px;
    color: #ffff;
    top: -120px;
    margin-left: 700px;
    background: #eeeeee;
    color: black;
    z-index: 100;
    grid-row-gap: 10px;
}

.gravity_form_ppc .form-wrapper{
	margin-top:-15px;
	font-size: 2rem;
    margin-bottom: 18px;
    font-weight: bold;
}
.gravity_form_ppc .gfield_label {
    color: #06213b !important;
    font-size: 1.20rem !important;
}
#field_4_30{
	font-family: "Public Sans Bold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
	font-size: 1.8rem;
    margin-bottom: 18px;
    font-weight: bold;
}
#gform_fields_4{
    grid-row-gap: 0px;
}
.gravity_form_ppc input {
  height: 40px;
 border-radius: 5px  !important;
  border: solid 2px #e1e7eb;
}
.gravity_form_ppc .hero-wrap .affort-cont p{
    margin-top: 0px;
    line-height: 0px;
}
.gravity_form_ppc .gfield_select{
     height: 40px;
	 font-size: 16px!important;
	font-weight: 500!important;

    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

}
.gravity_form_ppc .styledSelect{
		border-radius: 5px  !important;
  		border: solid 2px #e1e7eb;
	    font-size: 16px !important;
		font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif!important;
		font-weight: 500!important;
}
.gravity_form_ppc #gform_submit_button_4{
	padding-bottom:32px !important;
	width: 55% !important;
	border-radius: 3px  !important;
}
.gravity_form_ppc h2{
    font-size: 35px;
}
.PPC_cover .apply-text span{
    font-size: 150px;
}
.PPC_cover .apply-text-wrapper .prefix{
    margin-right: 0px;
}
.PPC_cover .apply-text-wrapper {
    justify-content: left;
}
.PPC_cover .suffix{
    width: 25%;
    word-break: break-word;

}
.PPC_cover .prefix{
    margin-right: 0px;
}
.PPC_hero{
    height: 228px;
    min-height: 228px;
	padding: 60px 40px 70px 120px; 
	
}
.PPC_hero   .affort-cont p{
	line-height: 18px !important;
	margin-top: 0px !important;
}
.ppc_education .hero-slider{
	width:100% !important;
}
.ppc_education .hero-col{
	background-color: transparent !important;
}
.ppc_form_education .gravity_form_ppc{
	background:black  !important;
	color: white  !important;
	top:-280px;
}
.ppc_goals{
	width:50% !important;
}
.ppc_form_education .gravity_form_ppc .gfield_label{
	color: white  !important;
}
.ppc_form_education button{
	background-color: #b70404;
}
.PPC_hero .hero-wrap .hero-col{
padding: 60px 40px 70px 120px; 
}
.PPC_hero  .affort-cont {     
    max-width: 600px !important;
}
.gform_wrapper .gfield_required{
    display: none;
}
.spacer{
    display: none;
}
.pcc_bottom_block h2{
	font-size: 1.984rem;
    line-height: 1.35;
	color: #B70404;
	font-family: "Public Sans Bold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
}
#gform_wrapper_4 .gform_heading{
	display:none;
}
.ppc_hero_para{
	margin-top:0px !important;
}
.page-id-18839 .wpb-container {
    padding-left: 0px;
	max-width: 1450px;
}
.page-id-18839 .hero-wrap .hero-col {
    padding: 60px 40px 70px 150px; 
}
.ppc_cards{
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
}
.ppc_cards .tcs-box{
	background-color: transparent !important;
	padding-top:0px !important;
}
.ppc_cards .tcs-box a{
	 text-transform: uppercase !important;
	margin-top:8px !important;
	font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
	font-weight: 700;
}
.ppc_cards .tcs-text-box h3{
	color: #EFAC21 !important;
    text-transform: uppercase !important;
    font-size: 16px !important;
    font-family: "Public Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: 700 !important;
}
.ppc_cards .tcs-text-box p{
	color:white !important;
}
.ppc_cards .tcs-cta-box{
	background-color:#EFAC21 !important;
		width: 154px !important;
	border-radius:3px;
	height:46px !important;
	    margin-top: 15px;
	
}
.ppc_cards .tcs-cta-box .text-link{
	background:none !important;
	padding: 2px 0 2px 25px;
	margin-bottom:15px;
	color: black;

}
.ppc_cover_h2, .ppc_cover_paragraph{
	text-align:center;
}
.cardscss .tcs-section {
  width:40%;
}
.cardscss .tcs-box{
	box-shadow: none;
	background-color: transparent;
	padding-top:0px !important;
	color:white;
}
.cardscss .tcs-slider-pagination:not(.swiper-pagination-lock) {
	margin-bottom:10px;
}
 
.cards_slides .wp-block-columns .wp-container-19{
	width:83%;
}
.page-id-18839 nav#no-header-top-menu {
    display: none;
}
.ppc_hero {
	margin-top:0px !important;
}
.pcc_header_block h3{
	color:white;
}
.ppc_cover_class h2 {
	color:#B70404 !important;
	font-size:34px !important;
	font-weight:bold;
	margin-bottom: 0px !important;
	font-family: "Public Sans Bold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif !important;
}
.ppc_columns{
	padding: 15px 0px 0px 0px!important;
	margin-right:20px;
	background-color:white !important;	
	border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;	
	border-bottom-color: #144282;
	width:25%;
	float: left;
	
}
.ppc_columns h5 {
	margin-top: 0;
    font-size:16.8px;
    font-family: "Public Sans","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
	padding-left :15px;
	color: #05213b;
    font-weight: 400;
	line-height: 1.35;
}
.ppc_columns  h2{
	text-transform: uppercase;
    color:#05213b;
    margin-top: 0px !important;
	font-family: "Public Sans Bold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif !important;
        font-weight: bold !important;
	text-align:left;
	padding-left:15px;
	    font-size: 2.0rem !important;
    
}
.ppc_columns h4{
	font-size: 1.05rem;
    font-family: "Public Sans","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
	padding-left:20px;text-align:left;
}
 

.ppc_columns .wp-block-read-more {
	width:auto !important;
	color:red !important;
	font-weight: normal;
}
.ppc_columns .accordion-item {
	border:none;
}
.ppc_columns .wp-block-button__link{
	background-color: #B70404;
    border-radius: 5px;
    border: 1px solid;
}
.ppc_columns p{
	padding-left:15px;
	padding-right:15px;
	line-height: 18px;
	font-size: 16px;
    color: #05213b;
    line-height: 1.35;
    font-family: "Public Sans Regular","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
	color: #5a6672;
	font-weight: 400;
}
.ppc_total_cost {
	text-transform: uppercase;
    margin-top: 1.5rem;
    margin-bottom: 0;
 	font-weight:600;
    color: #05213b !important;
    line-height: 1.35;
    font-family: "Public Sans Regular","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
}
.ppc_total_cost p:nth-child(1){
	color:red !important;
}
.ppc_finishin h3{
	color: #38afb9 !important;
    font-size: 50px !important;
    font-family: "Public Sans Extra Bold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
	text-align: center !important;
}
.ppc_finishin h2{
	font-family: "Public Sans Bold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif !important;
    font-weight: 700 !important;
	font-size:16px !important;
	text-align: center !important;
}
.ppc_finishin h4{
	font-size: 16px  !important;
    color: #05213b  !important;
    line-height: 1.35  !important;
    font-family: "Public Sans Regular","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif  !important;
	    text-transform: uppercase  !important;
	text-align: center !important;

}
.ppc_total_cost p{
	text-transform: uppercase;
    margin-top: 1.5rem;
    margin-bottom: 0;
	font-weight:600;
    color: #05213b;
    line-height: 1.35;
    font-family: "Public Sans Regular","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
}

.ppc_total_cost_rate{
    font-family: BlackerDisplay-Medium,Times,Georgia,Arial,"Lucida Grande",serif !important;
    font-size: 70px !important;
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
    color: #134281 !important;
	text-align:center !important;
}
.ppc_columns .column_button{
	background-color:transparent !important;
}
.ppc_columns .accordion-item .ai-head {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
    border: 1px solid #144282;
	padding:0px !important;
	
	background-color:#144282;
}
.ppc_columns .accordion-item h3 {
	padding-right:0px;
}

.ppc_columns  .wp-block-buttons{
	text-align: center;
	margin:20px;
}
.ppc_columns  .wp-block-buttons a:hover{
	color:white;
}
.ppc_columns .wp-block-column{
		border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
    border: 1px solid #144282;
	text-align: center;
}
.ppc_next_step p{
	text-align:left;
	padding-left:100px;
}
.ppc_next_step h2{
	text-align:center;
 
}
.details-card-inner-shadow {
    padding: 30px;
    border-radius: 5px;
    box-shadow: 1px 1px 30px rgb(0 0 0 / 20%);
    background-color: #fff;
}
.ppc_next_step .wp-block-group__inner-container{
	text-align:center;
}
.ppc_columns .accordion-item .ai-head h3{
		color :white!important;
		font-family: "Public Sans","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
    text-transform: uppercase;
	font-weight:normal !important;
	    font-size: 16px  !important;
	text-align:center;
}
.ppc_columns_block .wp-block-columns{
	align-items: flex-start !important;
}
.ppc_columns   .ai-content .text-wrap{
	padding:0px;
}
.ppc_empowered h2{
	padding-left:110px;
	color:white!important;
}

.ppc_empowered p{
	padding-left:110px;
	color:white!important;
}
.review-card p{
	color:black !important;
}
.text-wrap h1,.text-wrap h3 {
	    text-transform: uppercase !important;
    font-size: 20px !important;
    margin-bottom: 0;
    font-family: "Public Sans Bold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif !important;
    color: #05213b !important;
    font-weight: 400 !important;
}
.text-wrap p {
	font-size: 16px!important;
    color: #05213b!important;
    line-height: 1.35!important;
	padding-left:0px !important;
    font-family: "Public Sans Regular","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif!important;
}

.ppc_columns .wp-container-2, .ppc_columns .wp-container-6, .ppc_columns .wp-container-12, .ppc_columns .wp-container-16{
	border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
	border-bottom-color: #144282;
	height: 40px;
	text-align:center;
	color:white !important;
	font-family: "Public Sans","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
    text-transform: uppercase;
}
.ppc_cover_class p {
line-height: 20px;
margin-top: 10px !important;
font-size: 16px;
	color: #05213b;
	line-height: 1.35;
	font-family: "Public Sans Regular","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
 
	 
    line-height: 1.35;
}
.hide_div{
	display:none;
}

@media only screen and (max-width: 1024px)
{
    .ppc-cost-card-heading {
        font-size: 6em !important;
    }
}

@media only screen and (max-width: 785px)
{
    .ppc-cost-card-heading {
        line-height: 1.5;
        margin-top: 0;
    }
}

@media only screen and (max-width: 445px) {
    .ppc-cost-card-heading {
        font-size: 5em !important;
    }
}

.stat-rollup2 strong {
    color: #edaa1f;
    font-size: 175px;
    line-height: .75;
    margin-right: 1rem;

}

.stat-rollup1 strong {
    color: #edaa1f;
    font-size: 100px;
    line-height: .75;
    margin-right: 1rem;

}
.degreeclass{
	width:40%;
	margin-bottom: 50px;
}
.stat-rollup p {
    color: #1e7a8c;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: flex-end;

}
.stat-rollup1 p {
    color: #1e7a8c;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: flex-end;

}
.stat-rollup2 p {
    color: #1e7a8c;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: flex-end;

}
.floating_image{
    position: absolute;
    top: 192px;
    margin-left: 1000px;

}
.new_program_para{
	background-color: #edaa1f;
	padding-bottom:0px !important;
	text-align:center;
	color:white!important;
}
.new_program{
	border: 2px solid #edaa1f !important;
		padding-top:0px !important;
}
.stat-rollup{
		margin-bottom:250px;
}
.ppc_form_career .gravity_form_ppc{
	top:-220px;
}

.ppc_columns .sfContentBlock p{
 
	font-size: 16px;
    color: #05213b;
    line-height: 1.35;
    font-family: "Public Sans Regular","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
}
.ppc_columns h3{
	font-family: "Public Sans Bold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
    color: #05213b;
    font-weight: 400;
}
.gform_heading{
	display:none !important;
}
.ppc_cover_class{
	padding-left:130px;
}
.ppc_cover_class_less_width{
	padding-left:250px;
	padding-right:250px;
}
.font-15{
	font-size: 15px;
}
.card-tab {
    background-color: #EFAC21;
    display: inline-block;
    padding: 7px 15px;
    margin-bottom: 30px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
div.card-bandaid {
    font-size: 1.5rem;
    font-family: "Public Sans Extra Bold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
    text-transform: uppercase;
    background-color: #fff;
    color: #05213B;
    padding: 7px;
    border-radius: 8px;
    font-weight: bold;
    margin: 15px 0;
}

div.card-bandaid1 {
    font-size: 1.5rem;
    font-family: "Public Sans Extra Bold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
    text-transform: uppercase;
    background-color: #EDF3F6;
    color: #05213B;
    padding: 7px;
    border-radius: 8px;
    font-weight: bold;
    margin: 15px 0;
}
.card-title {
    font-size: 18px;
    font-weight: bold;
}
.promo-card-title{
	    text-transform: uppercase;
    color: #05213b;
    font-family: "Public Sans Extra Bold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
    font-size: 20px;
}
.arrow-card{
	background-color:#1DA2DC;
}

.promo-card.strategic-card .promo-card-content-main {
    margin: 90px 0 30px 0;
	text-align: center;
}
.ace_block_column{
	margin-right:10px;
}
.ace_block_column3{
	margin-left:10px;
}
.strategic-promos-background .col-md-4 {
    width: 33.33333%;
}
.promo-card.strategic-card {
    position: relative;
    background-color: #fff;
    
    margin-top: 100px;
    padding: 30px 50px;
    box-shadow: 1px 1px 30px rgb(0 0 0 / 25%);
    border-radius: 8px;
}
.promo-card.strategic-card .promo-card-icon {
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    width: 188px;
    margin-left: auto;
    margin-right: auto;
}
.sidebar-card ul li span {
    margin-left: 15px;
    font-size: 10px;
    text-align: right;
}
.sidebar-card ul li {
    font-weight: bold;
    list-style: none;
    position: relative;
    margin-bottom: 15px;
}
.sidebar-card ul li:before {
    content: '\f35a';
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 26px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    line-height: 32px;
    height: 32px;
    width: 20px;
    color: #B70404;
}
.sidebar-card {
        width: 90%;
    margin-left: 8%;
    margin-top: 10%;
    padding: 30px;
    box-shadow: 1px 1px 30px rgb(0 0 0 / 25%);
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 30px;
}
.card-price {
    font-size: 96px;
    font-family: BlackerDisplay-Medium,Times,Georgia,Arial,"Lucida Grande",serif;
	margin-top:40px;
	margin-bottom: 48px;
}
ol.introList > li {
    padding-left: 25px;
    padding-bottom: 15px;
    counter-increment: li;
    background-image: url(https://gettingstarted.ace.edu/assets/img/pdp-assets/outcomes-dotted.png);
    background-repeat: repeat-y;
}
ol.introList > li:before {
    content: counter(li);
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    display: inline-block;
    width: 25px;
    height: 22px;
    margin-left: -37px;
    margin-right: 12px;
    padding-top: -3px;
    background-color: #E76328;
    border-radius: 15px;
}
.introList-heading {
    margin-top: 50px;
    padding-left: 50px;
    background-image: url(https://gettingstarted.ace.edu/assets/img/pdp-assets/pdp-iconArrow.png);
    background-repeat: no-repeat;
    background-position: left 5px;
}
.rnbsn-card {
    width: 100%;
    background-color: #1d7a8c;
    padding: 0 15px 20px 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
}
.rnbsn-card1 {
    width: 100%;
    background-color: #fff;
    padding: 0 15px 20px 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
}
.hero_image .wpb-container{
	padding:0px;
	max-width:100%;
}
.column_ppc .gravity_form_ppc{
	top:0px !important;
	position:relative !important;
	width:90%;
	margin-left:50px !important;
}
.next_term_divider{
	padding-top:0px!important;
	padding-bottom:0px!important;
	color:black;
}
.next_term_divider{
	color:black !important;
}

.ppc_discover{
	text-align:center;
}
.section_divider h3{
	font-size: 24px!important;
}
.gravity_form .gravity_form_ppc{
	width:35%;
}
.ppc_columns_block{
	padding-left: 130px;
    padding-right: 120px;
}
.ppc_columns_block  .is-layout-flow{
	border:none;
}
.ppc_columns {
	font-size: 1.25rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0;
    font-family: "Public Sans Bold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif !important;
}
 
.ppc_columns_block h2{
	height:15px;
}

.ppc_columns .accordion-item .ai-head:not(.loading):after{
	background: url(../img/icon-down-arrow-white.svg) no-repeat !important;
}
.ppc_columns_block .divider{
 
    width: 100%;
    height: 3px;
    background-color: #DFE6E9;
    margin-top: 24px;
 
}
.column_button{
	margin: 20px !important;
    background-color: #B70404 !important;
}
.ppc_mostpopular{
    padding-left: 100px;
    padding-right: 100px;

}
.ppc_mostpopular h2{
	margin-top: 0px !important;
    height: 20px;
	font-family: BlackerDisplay-Medium,Times,Georgia,Arial,"Lucida Grande",serif !important;
    color: #EFAC21;
	 
}
.ppc_popularcards .card-body{
	background-color:transparent !important;
	width:40% !important;
	padding: 12px 20px 29px;
}
.ppc_popularcards .card-body h6{
	font-size: 14px;
    color: #dca72a;
}

.ppc_popularcards .btn-wrap{
	width: 100%;
	
	border-radius:5px;
}
.ppc_popularcards .btn-wrap a{
	background-color: #DCA72A !important;
}
.ppc_popularcards .wp-block-column{
	flex-basis: 100%;
}
.ppc_popularcards .wp-container-17 .wp-block-column{
	flex-basis: 100%;
}
.ppc_popularcards .wp-container-15 {
	flex-basis: 100% !important;
}
.cards-wrapper .card-body p {
 
    font-size: 13px;
}
.ppc_hero .wpb-container{
	max-width: 1240px;
}
.ppc_hero_small .hero-col{
	padding-left: 100px !important;
}
.page-id-18869 nav#no-header-top-menu {
    display: none;
}
.video_block .wp-block-columns{
	    flex-wrap: wrap!important;
}
.hidepara{
	display:none;
}
.exploreUL{
	color:black!important;
	background: none;
	list-style:disc;
	font-size: 16px;
	font-family: "Public Sans SemiBold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
	padding-left:40px !important;
}
.explorecite{
    font-size: 20px;
	    color: #5d5d5d;
   padding-top:10px;
    line-height: 1.35;
    font-family: "Public Sans Regular","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif !important;
	font-style: italic;
}
.explorer_divider{
	 width: 100%;
    height: 3px;
    background-color: #DFE6E9;
    margin-top: 24px;
}
.education_master_program{
	background-color:black;
}
  .program-info p {
    font-size: 12px;
	  font-weight:bold;
}
.education_master_program h2{
	padding-bottom: 10px !important;
}
.c-collapsable .panel-group {
    overflow: hidden;
    padding: 0 20px;
    border-top: 1px solid #e0e0e0;
}
.c-collapsable .panel-title{
	font-family: "Public Sans Bold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
    color: #05213b;
    font-weight: 400;
}
.stamp {
    font-weight: bold;
    padding: 7px;
    background-color: rgba(90, 102, 113, .2);
	margin-right: 10px;
}
.c-collapsable .panel-title a .accordion-sub-data {
    padding: 0 15px;
    font-weight: bold;
    text-transform: uppercase;
	
}
.c-collapsable .panel-title a .accordion-sub-data div{
	display: inline;
}
.c-collapsable .wpb-container{
	max-width: 1080px;
} 
.c-collapsable .text-wrap h1{
	font-size: 12px !important;
    line-height: 20px;
    font-family: "Public Sans Regular","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;

}
.education_md_master_program{
	background-color:#EFAC21!important;
	color:white;
}
 .review-card {
    margin: 55px 15px 0 15px;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 1px 1px 30px rgb(0 0 0 / 25%);
	background-color: #fff;
}
.education_degree {
	text-align: center;
	color: white;
}
.c-collapsable .panel-title a {
    display: flex !important;
	    font-family: "Public Sans Bold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
    font-size: 16px;
    display: block;
    color: #05213b;
    text-decoration: none;
}
 .price {
    display: block;
    padding-top: 0px !important;
	padding-bottom: 10px !important;
    margin-bottom: 0px;
    text-align: left;
    font-size: 115px;
    line-height: 1;
    font-family: "Public Sans Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
.program-info .data-bandaid {
    display: block;
    font-size: 22px;
    font-family: "Public Sans Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    text-transform: uppercase;
    text-align: center;
     
    padding: 12px;
    background-color: #edf3f6;
}
.education_master_dates{
	background-color:white;
}
.ppc_columns_education .wp-container-3{
	margin-left:15%;
}
.education_master_program #h-m-ed-programs-under{
	font-family:BlackerDisplay-Medium,Times,Georgia,Arial,'Lucida Grande',serif;
	color: #EFAC21;
}
.exploreUL a{
	color:#144282 !important;
}
#field_4_31{
	font-size: 12px;
    font-weight: normal;
    line-height: 20px;
    margin-top: 20px;
}
@media screen and (max-width: 1200px) {
    /*--courses-section--*/
    /*table--*/
	.ppc_goals{
		width:100% !important;
	}
    .gravity_form_ppc {
    position: relative;
    padding-top: 20px;
    padding-bottom: 29px;
    width: 100%;
    padding-left: 20px;
    padding-right: 15px;
    color: #ffff;
    top: 10px;
    margin-left: 0px;
    background: #eeeeee;
    color: black;
    z-index: 100;
    grid-row-gap: 10px;
    }
	.ppc_form .wpb-container{
		padding-left:0px;
		padding-right:0px;
	}
	.ppc_cover_class {
    padding-left: 18px;
	}
	.PPC_cover .suffix {
    width: 55%;
    word-break: break-word;
    padding-left: 15px;
	}
	.ppc_columns_block{
	padding-left: 0px;
    padding-right: 0px;
	}
	.ppc_mostpopular {
    padding-left: 0px;
    padding-right: 0px;
	}
	.ppc_cards {
    padding-left: 0px;
    padding-right: 0px;
	}
	.ppc_cards .swiper-slide {
		margin-right:34px !important;
	}
	.ppc_form .footer-form-top h2{
		padding:0px !important;
	}
}
.validation-fail-indicator {
    border: 1px solid #b70404 !important;
}
/*
.banner {
    width: 100%;
    background-color: #144282;
    text-align: center;
    color: #ffffff;
    padding: 15px 15px;
    box-sizing: border-box;
    box-shadow: 0px 0px 8px 0px #111;
}

.banner p a {
    color: #efac21;
    text-decoration: none;
}
.banner p a:hover {
    color:#efac21;
}


@media only screen and (min-width: 576px) {
    .banner {
        height: auto;
    }
}

@media only screen and (min-width: 768px) {
    .banner {
        height: auto;
    }
}

@media only screen and (min-width: 992px) {
    .banner {
        height: auto;
    }
}

@media only screen and (max-width:1024px) {
    .banner{
        padding-top:60px;
    }
    .main-wrapper {padding-top: 0 !important;}
}
*/
/* Interactive Map API Styles */

.map-lg-container .lg-container {
    max-width: 1500px!important;
}

.map-lg-container .lg-container .igm_content_below {
    max-width: 1100px!important;
    margin: 0 auto;
}

.igm-map-content .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 50px;
}

.igm-map-content .card-content {
    box-shadow: 5px 5px 0 3px #196b81;
    border-radius: 10px;
    padding: 20px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    color: #05213b;
    background-color: #ffffff;
    grid-column: span 6;
}

.igm-map-content .card-content p {
    margin-bottom: 15px;
	font-family: 'Public Sans'!important;
}

.igm-map-content .card-content h4 {
	font-size: 30px;
    margin-bottom: 8px;
}

.igm-map-content .ai-head {
    margin-top: 30px;
}

.igm-map-content .ai-content {
    box-shadow: 5px 5px 0 3px #196b81;
}

.igm-map-content .ai-head h3 {
    font-size: 44px!important;
    font-family: "Blacker Pro Display", Georgia, "Times New Roman", Times, serif!important;
    color: #05213B!important;
    font-weight: 500!important;
    line-height: 40px;
    text-transform: unset!important;
    text-align: center;
    padding-right: unset;
}

.igm-map-content .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 50px;
}

.igm-map-content .ai-content .text-wrap {
    border-top: unset;
}

.igm-map-content .ai-content p {
    font-size: 16px!important;
    color: #05213B!important;
    line-height: 32px!important;
    margin-top: unset!important;
}

.igm-map-content .ai-content p a {
    font-size: 16px;
    color: #B70404;
    font-weight: bold;
}

#choices--igm_select_21723-item-choice-52 {
    display: none;
}

@media only screen and (max-width: 768px) {
    .igm_content_right_1_3 {
        margin-top: 20px;
    }
}
@media only screen and (max-width: 720px) {
    .igm-map-content .card-content {
        grid-column: span 12;
    }
    .igm-map-content .container {
        grid-column-gap: unset;
    }
	.map-lg-container .lg-container .map_box {
    	display: none;
	}
}

/* Grant Calculator */

input#input_14_5, input#input_14_9, input#input_14_10, input#input_14_11, input#input_14_19, input#input_14_20, input#input_14_21, input#input_14_22, input#input_14_24, input#input_14_25, input#input_14_26, input#input_14_27,input#input_14_30, input#input_14_31,input#input_14_32,input#input_14_33  {
    font-size: 28px;
    font-weight: 700;
    font-family: lucida sans,lucida grande,lucida,arial,sans-serif;
    background: transparent;
    width: 100%;
    color: #fff;
    border-top: 2px solid #fff;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    text-align: center;
    padding: unset!important;
}
input#input_14_21::placeholder {
    color: #fff;
}
#gform_submit_button_14 {
    display:none;
} 
input#input_14_12, input#input_14_14,input#input_14_34 {
    height: 40px;
}
input#input_14_12, input#input_14_7 {
    color: #5d6f80;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
#field_14_5, #input_14_5, #field_14_9, #input_14_9, #field_14_10, #input_14_10, #field_14_11, #input_14_11, #field_14_19, #input_14_19, #field_14_20, #input_14_20, #field_14_21, #input_14_21, #field_14_22, #input_14_22, #field_14_24, #input_14_24, #field_14_25, #input_14_25, #field_14_26, #input_14_26, #field_14_27, #input_14_27,#field_14_30, #field_14_31, #field_14_32, #field_14_33 {
    text-align: center;
}
.gform_wrapper.gravity-theme .gfield_label {
    margin-bottom: 0;
}
.gform_wrapper.gravity-theme .gfield_description {
    line-height: 1;
}
#input_14_7 {
    height: 40px;
}
#field_14_12,#field_14_7 {
    margin-bottom: 40px;
}
.grant-calc-container .md-container {
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 60px 60px 0 60px !important;
}
.alignright {
    text-align: right;
}
.grant-calc-cta {
    padding: 20px 20px;
    margin: 0 -60px 0 -60px;
    border-radius: 0 0 15px 15px;
}
.grant-calc-button {
    display: flex;
    align-items: center;
    margin: 0;
    margin-top: 24px;
    justify-content: center;
}
.grant-calc-button .btn-col {
    margin: 0;
    margin-top: 0!important;
}
.grant-p {
  line-height: 2;
  margin-top: 0 !important;

}
.grant-p2 {
  line-height: 1.5;
}
#h-let-s-get-started {
  margin-bottom:10px;
}
#gfield_description_14_7, #gfield_description_14_12, #gfield_description_14_34 {
  font-size:12px;
  line-height: 1.4;
  margin-top:-5px;
}
#ctaCopy {
    color: #05213b;
    font-size: 125%;
    padding: 20px;
}
.grant-disclaimer .md-container {
	border: none;
	padding: 0 40px !important;
}

@media only screen and (max-width: 640px) {
    #gform_fields_14 {
        grid-column-gap: 5%!important;
    }
    #field_14_24, #field_14_25, #field_14_26, #field_14_27, #field_14_30, #field_14_31, #field_14_32, #field_14_33 {
        grid-column: span 6;
    }
    #field_14_24 .gfield_label, #field_14_25 .gfield_label, #field_14_26 .gfield_label, #field_14_27 .gfield_label, #field_14_30 .gfield_label, #field_14_31 .gfield_label, #field_14_32 .gfield_label, #field_14_33 .gfield_label {
        font-size: 14px;
        white-space: nowrap;
    }
    #gfield_description_14_24, #gfield_description_14_25, #gfield_description_14_26, #gfield_description_14_27, #gfield_description_14_30, #gfield_description_14_31, #gfield_description_14_32, #gfield_description_14_33 {
        font-size: 12px;
        padding-bottom: unset;
    }
/*     #field_14_30 > label, #field_14_24 > label {
        padding-bottom: 28px;
    } */
    #field_14_7 {
        margin-bottom: unset;
    }
    .grant-calc-container {
        padding: 40px 10px;
    }
    .grant-calc-container .md-container {
        padding: 10px!important;
    }
    .grant-calc-container .wpb-container {
        padding-right: unset!important;
    }
    .grant-calc-container .btn-wrap {
        margin: unset;
        margin-left: -10px;
        margin-right: -10px;
    }
    .grant-calc-container .btn-col {
        margin: unset;
        width: unset;
    }
    .grant-calc-container .btn {
        width: 100%;
        border-radius: 0 0 15px 15px;
    }

    .grant-calc-cta {
        padding: 0 10px;
        padding-top: 10px;
        margin: 0px -10px -10px -10px;
        border-radius: 0 0 10px 10px;
    }

    .grant-calc-button {
        display: block;
    }
}