/*!
Theme Name: Peoples Campus
Theme URI: http://rigorousweb.me/
Author: Rigorous Web Services
Author URI: http://rigorousweb.me/
Description: Description
Version: 1.0.0
Tested up to: 6.8.2
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: sunway
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Sunway is based on Underscores https://rigorousweb.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
5.1 Links
5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
10.1 Posts and pages
10.2 Asides
10.3 Comments
11.0 Infinite scroll
12.0 Media
12.1 Captions

13.0 Miscellaneous
13.1 Basic Styles
14.0 Extra Styles
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
span,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    font-size: 62.5%;
    /* Corrects text resizing ospanly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
    overflow-y: scroll;
    /* Keeps page centered in all browsers regardless of content height */
    -webkit-text-size-adjust: 100%;
    /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
    -ms-text-size-adjust: 100%;
    /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
    box-sizing: border-box;
    /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

:root {
    --primary: #1F1F1F;
    --secondary: #226B9B;
    --sky-blue-shade: #195173;
    --blue: #0C0D31;
    --gray: #636375;
    --medium-gray: #8C8C8C;
    --light-gray: #F2F2F2;
    --orange: #FF5A3D;
    --white: #FFF;
    --off-white: #FCFCFC;
    --inter-font: "Inter", sans-serif;
}

body {
    color: var(--gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    background: var(--light-gray);
    font-family: var(--inter-font);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

table {
    /* tables still need 'cellspacing="0"' in the markup */
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border: 1px solid var(--medium-gray);
}

caption,
th,
td {
    text-align: left;
    font-weight: 400;
}

blockquote,
blockquote p {
    font-style: italic;
}

blockquote p {
    margin-bottom: 0;
    padding: 5px 0;
}

blockquote {
    background: var(--light-gray);
    border-left: 4px solid var(--medium-gray);
    padding: 16px 16px 16px 48px;
    width: fit-content;
    position: relative;
}

blockquote,
q {
    quotes: "" "";
}

a {
    color: var(--primary);
    display: inline-block;
    text-decoration: none;
    -webkit-transition: .3s all ease;
    transition: .3s all ease;
}

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

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: var(--inter-font);
    font-weight: 500;
}

p,
li {
    margin-bottom: 16px;
    color: var(--gray);
}

p {
    line-height: 1.5;
    font-weight: 400;
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

b,
strong {
    font-weight: bold;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

address {
    margin: 0 0 15px;
}

pre {
    background: #eee;
    font-size: 15px;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 15px;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-size: 15px;
    margin-bottom: 15px;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
    margin-bottom: 15px;
}

mark,
ins {
    background: var(--white);
    margin-bottom: 15px;
    text-decoration: none;
}

sup,
sub {
    font-size: 75%;
    height: 0;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    bottom: 1ex;
}

sub {
    top: .5ex;
}

small {
    font-size: 75%;
}

big {
    font-size: 125%;
}

caption {
    border: 1px solid #dedede;
    margin-bottom: 15px;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 15px;
}

ul,
ol {
    margin: 10px 0 15px 25px;
}

ol li {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 25px;
}

li {
    list-style: none;
}

dt {
    font-weight: bold;
}

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

figure {
    margin: 0 auto 16px;
    position: relative;
    line-height: 0;
}

th,
td {
    padding: 16px;
    color: var(--primary);
}

th {
    font-weight: bold;
}

tr {
    background: var(--white);
    color: var(--white);
}

thead tr {
    background: var(--sky-blue-shade);
}

thead th {
    color: var(--white);
}

tbody tr:nth-child(even) {
    background: var(--light-gray);
}


/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background: var(--secondary);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: block;
    font-weight: 400;
    padding: 14px 16px;
    font-family: var(--inter-font);
    transition: all 0.2s linear 0s;
    margin-bottom: 15px;
}

button:hover {
    background: var(--sky-blue-shade);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
    border-color: #aaa #bbb #bbb;
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0;
    /* Aspanresses excess padding in IE8/9 */
}

input[type="search"] {
    -webkit-appearance: textfield;
    /* Aspanresses appearance set to searchfield in S5, Chrome */
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
    /* Corrects inner padding displayed ospanly in S5, Chrome on OSX */
    -webkit-appearance: none;
}

div.wpcf7-validation-errors {
    border: 2px solid #004A80;
    bottom: -51px;
    clear: both;
    color: #E90838;
    margin: 0;
    padding: 15px;
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok {
    clear: both;
    color: #398f14;
    margin: 0;
    padding: 15px;
}

form .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) {
    padding-bottom: 16px;
}

.wpcf7 form .wpcf7-response-output {
    border: none;
    color: #dc3232;
    margin: 0;
    padding: 4px 0 0 0;
}

span.wpcf7-not-valid-tip {
    color: #dc3232;
    bottom: -7px;
    display: block;
    position: absolute;
    font-size: 15px;
}

input[type="text"],
input[type="password"],
textarea,
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
select {
    box-sizing: border-box;
    padding: 14px;
    width: 100%;
    border: 1px solid rgba(1, 1, 1, 0.2);
    font-family: var(--inter-font);
}

.wpcf7-form p textarea:focus,
textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
textarea:focus,
input[type="submit"] {
    border-color: var(--secondary);
    outline: 0;
}

span.wpcf7-form-control-wrap {
    display: block;
}

.wpcf7 label {
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

.wpcf7 .wpcf7-list-item label {
    margin-bottom: 0;
}

.sidebar .wpcf7 input {
    background: var(--white);
    border: 1px solid #DDE2EA;
    padding-left: 12px;
}

::-webkit-input-placeholder,
:-moz-placeholder,
:-ms-input-placeholder {
    color: var(--gray);
    opacity: 1;
    font-family: var(--inter-font);
}

/*** Remove the inner border and padding in Firefox */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/

/*--------------------------------------------------------------
Menu Start
--------------------------------------------------------------*/

.menu-top-menu-container>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0;
    justify-content: center;
}

.main-navigation ul ul ul {
    left: 100%;
    top: 0px;
}

.main-navigation li {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
    position: relative;
}

.main-navigation li li {
    display: block;
    float: none;
    padding: 0;
    text-align: left;
}

.main-navigation li li:last-child {
    border-bottom: none;
}

.main-navigation li:hover ul {
    display: block;
}

.main-navigation li:hover li ul {
    display: none;
}

.main-navigation li li:hover ul {
    display: block;
}

.main-navigation li li:hover li ul {
    display: none;
}

.main-navigation li li li:hover ul {
    display: block;
}

.main-navigation li li li:hover li ul {
    display: none;
}

.main-navigation li li li li:hover>ul {
    display: block;
}

.menu-top-menu-container>ul>li {
    margin: 0 10px;
}

.menu-top-menu-container>ul>li.menu-item-has-children {
    padding-right: 4px;
}

.menu-top-menu-container>ul>li:first-child {
    margin-left: 0
}

.menu-top-menu-container>ul>li:last-child {
    margin-right: 0
}

.main-navigation ul li a {
    position: relative;
    padding: 8px 0;
    font-weight: 500;
    font-size: 17px;
}

.main-navigation ul ul>li>a {
    padding: 10px 20px;
}

.main-navigation ul ul li a {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.main-navigation ul ul li:last-child a {
    border-bottom: none;
}

.main-navigation ul ul li a:hover {
    color: var(--white);
    background: var(--secondary);
}

.main-navigation ul li.menu-item-has-children>ul>li.menu-item-has-children>a:before {
    content: "\f0d7";
    display: inline-block;
    font-size: 12px;
    right: 5px;
    position: absolute;
    left: auto;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 19px;
}

.main-navigation ul li.menu-item-has-children>a::before {
    content: "\f078";
    font-size: 10px;
    font-family: 'FontAwesome';
    right: -12px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 12px;
    transition: all 0.2s linear 0s;
}

.main-navigation ul li.menu-item-has-children:hover a::before {
    transform: rotate(180deg);
}

.main-navigation ul ul {
    transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    -webkit-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    transform-origin: center top 0;
    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    margin: 0;
    position: absolute;
    top: 36px;
    z-index: 5;
    background: var(--white);
    min-width: 210px;
    box-shadow: 1px 8px 16px 0 rgba(0, 0, 0, 0.4);
}

.main-navigation ul li:hover ul,
.main-navigation ul li:focus-within ul {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.main-navigation ul ul li {
    display: block;
}

/*--------------------------------------------------------------
Menu End
--------------------------------------------------------------*/


/*   -- "Inline Social Profiles" (These are the styles for the Social Site section) --   */

.inline-social-icons ul,
.block-social-icons ul,
.widget ul,
.social-links ul {
    margin: 0;
}

.inline-social-icons li {
    display: inline-block;
    margin: 0 2px;
    line-height: 0;
}

.inline-social-icons li:last-child {
    margin-right: 0;
}

.inline-social-icons li:first-child {
    margin-left: 0;
}

.inline-social-icons li a,
.block-social-icons li a {
    position: relative;
}

.inline-social-icons li a {
    width: 26px;
    height: 26px;
}

.block-social-icons li a {
    width: 45px;
    height: 45px;
    background: var(--secondary);
}

.inline-social-icons li a:hover::before {
    color: var(--orange);
}

.block-social-icons li a:hover {
    background: var(--red);
}

.inline-social-icons li a::before,
.block-social-icons li a::before {
    position: absolute;
    font-family: "FontAwesome";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    transition: all 0.3s linear 0s;
}

.inline-social-icons li a::before {
    font-size: 20px;
}

.inline-social-icons li a[href*="facebook.com"]::before,
.block-social-icons li a[href*="facebook.com"]::before {
    content: "\f082";
}

.inline-social-icons li a[href*="gmail.com"]::before,
.inline-social-icons li a[href*="yahoo.com"]::before,
.inline-social-icons li a[href*="hotmail.com"]::before,
.block-social-icons li a[href*="gmail.com"]::before,
.block-social-icons li a[href*="yahoo.com"]::before,
.block-social-icons li a[href*="hotmail.com"]::before {
    content: "\f0e0";
}

.inline-social-icons li a[href*="x.com"]::before,
.block-social-icons li a[href*="x.com"]::before {
    content: "\e61b";
}

.inline-social-icons li a[href*="linkedin.com"]::before,
.block-social-icons li a[href*="linkedin.com"]::before,
.social-links li a[href*="linkedin.com"]::before {
    content: "\f08c";
}

.inline-social-icons li a[href*="pinterest.com"]::before,
.block-social-icons li a[href*="pinterest.com"]::before {
    content: "\f0d2";
}

.inline-social-icons li a[href*="tumblr.com"]::before,
.block-social-icons li a[href*="tumblr.com"]::before {
    content: "\f173";
}

.inline-social-icons li a[href*="plus.google.com"]::before,
.block-social-icons li a[href*="plus.google.com"]::before {
    content: "\f0d5";
}

.inline-social-icons li a[href*="instagram.com"]::before,
.block-social-icons li a[href*="instagram.com"]::before {
    content: "\f16d";
}

.inline-social-icons li a[href*="youtube.com"]::before,
.block-social-icons li a[href*="youtube.com"]::before {
    content: "\f167";
}

.inline-social-icons li a[href*="tiktok.com"]::before,
.block-social-icons li a[href*="tiktok.com"]::before {
    content: "\e07b";
}

.block-social-icons {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
    border: 1px solid rgb(200, 92, 97);
    z-index: 5;
}

.block-social-icons li {
    margin: 0;
    line-height: 0;
    border-bottom: 1px solid rgb(200, 92, 97);
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/


/* Text meant only for screen readers */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 1.4rem;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar */
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/

.widget {
    margin-bottom: 20px;
}

/* Make sure select elements fit in widgets */

.widget select {
    max-width: 100%;
}

/* Search widget */

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/

.entry-content img {
    margin-bottom: 15px;
}

.entry-content {
    margin-bottom: 15px;
}

/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/

.hentry {
    background: var(--white);
    padding: 16px;
    margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
    /* display: none; */
}

.single .byline,
.group-blog .byline {
    display: inline;
    margin: 0;
}

.entry-content img,
.page-content img,
.entry-summary img {
    margin-bottom: 15px;
}

.page-links {
    clear: both;
    margin: 15px 0 0;
}


/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/

.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
    /*display: none;*/
}


/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/

.comment-content a {
    word-wrap: break-word;
}

.byblog-postauthor {
    display: block;
}


/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/


/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .paging-navigation,

/* Older / Newer Posts Navigation (always hidden) */

.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */

.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/

.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers */

embed,
iframe,
object {
    width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0 auto;
}

.wp-caption-text {
    text-align: center;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

/*--------------------------------------------------------------
13 Miscellaneous
--------------------------------------------------------------*/


/*--------------------------------------
13.1 Basic Styles
----------------------------------------*/


/*--------------------------------------
14.0 Extra Styles
----------------------------------------*/

.back-to-top {
    bottom: 85px;
    position: fixed;
    right: 25px;
    z-index: 9;
}

.back-to-top a {
    color: var(--white);
    display: block;
    font-family: "FontAwesome";
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    -ms-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    background: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.back-to-top a:hover {
    background: var(--sky-blue-shade);
}

.back-to-top a::before {
    content: "\f106";
    top: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 20px;
}

input[type="submit"],
.wpcf7 input[type="submit"] {
    display: inline-block;
    font-size: 18px;
    padding: 14px 18px;
    position: relative;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    z-index: 1;
    color: var(--white);
    margin-bottom: 2px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-family: var(--inter-font)
}

input[type="submit"]:hover,
input[type="submit"]:focus {
    color: var(--white);
    background: var(--sky-blue-shade);
}

button[type=submit] {
    font-size: 18px;
}

.container {
    max-width: 1232px;
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

section {
    padding: 70px 0;
}

.entry-header {
    padding-bottom: 16px;
}

.entry-header.text-center {
    text-align: center;
}

.entry-header .entry-title {
    font-weight: 700;
}

.entry-sub-title {
    font-family: var(--inter-font);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--secondary);
}

.btn-primary,
.btn-secondary {
    padding: 14px 38px 14px 14px;
    position: relative;
    color: var(--white);
}

.btn-primary {
    background: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: var(--medium-gray);
}

.btn-secondary:hover {
    background: var(--gray);
    color: var(--white);
}

.btn-primary::before,
.btn-secondary::before {
    position: absolute;
    content: '';
    font-family: 'FontAwesome';
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    right: 14px;
    transition: all 0.3s linear 0s;
}

.btn-primary:hover {
    background: var(--sky-blue-shade);
    color: var(--white);
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    transform: translateY(-50%) rotate(360deg);
}

.has-plus-icon::before {
    content: '\2b';
}

.has-arrow-right-icon::before {
    content: '\f061';
}

.has-arrow-left-icon::before {
    content: '\f060';
}

.has-download-icon::before {
    content: '\f019';
}

.has-calendar-icon::before {
    content: '\f133';
}

.has-search-icon::before {
    content: '\f002';
}

.no-z-index {
    z-index: 0 !important;
}

textarea {
    resize: vertical;
}

.post {
    position: relative;
}

.post .featured-image {
    /* margin-bottom: 0; */
    overflow: hidden;
    width: 100%;
}

.post .featured-image::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    z-index: 1;
    transition: all 0.3s linear 0s;
}

.post:hover .featured-image::before {
    opacity: 1;
}

.post .entry-title {
    font-size: 20px;
}

.post .post-content>span {
    display: block;
    margin-bottom: 10px;
}

.post img {
    transition: all 0.6s linear 0s;
}

.post:hover img {
    transform: scale(1.12);
}

.post .featured-image img {
    width: 100%;
}

.post-meta span {
    text-transform: uppercase;
    position: relative;
    padding-left: 22px;
    font-size: 14px;
}

.post-meta span::before {
    position: absolute;
    content: '';
    font-family: 'FontAwesome';
    top: 0;
    left: 0;
}

.post-meta span.entry-date::before {
    content: '\f133';
}

.post-meta span.entry-time::before {
    content: '\f017';
}

.post-meta span.entry-location::before {
    content: '\f3c5';
}

.d-none {
    display: none;
}

.no-scroll {
    overflow-y: hidden;
}

/* slick css start */

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
}

.slick-prev {
    left: calc(50% - 50px);
}

.slick-next {
    right: calc(50% - 50px);
}

.slick-prev:before {
    content: '\f053';
}

.slick-next:before {
    content: '\f054';
}

.slick-arrow {
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    z-index: 1;
    bottom: 0;
    top: unset;
    margin-bottom: 0;
    transform: none;
}

.slick-arrow::before {
    font-family: 'FontAwesome';
    opacity: 1;
    font-size: 16px;
}

.slick-arrow:hover,
.slick-arrow:focus {
    background-color: var(--sky-blue-shade);
}

.slick-arrow:hover::before,
.slick-arrow:focus::before {
    color: var(--white) !important;
}

.slick-dots li {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--off-white);
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li.slick-active button,
.slick-dots li button:hover {
    background: var(--secondary);
}

.slick-slider:has(.slick-arrow) {
    padding-bottom: 45px;
}

/* slick css end */

/* page title start */

.page-title-wrap {
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.page-title-wrap::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.55);
}

.page-title-wrap * {
    color: var(--white);
}

.page-title-wrap .container {
    position: relative;
    z-index: 1;
}

.page-title {
    text-transform: uppercase;
    font-size: 40px;
}

.page-title,
.page-sub-title {
    letter-spacing: 1px;
}

.page-sub-title {
    margin-bottom: 8px;
}

/* page title end */

/* tab style start */

.tab-title button {
    background: none;
    color: var(--primary);
}

.tab-title button:hover,
.information-filter-section .filter-btn-wrap li:hover {
    background: var(--secondary);
    color: var(--white);
}

.tab-title.active button,
.information-filter-section .filter-btn-wrap li.active,
.our-team-section .filter-btn-wrap li.active {
    background: var(--secondary);
    color: var(--white);
}

.tab-title button {
    margin-bottom: 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* tab style end */

/* header start */

.site-header {
    position: relative;
}

.site-branding a:hover,
.footer-logo a:hover {
    opacity: 0.7;
}

section.hgroup-wrap {
    padding: 0;
}

.header-top,
.hgroup-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 200px;
    padding-right: 60px;
}

.header-top {
    position: relative;
    background: var(--blue);
    padding-top: 8px;
    padding-bottom: 8px;
    justify-content: space-between;
}

.header-top * {
    color: var(--white);
}

.header-top .location a {
    position: relative;
    padding-left: 20px;
}

.header-top .location a::before {
    position: absolute;
    content: "\f3c5";
    font-family: "FontAwesome";
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    left: 0;
}

.header-top .social-icons-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 80px;
}

.header-top .social-icons-wrap ul {
    line-height: 0;
}

.header-top .search-icon {
    width: 35px;
    cursor: pointer;
    background: var(--secondary);
    position: absolute;
    top: 0;
    height: 100%;
    right: 60px;
}

.header-top .search-icon::before {
    font-family: "FontAwesome";
    content: '\f002';
    font-size: 18px;
    color: var(--white);
    transition: all 0.2s linear 0s;
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-top .search-icon:hover {
    background: var(--sky-blue-shade);
}

.header-top .location a:hover,
.header-top .inline-social-icons a:hover::before {
    color: var(--orange);
}

.header-top .search-popup,
.popup-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 5;
}

.header-top .form-wrap {
    position: relative;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    max-width: 550px;
    padding: 40px 60px 0 16px;
}

.header-top .search-form {
    display: flex;
}

.header-top .search-form label {
    width: 100%;
}

.header-top .search-field {
    color: var(--primary);
}

.header-top .search-submit {
    margin-bottom: 0;
}

.header-top .form-wrap .cross-icon {
    position: absolute;
    right: 16px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    background: var(--secondary);
}

.header-top .form-wrap .cross-icon::before {
    position: inherit;
    content: "\f00d";
    font-family: "FontAwesome";
    font-size: 18px;
    top: inherit;
    left: 50%;
    transform: translateX(-50%);
    line-height: 30px;
    color: var(--white);
}

.header-top .form-wrap .cross-icon:hover {
    background: var(--sky-blue-shade);
}

.hgroup-right {
    padding-top: 16px;
    padding-bottom: 16px;
    background: var(--white);
}

.site-branding {
    width: 125px;
    line-height: 0;
    padding: 0 5px;
    position: absolute;
    top: 0;
    left: 60px;
    background: var(--white);
    z-index: 1;
}

.navbar {
    width: 87%;
    width: calc(100% - 200px);
}

.contact-program-wrap {
    width: 200px;
    margin-left: auto;
}

.contact-program-wrap>.btn-primary {
    margin-bottom: 0;
    margin-left: auto;
}

.contact-program-wrap>.btn-primary::before {
    content: '\f19d';
    right: 12px;
}

.contact-program-wrap .popup-content {
    max-width: 80%;
    display: grid;
    gap: 32px;
    grid-template-columns: calc(50% - 16px) calc(50% - 16px);
}

.popup-content {
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 28px;
    max-height: 80%;
    overflow-y: auto;

}

.popup-content .featured-image {
    margin-bottom: 0;
}

.popup-content .apply-form p:has(.btn-primary),
.popup-content .apply-form p .btn-primary {
    margin-bottom: 0;
}

.popup-close {
    width: 28px;
    height: 28px;
    position: absolute;
    right: 4px;
    top: 4px;
    background: var(--secondary);
    cursor: pointer;
    transition: all 0.2s linear 0s;
}

.popup-close::before {
    position: absolute;
    content: "\f00d";
    font-family: "FontAwesome";
    color: var(--white);
    font-size: 18px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    line-height: 28px;
}

.popup-close:hover {
    background: var(--sky-blue-shade);
}

.highlights-notice-section {
    background: var(--light-gray);
    padding: 0 60px;
    border-bottom: 2px solid var(--white);
}

.notice-slider-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
    padding: 8px 0;
    position: relative;
}

.notice-slider-wrap .notice-title {
    background: var(--orange);
    width: 125px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.notice-title h4 {
    margin-bottom: 0;
    color: var(--white);
    padding: 5px 8px;
    font-size: 18px;
}

.notice-slider-wrap .notice-slider-content {
    margin-left: 135px;
    animation: highlightsSlider linear infinite;
    animation-duration: 25s;
}

@keyframes highlightsSlider {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.notice-slider-wrap .notice-slider-content:hover {
    animation-play-state: paused;
}

.notice-slider-wrap ul {
    margin: 0;
    width: max-content;
}

.notice-slider-wrap ul li {
    display: inline-block;
    margin: 0 16px 0 0;
    counter-increment: my-counter;
    position: relative;
    padding-left: 26px;
}

.notice-slider-wrap ul li::before {
    content: counter(my-counter);
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    text-align: center;
    transform: translateY(-50%);
}

/* header end */

/* banner start */

.banner-section {
    padding: 0;
}

.banner-section * {
    color: var(--white);
}

.banner-slider.slick-slider {
    margin-bottom: 0;
}

.banner-content {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.banner-content::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.banner-text-content {
    padding: 200px 0 230px 0;
    position: relative;
    max-width: 500px;
}

.banner-text-content .entry-title {
    font-size: 60px;
}

.banner-text-content .entry-sub-title {
    font-size: 22px;
}

.banner-section .slick-dots {
    bottom: 100px;
    width: 100%;
}

/* banner end */

/* about us section start */

.about-us-section,
.notices-downloads-section,
.gallery-section,
.mission-objectives-section,
.who-we-are-section,
.contact-section,
.contact-form-content {
    background: var(--white);
}

.home .about-us-section {
    padding: 0 0 80px 0;
    margin-top: -80px;
}

.home .about-us-content {
    display: grid;
    gap: 32px;
    grid-template-columns: calc(50% - 16px) calc(50% - 16px);
    padding: 32px;
    background: var(--white);
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    z-index: 1;
    position: relative;
}

.about-us-content .quote-title {
    display: block;
    font-size: 22px;
    margin-bottom: 4px;
    font-style: normal;
}

.about-us-content blockquote::before {
    position: absolute;
    top: 50%;
    left: 8px;
    content: "\f10d";
    font-family: "FontAwesome";
    color: var(--secondary);
    font-size: 26px;
    transform: translateY(-50%);
}

.home .about-us-content .entry-content {
    padding-bottom: 10px;
}

.chief-message-content {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    background: var(--light-gray);
}

.chief-message-content .chief-message-info {
    padding: 32px;
}

.chief-message-content .entry-content {
    margin-bottom: 26px
}

.chief-message-content .chief-name {
    font-style: italic;
}

.chief-message-content .featured-image {
    margin-bottom: 0;
}

.chief-message-content .featured-image::before {
    position: absolute;
    content: '\f10e';
    font-family: 'FontAwesome';
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--white);
    line-height: 60px;
    text-align: center;
    font-size: 42px;
    top: 0;
    left: 0;
}

/* about us section end */

/* our-courses-section start */

.our-courses-section {
    background: var(--blue);
    position: relative;
}

.our-courses-section::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(assets/images/boxes-shape-bg.png);
    opacity: 0.1;
    background-position: center;
    background-size: cover;
}

.our-courses-section .entry-header * {
    color: var(--white);
}

.our-courses-section .post,
.all-programs-section .post,
.program-detail-content,
.blog-post-wrapper .post,
.events-post-wrapper .post,
.information-filter-section .post,
.sidebar aside {
    background: var(--white);
    padding: 16px;
}

/* .our-courses-section .post-wrapper,
.all-programs-section .post-wrapper,
.blog-post-wrapper,
.all-information-post-wrapper {} */

.our-courses-section .post-wrapper,
.all-programs-section .post-wrapper .tab-content.active,
.blog-post-wrapper,
.all-information-post-wrapper,
.upcoming-events-section .post-wrapper,
.alumni-news-section .post-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}

.our-courses-section .post-wrapper .post,
.all-programs-section .post-wrapper .post,
.blog-post-wrapper .post,
.all-information-post-wrapper .post,
.upcoming-events-section .post,
.alumni-news-section .post {
    width: 30.33%;
    margin: 0 16px 32px 16px;
    width: calc(33% - 32px);
}

.our-courses-section .post .btn-primary,
.all-programs-section .post .btn-primary {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    opacity: 0;
    z-index: 2;
}

.our-courses-section .post .btn-primary::before,
.all-programs-section .post .btn-primary::before {
    right: 10px;
}

.our-courses-section .post .featured-image::before,
.all-programs-section .post .featured-image::before {
    display: none;
}

.our-courses-section .post::before,
.all-programs-section .post::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: all 0.3s linear 0s;
    z-index: 1;
}

.our-courses-section .post:hover::before,
.all-programs-section .post:hover::before {
    opacity: 1;
}

.our-courses-section .post:hover .btn-primary,
.all-programs-section .post:hover .btn-primary {
    top: 50%;
    opacity: 1;
}

.our-courses-section .post-content-wrap>.entry-title,
.all-programs-section .post-content-wrap>.entry-title {
    font-weight: 600;
}

.our-courses-section .program-duration-and-students,
.all-programs-section .program-duration-and-students {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* margin-bottom: 20px; */
}

.our-courses-section .program-duration-and-students span,
.all-programs-section .program-duration-and-students span {
    position: relative;
    padding-left: 20px;
    text-transform: uppercase;
}

.our-courses-section .program-duration-and-students span::before,
.all-programs-section .program-duration-and-students span::before {
    position: absolute;
    font-family: 'FontAwesome';
    top: 48%;
    transform: translateY(-50%);
    left: 0;
    font-size: 14px;
}

.our-courses-section .program-duration-and-students .duration::before,
.all-programs-section .program-duration-and-students .duration::before {
    content: '\f133';
}

.our-courses-section .program-duration-and-students .students::before,
.all-programs-section .program-duration-and-students .students::before {
    content: '\f501';
}

.our-courses-section .program-features .entry-title,
.all-programs-section .program-features .entry-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.our-courses-section .program-features ul,
.all-programs-section .program-features ul {
    margin: 0;
}

.our-courses-section .program-features li,
.all-programs-section .program-features li {
    padding-left: 22px;
    margin-bottom: 8px;
    position: relative;
}

.our-courses-section .program-features li::before,
.all-programs-section .program-features li::before,
.program-detail-content .core-lessons li::before {
    position: absolute;
    content: '\f058';
    font-family: 'FontAwesome';
    top: 2px;
    left: 0;
    color: var(--blue);
    font-size: 14px;
}

/* our-courses-section end */

/* notices downloads section start */

.notices-downloads-section .btn-wrap {
    text-align: center;
}

.notices-downloads-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px 30px -5px;
}

.notices-downloads-wrap .updates-info {
    background: var(--light-gray);
    padding: 8px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    width: 24%;
    margin: 0 6px 32px 6px;
    width: calc(25% - 12px);
}

.notices-downloads-wrap .notice-updates-info li,
.notices-downloads-wrap .download-updates-info a {
    padding: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: var(--white);
}

.notices-downloads-wrap .download-updates-info a:hover h5 {
    color: var(--red);
}

.notices-downloads-wrap .updates-info li:last-child {
    margin-bottom: 0;
}

.notices-downloads-wrap .updates-info .entry-date {
    background: var(--orange);
    color: var(--white);
    padding: 2px 4px;
    font-size: 13px;
    width: 35px;
    text-transform: uppercase;
}

.notices-downloads-wrap .updates-info .entry-date .date-number {
    font-size: 16px;
}

.notices-downloads-wrap .updates-info ul {
    margin: 0;
}

.notices-downloads-wrap .updates-info .entry-date>span {
    display: block;
    text-align: center;
}

.notices-downloads-wrap .updates-info h5 {
    margin-bottom: 0;
    font-size: 16px;
    width: 86%;
    width: calc(100% - 35px);
    padding-left: 10px;
}

.download-updates-info .download-notice {
    width: 35px;
    height: 35px;
    background: var(--blue);
    position: relative;
    cursor: pointer;
}

.download-updates-info .download-notice::before {
    position: absolute;
    font-family: 'FontAwesome';
    top: 50%;
    transform: translate(-50%, -45%);
    color: var(--white);
    left: 50%;
    font-size: 18px;
}

/* notices downloads section end */

/* admission-events section start */

.admission-events-section,
.leadership-insights {
    background: var(--light-gray);
}

.admission-events-wrap {
    display: grid;
    grid-template-columns: calc(60% - 16px) calc(40% - 16px);
    gap: 32px;
    align-items: center;
}

.upcoming-events-slider {
    display: flex;
    height: 500px;
}

.upcoming-events-slider .featured-image {
    height: 100%;
    transition: all 0.2s linear 0s;
    flex: 1;
}

.upcoming-events-slider .featured-image a {
    height: 100%;
}

.upcoming-events-slider .featured-image a::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: all 0.2s linear 0s;
}

.upcoming-events-slider .featured-image:hover {
    flex-grow: 3.5;
}

.upcoming-events-slider .featured-image img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.upcoming-events-slider .featured-image:hover a::before {
    opacity: 1;
}

.upcoming-events-slider h4 {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    color: var(--white);
    text-transform: uppercase;
    opacity: 0;
    transition: all 0.22s linear 0s;
    text-align: center;
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.upcoming-events-slider .featured-image:hover h4 {
    left: 50%;
    opacity: 1;
}

.upcoming-events-slider .slick-dots li {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.event-calendar {
    background: var(--white);
    padding: 20px;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

.event-calendar .calendar-content {
    background: var(--off-white);
    padding: 20px;
    max-height: 520px;
    overflow-y: scroll;
}

.event-calendar .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px;
}

.event-calendar ul {
    margin: 0;
}

.event-calendar li a {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.event-calendar li:first-child a {
    border-top: none;
}

.event-calendar li:last-child a {
    border-bottom: none;
}

.event-calendar li a:hover .event-name {
    color: var(--red);
}

.event-calendar li .entry-date {
    width: 40px;
    font-size: 18px;
}

.event-calendar li .event-detail {
    width: 90%;
    width: calc(100% - 40px);
    padding-left: 20px;
}

.event-calendar .entry-date>span {
    display: block;
    text-transform: uppercase;
}

.event-calendar .entry-date .date-number {
    color: var(--orange);
    font-weight: 800;
    font-size: 30px;
}

.event-calendar .entry-date .date-day {
    color: var(--primary);
}

.event-calendar .event-organizer {
    color: var(--primary);
    margin-bottom: 6px;
}

.event-calendar .event-location {
    font-size: 15px;
    position: relative;
    padding-left: 20px;
    color: var(--gray);
}

.event-calendar .event-location::before {
    position: absolute;
    content: "\f3c5";
    font-family: "FontAwesome";
    top: 45%;
    transform: translateY(-50%);
    margin: auto;
    left: 0;
    font-size: 14px;
}

/* admission-events section end */

/* gallery section start */

.gallery-grid {
    margin: 0 -16px;
}

.gallery-grid .gallery-img {
    margin: 0 16px 32px 16px;
    height: 260px;
    overflow: hidden;
}

.gallery-grid .gallery-img:hover img,
.gallery-album:hover img {
    scale: 1;
    opacity: 0.3;
}

.gallery-img .featured-image,
.gallery-album .featured-image {
    margin-bottom: 0;
    background: var(--blue);
}

.gallery-img .featured-image {
    height: 100%;
}

.gallery-img a,
.gallery-img .featured-image img {
    width: 100%;
    height: 100%;
}

.gallery-img .featured-image img,
.gallery-album img {
    scale: 1.25;
    transition: all 0.3s ease 0s;
}

.gallery-img .featured-image img {
    object-fit: cover;
    object-position: center;
}

/* gallery section end */

/* gallery page start */

.gallery-album .img-wrap a:not(:first-child) {
    display: none;
}

.gallery-album-section .gallery-grid {
    display: flex;
    flex-wrap: wrap;
}

.gallery-album {
    width: 30%;
    margin: 0px 16px 32px 16px;
    width: calc(33.33% - 32px);
    position: relative;
    overflow: hidden;
}

.gallery-album .img-wrap {
    line-height: 0;
}

.gallery-album .album-title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 12px;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    text-align: center;
}

.gallery-album h6 {
    color: var(--white);
    margin-bottom: 0;
}

.lg-prev,
.lg-next {
    background: var(--secondary);
}

.lg-prev::after,
.lg-next::before {
    color: var(--white);
}

/* gallery page end */

/* footer start */

.site-footer {
    background: var(--blue);
}

.site-footer * {
    color: var(--white);
}

.site-footer a:hover {
    color: var(--orange);
}

.footer-content {
    padding: 60px 0 40px 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-between;
}

.footer-logo {
    width: 200px;
}

.footer-logo a {
    max-width: 200px;
}

.newsletter-subscribe {
    width: 360px;
    padding: 0 30px;
}

.footer-content .subscribe-form input[type="email"] {
    color: var(--primary);
}

.footer-content .subscribe-form button {
    width: 100%;
}

.footer-content .subscribe-form .wpcf7-form-control-wrap {
    margin-top: 0;
    margin-bottom: -12px;
}

.footer-content .widget-area {
    display: grid;
    grid-template-columns: 60% 40%;
    width: 53%;
    width: calc(100% - 560px)
}

.footer-content .widget {
    padding: 0 15px;
    margin-bottom: 0;
}

.footer-content .contact-list li {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    position: relative;
    padding-left: 28px;
    word-break: break-word;
}

.footer-content .widget .icon {
    width: 20px;
    display: inline-block;
    font-size: 18px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

.footer-content .widget:first-child {
    padding-left: 0;
}

.footer-content .widget:last-child {
    padding-right: 0;
}

.footer-content .widget-title {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-content .quick-links a {
    position: relative;
}

.footer-content .quick-links a::before {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f054";
    font-size: 12px;
    top: 3px;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.footer-content .quick-links a:hover {
    padding-left: 15px;
}

.footer-content .quick-links a:hover::before {
    color: inherit;
    opacity: 1;
}

.footer-content .widget-list li a:not(:last-child) {
    position: relative;
    padding-right: 5px;
    margin-right: 1px;
}

.footer-content .widget-list li a:not(:last-child)::before {
    position: absolute;
    content: ',';
    right: 0;
    bottom: 0;
}

.site-generator {
    padding: 20px 0;
    background: var(--primary);
}

/* footer end */

/* contact page start */

.contact-content {
    display: grid;
    gap: 32px;
    grid-template-columns: calc(35% - 16px) calc(65% - 16px);
}

.contact-form-content .heading-wrap .entry-title {
    margin-bottom: 5px;
}

.contact-form-content,
.college-contact-wrap {
    padding: 28px;
}

.college-contact-wrap {
    background: var(--secondary);
}

.college-contact-wrap * {
    color: var(--white);
}

.college-contact-wrap>.entry-title {
    font-weight: 500;
    padding-bottom: 8px;
}

.contact-detail .detail-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    background: var(--sky-blue-shade);
    padding: 16px;
    margin-bottom: 20px;
    word-break: break-all;
}

.contact-detail .detail-item .icon {
    font-size: 25px;
}

.contact-detail .detail-item a:hover {
    color: var(--orange);
}

.contact-detail .detail-content h6 {
    margin-bottom: 2px;
    font-weight: 800;
    font-size: 16px;
}

.college-contact-wrap .inline-social-icons {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}

.college-contact-wrap .inline-social-icons li a {
    width: 32px;
    height: 32px;
}

.college-contact-wrap .inline-social-icons li a::before {
    font-size: 28px;
}

.contact-form-content {
    box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
}

.contact-form-content .heading-wrap {
    padding-bottom: 10px;
}

.map-section {
    padding: 0;
}

.map-section .map-content {
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
}

/* contact page end */

/* about us page start */

.about-detail-section {
    background: var(--off-white);
}

.about-detail-section blockquote {
    margin-bottom: 16px;
}

.mission-purpose {
    margin-bottom: 40px;
}

.mission-purpose .purpose-items-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}

.mission-purpose .item {
    width: 22%;
    margin: 0 16px;
    width: calc(25% - 32px);
}

.mission-purpose .item .icon {
    max-width: 70px;
    margin-bottom: 8px;
}

.mission-purpose .item h5 {
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 0;
}

.objectives-purpose ul {
    margin: 0;
}

.objectives-purpose li {
    position: relative;
    padding-left: 22px;
}

.objectives-purpose li::before {
    position: absolute;
    content: '\f058';
    font-family: 'FontAwesome';
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    color: var(--blue);
    font-size: 14px;
}

.leader-profiles-wrap .person-profile {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
}

.leader-profiles-wrap .person-profile:not(:last-child) {
    margin-bottom: 50px;
}

.leader-profiles-wrap .featured-image {
    width: 35%;
    margin-bottom: 0;
}

.leader-profiles-wrap .profile-content {
    padding: 24px;
    width: 65%;
    background: var(--white);
}

.leader-profiles-wrap .person-profile:nth-child(odd) .featured-image {
    order: 2;
}

.leader-profiles-wrap .person-profile:nth-child(odd) .profile-content {
    order: 1;
}

.person-profile .person-name {
    margin-bottom: 2px;
    font-weight: 500;
}

.campus-tour-section,
.campus-tour-section .container,
.join-alumni-section,
.join-alumni-section .container {
    position: relative;
}

.campus-tour-section {
    padding: 120px 0;
}

.campus-tour-section,
.join-alumni-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

.campus-tour-section *,
.join-alumni-section * {
    color: var(--white);
}

.campus-tour-section::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.58);
}

.campus-tour-section .entry-title {
    font-size: 52px;
    text-transform: uppercase;
}

.campus-tour-section .entry-sub-title {
    font-size: 24px;
}

.campus-tour-section .video-play-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--white);
    display: block;
    margin: auto;
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease 0s;
}

.campus-tour-section .video-play-icon::before {
    position: absolute;
    content: '\f144';
    font-family: 'FontAwesome';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    color: var(--secondary);
    transition: inherit;
}

.campus-tour-section .video-play-icon:hover {
    transform: scale(1.2) rotate(-90deg);
}

.campus-tour-section .video-play-icon:hover::before {
    color: var(--orange);
}

/* about us page end */

/* our team page start */

.our-team-profiles-wrap .person-profile,
.alumni-members-section .person-profile {
    position: relative;
}

.our-team-profiles-wrap .featured-image,
.alumni-members-section .featured-image {
    background: var(--blue);
}

.our-team-profiles-wrap .person-profile img,
.alumni-members-section .person-profile img {
    transition: all 0.3s ease 0s;
}

.our-team-profiles-wrap .person-profile:hover img,
.alumni-members-section .person-profile:hover img {
    opacity: 0.5;
}

.our-team-profiles-wrap .person-profile .btn-primary,
.alumni-members-section .person-profile .btn-primary {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -40%);
    opacity: 0;
}

.our-team-profiles-wrap .person-profile:hover .btn-primary,
.alumni-members-section .person-profile:hover .btn-primary {
    top: 40%;
    opacity: 1;
}

/* our team page end */

/* team detail page start */

.team-member-detail .person-profile {
    display: grid;
    grid-template-columns: 30% 70%;
}

.team-member-detail .person-profile .featured-image {
    margin-bottom: 0;
}

.team-member-detail .profile-content {
    padding: 16px;
    background: var(--white);
}

.team-member-detail .profile-info {
    margin-bottom: 20px;
}

.profile-contact .contact-ways {
    padding-bottom: 6px;
}

.profile-contact .contact-ways ul {
    margin: 0;
}

.profile-contact .contact-ways li {
    margin-bottom: 12px;
}

.profile-contact .icon {
    color: var(--secondary);
    margin-right: 4px;
}

.profile-contact .inline-social-icons ul {
    line-height: 0;
}

.profile-contact .inline-social-icons li a::before {
    color: var(--secondary);
    font-size: 26px;
}

/* team detail page end */

/* program page start */

.all-programs-section .tab-title-wrap,
.information-filter-section .filter-btn-wrap ul,
.our-team-section .filter-btn-wrap ul {
    display: flex;
    gap: 12px;
    width: fit-content;
    margin: 0 auto 30px auto;
    background: var(--white);
    padding: 10px;
}

/* program page end */

/* program single page start */

.program-detail-wrap,
.qaa-badge-content-wrap {
    display: grid;
    gap: 32px;
    grid-template-columns: calc(70% - 16px) calc(30% - 16px);
}

.program-detail-content>div:not(:last-child) {
    padding-bottom: 20px;
}

aside ul {
    margin: 0;
}

.program-detail-content .tab-title-wrap {
    margin-bottom: 20px;
    box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
    padding: 12px;
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 12px;
}

.program-detail-content .tab-title-wrap:has(:nth-child(2):last-child) {
    grid-template-columns: auto auto;
}

.program-detail-content .tab-title-wrap button {
    padding: 10px 20px;
}

.program-detail-content .core-lessons li {
    padding-left: 22px;
    position: relative;
}

.sticky-wrap {
    position: sticky;
    top: 16px;
}

.program-detail-wrap .sticky-wrap aside>.btn-primary {
    width: 100%;
    padding: 14px;
    text-align: center;
    margin-bottom: 16px;
}

.program-quick-info li {
    padding-left: 26px;
    position: relative;
    word-break: break-all;
}

.program-quick-info li:last-child {
    margin-bottom: 0;
}

.program-quick-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
}

.program-quick-info li a {
    color: var(--gray);
}

.program-quick-info li a:hover {
    color: var(--orange);
}

.program-detail-wrap .popup-content {
    max-width: 600px;
}

.program-detail-wrap .popup-content .apply-form {
    display: grid;
    column-gap: 20px;
    grid-template-columns: calc(50% - 10px) calc(50% - 10px);
}

.program-detail-wrap .popup-content .apply-form .has-textarea {
    grid-column: span 2;
}

.program-detail-wrap .popup-content .apply-form>p {
    grid-column: span 2;
}

/* program single page end */

/* blog page start */

.blog-post-wrapper .post .featured-image {
    margin-bottom: 20px;
}

.blog-post-wrapper .post-meta,
.all-information-post-wrapper .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 20px;
}

.post-meta span.byline::before {
    content: "\f2bd";
}

.post-meta span.tags::before {
    content: "\f02c";
}

.blog-post-wrapper .entry-content {
    padding-bottom: 16px;
    margin-bottom: 0;
}

.post-meta span a {
    color: var(--gray);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post-meta span a:hover {
    color: var(--orange);
}

.sidebar aside {
    margin-bottom: 20px;
}

.sidebar .post a {
    display: grid;
    gap: 16px;
    grid-template-columns: calc(40% - 8px) calc(60% - 8px);
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.sidebar .post:first-child a {
    padding-top: 0;
}

.sidebar .post:last-child a {
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .post .featured-image,
.sidebar .post .entry-title {
    margin-bottom: 0;
}

.sidebar .post .entry-title {
    font-size: 16px;
    transition: all 0.2s linear 0s;
}

.sidebar .post a:hover .entry-title {
    color: var(--secondary);
}

.sidebar .search form {
    position: relative;
}

.sidebar .search input[type="search"] {
    padding-right: 48px;
}

.sidebar .search button[type="submit"] {
    position: relative;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px;
    padding: 0;
}

/* blog page end */

/* pagination */

.pagination {
    text-align: center;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 10px;
    margin: 0 4px;
    border-style: solid;
    border-color: var(--secondary);
    border-width: 1px;
    color: var(--secondary);
}

.pagination .current,
.pagination a:hover {
    background-color: var(--sky-blue-shade);
    color: var(--white);
    border-color: transparent;
}

/* event page start */

.events-post-wrapper .post {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    margin-bottom: 30px;
}

.events-post-wrapper .post .featured-image {
    margin-bottom: 0;
}

.events-post-wrapper .post:nth-child(even) .featured-image {
    order: 2;
}

.events-post-wrapper .post:nth-child(even) .post-content-wrap {
    order: 1;
}

.events-post-wrapper .post .post-content-wrap {
    padding-left: 16px;
}

.events-post-wrapper .post-meta span:not(.entry-location) {
    padding-right: 12px;
    border-right: 1px solid var(--gray);
    margin-right: 12px;
}

.events-post-wrapper .post-meta span.entry-location {
    display: block;
    margin-bottom: 8px;
}

.events-post-wrapper .post-meta span:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.events-post-wrapper .post-meta {
    margin-bottom: 20px;
}

/* event page end */

/* alumni page start */

.who-we-are-content-wrap {
    display: grid;
    gap: 32px;
    grid-template-columns: calc(60% - 16px) calc(40% - 16px);
    align-items: center;
}

.alumni-members-section .profiles-wrap,
.our-team-profiles-wrap {
    margin: 0 -16px;
}

.top-member-profiles-wrap,
.our-team-profiles-wrap {
    display: flex;
    flex-wrap: wrap;
}

.top-member-profiles-wrap .person-profile,
.our-team-profiles-wrap .person-profile {
    width: 30.33%;
    width: calc(33.33% - 32px);
}

.alumni-members-section .person-profile,
.our-team-profiles-wrap .person-profile {
    background: var(--white);
    margin: 0 16px 32px 16px;
    border-color: var(--secondary);
    border-style: solid;
    border-bottom-width: 5px;
}

.our-team-profiles-wrap {
    justify-content: center;
}

.our-team-profiles-wrap .person-profile {
    width: calc(25% - 32px);
}

.our-team-section .team-members:not(:last-child) {
    padding-bottom: 20px;
}

.alumni-members-section .profiles-wrap .featured-image,
.our-team-profiles-wrap .featured-image,
.who-we-are-content-wrap .featured-image {
    margin-bottom: 0;
}

.top-member-profiles-wrap .profile-content,
.our-team-profiles-wrap .profile-content {
    padding: 16px;
}

.member-profiles-slider .profile-content {
    padding: 12px;
}

.member-profiles-slider .person-name {
    font-size: 16px;
}

.member-profiles-slider .designation {
    font-size: 14px;
}

.join-alumni-section {
    padding: 80px 0;
}

.join-alumni-section::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
}

.join-alumni-section .joining-detail {
    text-align: center;
}

.join-alumni-section .joining-detail p {
    font-size: 18px;
}

.upcoming-events-section .post,
.alumni-news-section .post {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.upcoming-events-section .post .featured-image,
.alumni-news-section .featured-image {
    margin-bottom: 0;
}

.alumni-news-section .post .entry-title {
    margin-bottom: 5px;
}

.upcoming-events-section .post-content,
.alumni-news-section .post-content {
    padding: 16px;
}

.upcoming-events-section .post-meta span {
    display: block;
    margin-bottom: 10px;
}

.upcoming-events-section .post-meta span:last-child {
    margin-bottom: 0;
}

.upcoming-events-section .post-meta .entry-location {
    color: var(--gray);
}

.alumni-news-section {
    background: var(--off-white);
}

.testimonials-section {
    background: var(--blue);
}

.testimonials-section .entry-header * {
    color: var(--white);
}

.testimonials-profiles-slider {
    margin: 0 -16px;
}

.testimonials-profiles-slider .person-profile {
    margin: 0 16px 32px 16px;
    background: var(--white);
    border-bottom: 5px solid var(--secondary);
    padding: 16px;
}

.testimonials-profiles-slider .featured-image {
    margin-left: 0;
    max-width: 110px;
    border-radius: 50%;
    overflow: hidden;
}

/* alumni page end */

/* qaa badge page start */

.qaa-badge-content {
    background: var(--white);
    padding: 0 16px;
}

.qaa-badge-content ul,
.qaa-badge-content li {
    margin: 0;
}

.qaa-badge-content li a {
    padding: 15px 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    width: 100%;
    position: relative;
}

.qaa-badge-content li a:hover {
    background: rgb(249, 250, 251);
    color: var(--primary);
}

.qaa-badge-content li a::before,
.qaa-badge-content li a::after {
    position: absolute;
    font-family: 'FontAwesome';
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
}

.qaa-badge-content li a::before {
    content: "\f1c1";
    left: 0;
    font-size: 22px;
}

.qaa-badge-content li a::after {
    content: "\f019";
    right: 0;
    font-size: 18px;
}

.qaa-badge-content li:last-child a {
    border-bottom: 0;
}

/* qaa badge page end */

/* faculty research page start */

.faculty-research-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}

.research-document {
    background: var(--white);
    padding: 16px 16px 60px 16px;
    border-bottom: 3px solid var(--secondary);
    width: 30.33%;
    margin: 0 8px 16px 8px;
    width: calc(33.33% - 16px);
    position: relative;
}

.research-document .document-icon {
    line-height: 0;
    display: inline-block;
    max-width: 40px;
    margin-bottom: 12px;
}

.research-document .document-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.document-actions .btn-primary {
    color: var(--primary);
    background: #EEEEEE;
    padding: 10px 10px 10px 36px;
    margin-bottom: 0;
}

.document-actions .btn-primary:hover {
    background: var(--medium-gray);
    color: var(--white);
}

.document-actions .btn-primary::before {
    left: 10px;
    right: unset;
    width: 20px;
    height: 20px;
    background: var(--gray);
    color: var(--white);
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}

.document-actions .btn-primary.quick-view-btn::before {
    content: '\f06e';
}

.document-actions .btn-primary.download-btn::before {
    content: '\f019';
}

.document-actions .btn-primary.link-btn::before {
    content: '\f0c1';
}

.document-actions .btn-primary:hover::before {
    transform: translateY(-50%) rotate(0);
}

.faculty-research-content .popup-content {
    max-width: 80%;
    overflow-y: hidden;
    padding: 40px 0 0 0;
    background: none;
    height: 80%;
}

#pdfFrame {
    height: 100%;
    padding: 6px;
    background: var(--white);
}

/* faculty research page end */

/* information section start */

.information-filter-section .filter-btn-wrap li,
.our-team-section .filter-btn-wrap li {
    margin-bottom: 0;
    cursor: pointer;
    padding: 14px 16px;
}

.post .btn-primary {
    padding: 10px 34px 10px 10px;
}

/* information section end */

.not-found-content {
    text-align: center;
}

.not-found-content h2 {
    font-size: 150px;
    font-style: italic;
    line-height: 1;
}

.not-found-content h5 {
    margin-bottom: 4px;
}

.not-found-content p {
    font-size: 18px;
    padding-bottom: 10px;
}

.not-found-content .btn-primary {
    padding: 14px 14px 14px 38px;
}

.not-found-content .btn-primary::before {
    right: unset;
    left: 14px;
}

/* single page start */

.post-thumbnail {
    line-height: 0;
    margin-bottom: 16px;
}

.single .post .entry-title {
    font-size: 28px;
    font-weight: 500;
}

.single .post:hover img {
    transform: none;
}

.site-content .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0;
}

.site-content .row #primary {
    width: 70%;
    padding-right: 16px;
    padding-right: 0;
    width: 100%;
}

.site-content .row #secondary {
    width: 30%;
    padding-left: 16px;
    display: none;
}

#comments {
    display: none;
}

#secondary .widget,
.comments-area {
    background: var(--white);
    padding: 16px;
}

#secondary .widget_search button {
    margin-bottom: 0;
}

.wp-block-search__label {
    margin-bottom: 5px;
    display: inline-block;
}

.post-navigation .nav-links {
    display: grid;
    gap: 40px;
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
}

.nav-links .nav-previous a {
    padding-left: 20px;
}

.nav-links .nav-next {
    text-align: end;
}

.nav-links .nav-next a {
    padding-right: 20px;
}

.nav-links a {
    position: relative;
}

.nav-links .nav-previous a::before,
.nav-links .nav-next a::before {
    position: absolute;
    font-family: "FontAwesome";
    top: 3px;
}

.nav-links .nav-previous a::before {
    content: "\f053";
    left: 0;
}

.nav-links .nav-next a::before {
    content: "\f054";
    right: 0;
}

.post-navigation {
    margin-bottom: 24px;
}

#secondary .widget .wp-block-heading {
    margin: -16px -16px 16px -16px;
    background: var(--secondary);
    color: var(--white);
    font-size: 22px;
    padding: 12px 16px;
}

#secondary .widget .wp-block-group li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

#secondary .widget .wp-block-group:has(li) .wp-block-heading {
    margin-bottom: 2px;
}

#secondary .widget .wp-block-group li {
    margin: 0px -16px 0px -16px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}

.post .author a,
.entry-footer .cat-links a,
.comments-area .logged-in-as a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.entry-footer .cat-links a {
    margin-right: 14px;
}

.post-edit-link {
    background: var(--secondary);
    color: var(--white);
    padding: 6px 12px;
}

.post-edit-link:hover {
    background: var(--sky-blue-shade);
    color: var(--white);
}

.post .author a {
    font-style: italic;
}

.comments-area .required-field-message {
    display: block;
    padding-top: 4px;
}

.author .page-title {
    font-size: 32px;
}

.author .site-content .row #secondary {
    margin-top: 55px;
}

.author .post-edit-link {
    margin-left: 10px;
}

.search .page-title {
    text-transform: math-auto;
    font-size: 34px;
}

/* single page end */

/* calendar page start */

.site-content .row #primary:has(.page-calendar) {
    width: 100%;
    padding-right: 0;
}

.site-content .row #primary:has(.page-calendar) .entry-header {
    padding-bottom: 0;
}

.page-calendar .df-popup-thumb {
    margin: 0 !important;
    width: 100%;
    perspective: 9000px;
}

.page-calendar .df-popup-thumb .df-book-title {
    opacity: 1;
    bottom: 0;
    font-size: 22px;
    color: var(--primary);
}

/* calendar page end */

section.no-results {
    padding: 0;
}

.no-results .search-form {
    display: flex;
    gap: 12px;
}

.no-results .search-form label {
    width: 100%;
}

.no-results .search-form .search-submit {
    margin-bottom: 0;
}

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

.flipbook-content .df-popup-thumb {
    margin: 0 !important;
    width: 33.33%;
}

.flipbook-content .df-popup-thumb .df-book-title {
    opacity: 1;
    bottom: 0;
    font-size: 20px;
    color: var(--primary);
}

.nx-bar {
    background: var(--blue) !important;
}

.nx-bar-content p {
    color: var(--white);
}

.nx-bar-button {
    background: var(--secondary);
}

.nx-bar-button:hover {
    background: var(--sky-blue-shade);
}

body.has-nx-bar {
    padding-top: 0 !important;
}

.nx-bar,
.back-to-top {
    /* display: none !important; */
}