@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Yatra+One&display=swap');

:root {
    --text: #1d1d1d;
    --bg: #ffffff;
    --primary: #008d99;
    --secondary: #4DA1A9;
    --accent: #4DA1A9;
}

:root {
    --bg: #ffffff;
    --surface: #f7fafc;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #475569;
    --line: #e2e8f0;
    --shadow: 0 10px 30px rgba(2, 6, 23, .08);
    --accent: #0ea5a8;
    --accent2: #22c55e;
    --accentSoft: rgba(14,165,168,.10);
}

html,
body,
main#app {
    height: 100%;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 26px;
    font-weight: 400;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
}

.wire-loading {
    opacity: 0.5;
    cursor: no-drop;
}

main#app>div {
    min-height: calc(100vh + 15%);
}

.no-scroll {
    overflow: hidden;
}

svg {
    display: block;
}

a,
button {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 590px) {
    .container-xl {
        max-width: 85vw;
    }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

.h1,
h1 {
    font-size: 60px;
    font-size: 6rem;
    font-weight: 800;
}

.h1 a,
h1 a {
    font-size: inherit;
    font-weight: inherit;
}

.h2,
h2 {
    font-size: 50px;
    font-weight: 700;
}

.h2 a,
h2 a {
    font-size: inherit;
    font-weight: inherit;
}

.h3,
h3 {
    font-size: 40px;
    font-size: 4rem;
    font-weight: 400;
}

.h3 a,
h3 a {
    font-size: inherit;
    font-weight: inherit;
}

.h4,
h4 {
    font-size: 30px;
    font-size: 3rem;
    font-weight: 400;
}

.h4 a,
h4 a {
    font-size: inherit;
    font-weight: inherit;
}

.h5,
h5 {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 400;
}

.h5 a,
h5 a {
    font-size: inherit;
    font-weight: inherit;
    color: #131c33;
}

.h5 a:active,
.h5 a:focus,
.h5 a:hover,
h5 a:active,
h5 a:focus,
h5 a:hover {
    text-decoration: none;
}

h5.title {
    font-family: "Poppins", sans-serif;
    margin-bottom: 8px;
}

h5.title a {
    color: #131c33;
}

h5.title a:active,
h5.title a:focus,
h5.title a:hover {
    text-decoration: none;
}

.h6,
h6 {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 500;
}

.h6 a,
h6 a {
    font-size: inherit;
    font-weight: inherit;
}

ol,
ul {
    font-family: "Poppins", sans-serif;
    font-size: 1pc;
    font-size: 1.6rem;
    color: #3a3b3c;
}

p {
    margin-bottom: 10px;
    color: var(--text);
}

a {
    text-decoration: none;
}

a:focus,
a:hover {
    color: var(--primary);
    text-decoration: none;
}

strong {
    font-weight: 700;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.text-primary {
    color: var(--primary) !important;
}

.form-group textarea.form-control,
textarea,
textarea.form-control {
    line-height: 1.6;
}

.alternate-order-color {
    background-color: #f6f9fd;
}

.section-padding {
    padding: 87pt 0 117px;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    color: #131c33;
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 100%;
    text-transform: capitalize;
}

.display-table {
    display: table;
    width: 100%;
    height: 100%;
}

.display-table-cell {
    display: table-cell;
    /* vertical-align: middle */
    padding-top: 1em;
}

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-brand {
    background-color: var(--primary);
    color: #fff;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1pc;
    font-size: 1.6rem;
    border-radius: 0;
}

.btn-brand:active,
.btn-brand:focus,
.btn-brand:hover {
    background-color: #fff;
    color: #3a3b3c;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    font-size: 13px;
    font-weight: 400;
    padding: 8px 20px;
    display: inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    outline: 0;
    box-shadow: none;
    /* border-radius: 0; */
}

.btn-primary.active,
.btn-primary:active,
.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary {
    background-color: #fff;
    color: #000;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 5px 30px;
    display: inline-block;
    margin-left: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-secondary.active,
.btn-secondary:active,
.btn-secondary:hover {
    background: #fff;
    color: var(--secondary);
}

.btn-auth:first-child {
    margin-left: 0;
}

.btn-brand-dark {
    background-color: var(--secondary);
    border-color: #fff;
}

.btn-brand-rev {
    background-color: #fff;
    color: #3a3b3c;
}

.btn-brand-rev:active,
.btn-brand-rev:focus,
.btn-brand-rev:hover {
    background-color: var(--primary);
    color: #fff;
}

.btn-job {
    background-color: var(--secondary);
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    border-radius: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding: 10px;
}

.btn-job:hover {
    background-color: var(--primary);
    color: #fff;
}

.btn-expired {
    background-color: #e66767;
}

.btn-video-play {
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: var(--primary);
    display: block;
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 55px;
    border-radius: 50%;
}

.btn-video-play i.fa {
    padding-left: 5px;
}

.btn-video-play:hover {
    background-color: var(--primary);
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.btn-loadmore {
    margin-top: 5pc;
    display: inline-block;
    padding: 20px 45px;
}

.btn-loadmore:active,
.btn-loadmore:focus,
.btn-loadmore:hover {
    background-color: var(--secondary);
    color: #fff;
}

.btn-reg {
    background-color: var(--primary);
    color: #fff;
    display: block;
    border-radius: 0;
    font-size: 1pc;
    font-size: 1.6rem;
    line-height: 1;
    padding: 13px 40px;
}

.btn-reg:focus,
.btn-reg:hover {
    background-color: var(--secondary);
    color: #fff;
}

::-moz-selection {
    color: #fff;
    background: var(--primary);
}

::selection {
    color: #fff;
    background: var(--primary);
}

img.powered-logo {
    width: 94px;
    margin-top: -2px;
}

.heading {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.heading.underline {
    position: relative;
}

.heading.underline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}

.description {
    font-size: 15px;
    line-height: 24px;
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f062";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: var(--primary);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    color: var(--secondary);
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primary);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover svg.progress-circle path {
    stroke: var(--secondary);
}

.pagination-wrap {
    margin-top: 70px;
}

.pagination-wrap .pagination {
    display: block;
    text-align: center;
}

.pagination-wrap .pagination li {
    margin-right: 10px;
    margin-bottom: 5px;
    display: inline-block;
}

.pagination-wrap .pagination li .page-link {
    width: 40px;
    height: 40px;
    padding: 0;
    color: #10182f;
    font-size: 17px;
    line-height: inherit;
    transition: all 0.4s ease-in-out;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    box-shadow: none;
}

.pagination-wrap .pagination li .page-link:hover {
    background-color: #fff;
    border-color: #dee2e6;
    color: var(--primary);
}

.pagination-wrap .pagination li:first-child .page-link,
.pagination-wrap .pagination li:last-child .page-link {
    border: 0;
    background: transparent;
}

.event-page-content-wrap .pagination-wrap .pagination li:first-child .page-link,
.event-page-content-wrap .pagination-wrap .pagination li:last-child .page-link {
    font-size: 30px;
}

.pagination-wrap .pagination li:last-child {
    margin-right: 0;
}

.pagination-wrap .pagination li.active .page-link {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.gallery-page-wrap .pagination-wrap nav>div:first-child .pagination {
    margin: auto;
}

.gallery-page-wrap .pagination-wrap nav>div:first-child .pagination li {
    margin-right: 10px;
}

.gallery-page-wrap .pagination-wrap nav>div:first-child .pagination li .page-link {
    width: auto;
    height: auto;
    padding: 0;
    color: #10182f;
    font-size: 17px;
    line-height: inherit;
    transition: all 0.4s ease-in-out;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 0;
    box-shadow: none;
}

.nice-select {
    border-radius: 0;
    background-color: var(--primary);
    color: #fff;
}

.nice-select,
.nice-select:active,
.nice-select:focus,
.nice-select:hover {
    border-color: var(--primary);
}

.nice-select:after {
    border-color: #fff;
}

.nice-select .list {
    border-radius: 0;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
}

.nice-select .list li {
    width: 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.nice-select .list li.selected:hover,
.nice-select .list li:hover {
    background-color: var(--primary);
    color: #fff;
}

.nice-select .current {
    margin-right: 9pt;
}

.table-responsive::-webkit-scrollbar-thumb {
    border-radius: 0;
    border: 0;
    background-color: var(--primary);
}

.table-responsive::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 14px;
    height: 10px;
    background-color: rgba(59, 96, 201, 0.3);
}

.table-responsive::-moz-scrollbar-thumb {
    border-radius: 0;
    border: 0;
    background-color: var(--primary);
}

.table-responsive::-moz-scrollbar {
    -webkit-appearance: none;
    width: 14px;
    height: 10px;
    background-color: rgba(59, 96, 201, 0.3);
}

.brand-search-form form {
    position: relative;
}

.brand-search-form form input {
    font-size: 14px;
    font-size: 1.4rem;
    border: 1px solid #b4b4b4;
    width: 100%;
    border-radius: 5px;
    padding: 9pt 20px;
}

.brand-search-form form input:active,
.brand-search-form form input:focus {
    outline: 0;
    -webkit-box-shadow: none 0 0 #000;
    box-shadow: none 0 0 #000;
    border-color: var(--primary);
}

.brand-search-form form button {
    color: #b4b4b4;
    background-color: transparent;
    border: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
}

.brand-unorderlist li {
    border-bottom: 1px solid #b4b4b4;
    padding: 8px 0 8px 10px;
}

.brand-unorderlist li a {
    text-transform: capitalize;
    color: #3a3b3c;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 500;
    opacity: 0.8;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    position: relative;
}

.brand-unorderlist li a:hover {
    opacity: 1;
    padding-left: 10px;
}

.brand-unorderlist li a:before {
    content: "";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 1pc;
    font-size: 1.6rem;
    line-height: 1;
    margin-right: 10px;
}

.brand-unorderlist li:last-child {
    border-bottom: none;
}

.blockquote,
blockquote {
    border-top: 1px solid #b4b4b4;
    position: relative;
    font-size: 18px;
    font-size: 1.8rem;
    font-style: italic;
    color: #6a78a1;
    padding: 25px 20px 0 70px;
    margin: 0;
    margin-top: 10px;
}

.blockquote:before,
blockquote:before {
    content: "";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: #cfcfcf;
    font-size: 40px;
    font-size: 4rem;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 50%;
    padding-top: 30px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.custom-control-label:before {
    width: 13px;
    height: 13px;
    border: 1px solid #6a78a1;
    background-color: transparent;
    top: 0;
}

.custom-control-label:after {
    left: -1.409rem;
    top: 0.06rem;
}

.img-left {
    float: left;
}

.img-left,
.img-right {
    padding: 0 2rem 1rem 0;
}

.img-right {
    float: right;
}

.typography-page-wrapper img {
    max-width: 500px;
}

.cbx-switcher-area {
    position: fixed;
    top: 35%;
    right: 0;
    max-width: 300px;
    z-index: 8;
}

.cbx-switcher-btn:active,
.cbx-switcher-btn:focus,
.cbx-switcher-btn:hover {
    color: #fff;
}

.cbx-switcher-inner {
    position: relative;
}

.cbx-switcher-btn {
    font-weight: 700;
    font-size: 25px;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
    padding: 5px;
}

.cbx-switcher-body {
    background: hsla(0, 0%, 90%, 0.93);
    padding: 10px;
    width: 260px;
    position: absolute;
    top: 0;
    right: -280px;
}

.cbx-switcher-list li {
    height: 30px;
    width: 30px;
    float: left;
    display: inline-block;
    margin: 0 20px 20px 0;
}

.cbx-switcher-list li a {
    width: 100%;
    height: 100%;
    display: block;
}

.cbx-list-default,
.cbx-switcher-btn {
    background: var(--primary);
}

.cbx-list-yellow {
    background: #e67e22;
}

.cbx-list-red {
    background: #e74c3c;
}

.cbx-list-orange {
    background: #f5740a;
}

.cbx-list-olive {
    background: #559137;
}

.cbx-list-violet {
    background: #93c;
}

.cbx-list-pink {
    background: #ff69b4;
}

.cbx-list-navy {
    background: #3b5998;
}

@-webkit-keyframes a {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes a {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.zoom {
    -webkit-animation-name: a;
    animation-name: a;
}

@-webkit-keyframes b {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes b {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.zoom2 {
    -webkit-animation-name: b;
    animation-name: b;
}

.zoomBounce {
    -webkit-animation-name: c;
    animation-name: c;
}

@-webkit-keyframes c {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    50%,
    to {
        opacity: 1;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes c {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    50%,
    to {
        opacity: 1;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes d {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes d {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes e {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes e {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes f {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes f {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes g {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes g {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes h {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes h {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes i {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes i {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes j {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes j {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.gptFade {
    -webkit-animation-name: d;
    animation-name: d;
}

.gptFadeUp {
    -webkit-animation-name: e;
    animation-name: e;
}

.gptFadeDown {
    -webkit-animation-name: f;
    animation-name: f;
}

.gptFadeLeft {
    -webkit-animation-name: g;
    animation-name: g;
}

.gptFadeRight {
    -webkit-animation-name: h;
    animation-name: h;
}

.gptZoomIn {
    -webkit-animation-name: i;
    animation-name: i;
}

.gptBounceIn {
    -webkit-animation-name: j;
    animation-name: j;
}

@-webkit-keyframes k {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.gpUpX {
    -webkit-animation-name: l;
    animation-name: l;
}

.gpUpSmX {
    -webkit-animation: l 1s both 1s;
    animation: l 1s both 1s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.gpDownX {
    -webkit-animation-name: m;
    animation-name: m;
}

@-webkit-keyframes l {
    0% {
        opacity: 0;
        -webkit-transform: translate(80px, -30px);
        transform: translate(80px, -30px);
    }

    to {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}

@keyframes l {
    0% {
        opacity: 0;
        -webkit-transform: translate(80px, -30px);
        transform: translate(80px, -30px);
    }

    to {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes m {
    0% {
        opacity: 0;
        -webkit-transform: translate(-80px, 80px);
        transform: translate(-80px, 80px);
    }

    to {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}

@keyframes m {
    0% {
        opacity: 0;
        -webkit-transform: translate(-80px, 80px);
        transform: translate(-80px, 80px);
    }

    to {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
}

.site-header {
    z-index: 7;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.our-mission ul {
    font-size: 1rem;
}

@media (max-width: 480px) {
    .site-header {
        padding: 0;
    }
}

.site-header.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.site-header.header-transparent .wrap-main-menu>li>a:before {
    display: none;
}

.site-header .header-topbar {
    background-color: #fff;
    display: flex;
    align-items: center;
    height: 40px;
    border-bottom: 1px solid hsla(0, 0%, 59%, 0.45);
}

@media (max-width: 767px) {
    .site-header .header-topbar {
        display: none;
    }
}

.site-header .header-topbar .preheader-left a {
    font-size: 13px;
    font-family: var(--bs-font-sans-serif);
    font-weight: 400;
    color: #454545;
}

.site-header .header-topbar .preheader-left a:hover {
    color: var(--primary);
}

.site-header .header-topbar .preheader-left a:not(:last-child) {
    margin-right: 35px;
}

.site-header .header-topbar .preheader-right ul {
    display: inline-flex;
}

.site-header .header-topbar .preheader-right ul li {
    padding: 0 10px;
}

.site-header .header-topbar .preheader-right .search-box a {
    display: inline-flex;
    align-items: center;
}

.site-header .header-topbar .preheader-right .search-box {
    position: relative;
    width: 40px;
    height: 100%;
    transition: all 0.5s ease;
    border-left: 1px solid #b6b6b6;
    border-right: 1px solid #b6b6b6;
    padding: 0 10px;
}

.site-header .header-topbar .preheader-right .search-box form {
    margin-right: 22px;
    position: relative;
}

.site-header .header-topbar .preheader-right .search-box .input {
    border: 0;
    background: transparent;
    width: 0%;
    outline: none;
    font-family: sans-serif;
    font-size: 13px;
    color: #454545;
    font-style: italic;
    transition: all 0.3s ease;
    position: relative;
    height: 30px;
    padding-right: 24px;
}

.site-header .header-topbar .preheader-right .search-box form i {
    position: absolute;
    top: 50%;
    right: -4px;
    transform: translateY(-50%);
    font-size: 12px;
    opacity: 0;
    transition: right 0s ease, opacity 0s ease;
}

.site-header .header-topbar .preheader-right .search-box .search-icon {
    color: #000;
    position: absolute;
    right: 12px;
    top: 50%;
    font-size: 13px;
    cursor: pointer;
    transform: translateY(-50%);
}

.site-header .header-topbar .preheader-right .search-box.active {
    width: 250px;
    transition: all 0.5s ease;
}

.site-header .header-topbar .preheader-right .search-box .input.active {
    width: 100%;
    padding-left: 5px;
    transition: all 0.3s 0.5s ease;
    border: 1px solid #a1a1a1;
}

.site-header .header-topbar .preheader-right .search-box.active form i {
    right: 6px;
    opacity: 1;
    transition: right 0.3s ease, opacity 1.3s ease;
    transition-delay: 1s;
}

.site-header .header-topbar .preheader-right .search-box input::placeholder {
    font-size: 13px;
    font-family: var(--bs-font-sans-serif);
    font-weight: 400;
    color: #454545;
}

.site-header .header-topbar .preheader-right a {
    font-size: 13px;
    font-family: var(--bs-font-sans-serif);
    font-weight: 400;
    color: #454545;
}

.site-header .site-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1066px) {
    .site-header .site-logo {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        flex-direction: row;
    }
}

.site-header .site-logo img {
    max-width: 150px;
    height: 100%;
}

@media (max-width: 991px) {
    .site-header .site-logo img {
        max-width: 120px;
    }

    #site-navigation{
        /* padding: 0; */
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
}

.site-header .site-logo .site-title {
    padding: 8px 0;
    margin: 0;
}

.site-header .site-logo a {
    padding: 0;
    display: block;
}

.site-header .site-logo a h3 {
    margin: 0;
    color: #000;
}

.site-header .burger-menu {
    text-align: right;
    display: none;
    cursor: pointer;
}

.site-header .nav-btns {
    display: none;
}

.site-header .burger-menu span {
    background: #2c2c51;
    height: 2px;
    display: block;
    margin-left: auto;
}

.site-header .burger-menu span:not(:last-child) {
    margin-bottom: 5px;
}

.site-header .burger-menu .bar-one {
    width: 20px;
}

.site-header .burger-menu .bar-two {
    width: 25px;
}

.site-header .burger-menu .bar-three {
    width: 15px;
}

.header-position .site-header.header-fixed.showed {
    top: 2pc;
}

@media (max-width: 782px) {
    .header-position .site-header.header-fixed.showed {
        top: 46px;
    }
}

@media (min-width: 1200px) {
    .site-header .menu-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .submenu-align-right .site-header {
        width: auto;
    }
}

.site-header .main-nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.site-header .main-nav {
    position: relative;
}

.site-header .wrap-main-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header .wrap-main-menu>li {
    margin-left: 3rem;
}

@media (max-width: 1066px) {
    .site-header .wrap-main-menu>li {
        margin-left: 15px;
    }
}

.site-header .wrap-main-menu>li:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 5px;
    background: var(--primary);
}

.site-header .wrap-main-menu>li.current-menu-item {
    background-color: #dbe5f3;
}

@media (max-width: 1066px) {
    .site-header .wrap-main-menu>li.current-menu-item {
        background-color: var(--primary);
    }

    .site-header .wrap-main-menu>li.current-menu-item a,
    .site-header .wrap-main-menu>li.current-menu-item i {
        color: #fff;
    }
}

.site-header .wrap-main-menu>li.current-menu-item:before {
    width: 100%;
    -webkit-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.site-header .wrap-main-menu>li>a {
    font-weight: 400;
    font-size: 1rem;
    color: #000;
    position: relative;
    letter-spacing: 0.4px;
}

.site-header .wrap-main-menu>li>a:hover {
    color: var(--primary);
}

.site-header .mobile-res {
    display: none;
}

.site-header .desktop-res {
    display: block;
}

@media (max-width: 1066px) {
    .site-header .wrap-main-menu>li:hover {
        background: #dbe5f3;
    }
}

.site-header .wrap-main-menu>li:nth-last-child(-n + 2).has-submenu .sub-menu {
    left: auto;
    right: 0;
    padding: 0;
    background: #11a55412;
    border-radius: 10px;
    padding: 10px;
    padding-left: 0;
}

.site-header .wrap-main-menu>li:nth-last-child(-n + 2).has-submenu .sub-menu li ul {
    right: 100%;
}

.site-header .wrap-main-menu>li:not(.mega-menu) {
    position: relative;
}

.menu-light .site-header .wrap-main-menu>li>a {
    color: #fff;
}

.site-header .wrap-main-menu li {
    display: inline-block;
}

.site-header .wrap-main-menu li.has-submenu>a:after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: relative;
    top: calc(50% - 11px);
    transform: rotate(0);
    font-size: 9pt;
    margin-left: 10px;
}

.site-header .wrap-main-menu li.has-submenu .sub-menu {
    margin: 0;
    position: absolute;
    top: 115%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    min-width: 200px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(9, 2, 51, 0.1);
    box-shadow: 0 10px 30px 0 rgba(9, 2, 51, 0.1);
    z-index: 10;
    width: 200px;
}

.site-header .wrap-main-menu li.has-submenu .sub-menu li {
    display: block;
    position: relative;
    margin-right: 0;
    line-height: 36px;
}

.site-header .wrap-main-menu li.has-submenu .sub-menu li a {
    font-size: 13px;
    padding: 10px 15px;
    display: block;
    line-height: 1.5;
    color: #000;
    font-weight: 500;
    border-top: 1px solid #eee;
}

@media (max-width: 1066px) {
    .site-header .wrap-main-menu li.has-submenu .sub-menu li a {
        font-size: 16px;
        line-height: 1.2;
        padding: 8px 10px;
        border: 0;
        color: #585858;
    }
}

.site-header .wrap-main-menu li.has-submenu .sub-menu li a:after {
    top: calc(50% - 7px);
    right: 15px;
}

.site-header .wrap-main-menu li.has-submenu .sub-menu li a:hover {
    color: var(--primary);
    background-color: #dbe5f3;
}

.site-header .wrap-main-menu li.has-submenu .sub-menu li ul {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    min-width: 220px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0 5px 10px #14303a15;
    box-shadow: 0 5px 10px #14303a15;
}

.site-header .wrap-main-menu li.has-submenu .sub-menu li.has-submenu:hover ul {
    opacity: 1;
    visibility: visible;
}

.site-header .wrap-main-menu li.has-submenu .sub-menu li.current-menu-item a {
    background-color: var(--primary);
    color: #fff;
}

.site-header .wrap-main-menu li.has-submenu:hover ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.site-header.header-transparent.header-2 .wrap-main-menu>li>a {
    color: #fff;
}

.site-header.submenu-align-right .menu-wrapper {
    width: auto;
}

.site-header.submenu-align-right .wrap-main-menu>li:nth-last-child(-n + 3).has-submenu .sub-menu {
    left: auto;
    right: 0;
}

.site-header.submenu-align-right .wrap-main-menu>li:nth-last-child(-n + 3).has-submenu .sub-menu li ul {
    right: 100%;
}

.site-header.header-fixed.showed {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background: #fff;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    -webkit-animation: k 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
    animation: k 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.site-header.header-fixed.showed .header-topbar {
    display: none;
}

.site-header.header-fixed.showed .site-logo a {
    padding: 0;
}

@media (max-width: 420px) {
    .no-scroll .main-content {
        position: relative;
    }
}

@keyframes k {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.custom-header .header-inner {
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

#site-navigation {
    background: transparent;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

@media (min-width: 1066px) {
    .close-menu {
        display: none;
    }
}

.canvas-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 13px 8px 9pt;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    display: none;
}

.close-menu {
    height: 40px;
    width: 40px;
    background: hsla(0, 0%, 53%, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 43px;
    color: #051441;
    font-size: 15px;
    cursor: pointer;
}

.wrap-main-menu,
.wrap-main-menu ul {
    list-style: none;
}

.mask-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 6;
}

.profile#page-title-area {
    background: linear-gradient(-20deg, #00cdac 0%, #8ddad5 100%);
    height: 400px;
    position: relative;
    z-index: 1;
}

.profile#page-title-area:after {
    display: none;
}

.profile-page-content-wrap .top-section {
    margin-top: 50px;
    position: relative;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 20px #0000001f;
    border-radius: 20px;
    border: 1px solid #dee2e6;
    z-index: 2;
}

/* 

@media (max-width: 579px){

    .profile-page-content-wrap .top-section {
        text-align: center;
    }

    .profile-page-content-wrap .top-section label{
        height: 150px;
        width: 150px;
        padding: 0;
        position: relative;
        margin: auto;
        margin-bottom: 14px;
        display: flex;
    }

    .profile-page-content-wrap .profile-location{
        justify-content: center;
    }

    .profile-page-content-wrap .profile-action ul{
        justify-content: center;
    }
} */

.profile-page-content-wrap .profile-img {
    height: 150px;
    width: 150px;
    min-width: 150px;
    border-radius: 100%;
    background: transparent;
    box-shadow: none;
    padding: 10px;
    margin-right: 20px;
    position: relative;
    margin-bottom: 24px;
    z-index: 2;
}

.profile-page-content-wrap .profile-img::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid var(--primary);
    z-index: 2;
    border-radius: 100%;
}

.profile-page-content-wrap .profile-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    background: transparent;
    border-radius: 100%;
}

.profile-page-content-wrap #profile_pic {
    visibility: hidden;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.profile-page-content-wrap .profile-name {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.profile-page-content-wrap .certificate {
    height: 300px;
    width: 300px;
}

.profile-page-content-wrap .certificate img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    background: transparent;
    /* border-radius: 100%; */
}

.profile-page-content-wrap #certificate {
    visibility: hidden;
    height: 150px;
    position: absolute;
    overflow: overlay;
}

.profile-page-content-wrap .top-section p {
    font-size: 16px;
}

.profile-page-content-wrap .profile-location {
    display: flex;
    align-items: center;
    color: #55687a;
}

.profile-page-content-wrap .profile-location img {
    margin-right: 10px;
}

.profile-page-content-wrap .chapter-name {
    margin-right: 4px;
}

.profile-page-content-wrap .chapter-name,
.profile-page-content-wrap .country-name {
    font-size: 14px;
}

.profile-page-content-wrap .profile-action {
    margin-top: 10px;
}

.profile-page-content-wrap .profile-action ul {
    display: flex;
    align-items: center;
}

.profile-page-content-wrap .profile-action ul li {
    padding-right: 20px;
    margin-right: 20px;
    position: relative;
}

.profile-page-content-wrap .profile-action ul li::before {
    content: "";
    position: absolute;
    right: 0;
    height: 4px;
    width: 4px;
    background: #55687a;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
}

.profile-page-content-wrap .profile-action ul li:last-child::before {
    display: none;
}

.profile-page-content-wrap .profile-action .btn {
    margin: 0;
    padding: 10px 30px;
    border-radius: 10px;
}

.profile-page-content-wrap .profile-action p {
    color: #000;
    margin: 0;
}

.profile-page-content-wrap .card {
    background: #fff;
    box-shadow: 0 0 20px #0000001f;
    border-radius: 20px;
    border: 1px solid #dee2e6;
    padding: 30px;
    height: 100%;
}

.profile-page-content-wrap a.edit {
    color: #55687a;
    font-size: 16px;
}

.profile-page-content-wrap form .form-select,
.profile-page-content-wrap form .form-control {
    height: 40px;
    font-size: 14px;
    padding: 6px 12px;
    color: #000;
    border-radius: 6px;
}

.profile-page-content-wrap form .form-group label {
    margin-bottom: 10px;
    color: #55687a;
    font-weight: 400;
}

.profile-page-content-wrap .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background: transparent;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.profile-page-content-wrap .changePassword .form-group {
    display: inline-flex;
    align-items: center;
}

.profile-page-content-wrap .changePassword label {
    white-space: nowrap;
    margin-right: 10px;
    min-width: 150px;
}

.profile-page-content-wrap .changePassword .oldPassword {
    display: none;
}

.profile-page-content-wrap .changePassword .btn {
    margin-left: auto;
    display: none;
}

.profile-page-content-wrap .divEditReferences .btn {
    margin-left: auto;
    display: none;
}

.profile-page-content-wrap .divEditAbout .btn {
    margin-left: auto;
    display: none;
}

.profile-page-content-wrap .divEditAbout textarea {
    height: auto;
}

.profile-page-content-wrap label.active[for="workingPerson"] {
    color: #000;
}

.profile-page-content-wrap .companyInformationTab {
    padding: 0 30px;
}

.profile-page-content-wrap .hideDetailsNote {
    margin-left: 25px;
    font-size: 13px;
    opacity: 0.8;
    color: #000;
    margin-top: 10px;
}

.profile-page-content-wrap .contribute_text {
    margin-left: 25px;
}

.profile-page-content-wrap .contribute_text textarea {
    border: 0;
    border-bottom: 1px solid #ced4da;
    margin-top: 16px;
    font-size: 14px;
    color: #000;
    width: 90%;
    outline: 0;
}

.profile-page-content-wrap .contribute_text .btn {
    padding: 10px 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.profile-page-content-wrap label[for="contributeValue"] a {
    font-size: 13px;
    margin-left: 10px;
    color: #55687a;
}

.profile-page-content-wrap label[for="contributeValue"] a:hover {
    color: var(--primary);
}

.profile-page-content-wrap .valueInput {
    /* margin: 14px 25px; */
    display: inline-flex;
    align-items: center;
    width: 15%;
}

.profile-page-content-wrap .valueInput .btn {
    margin-left: 20px;
    padding: 6px 20px;
}

.profile-page-content-wrap .ProfileDetailsContent .btnGroup {
    display: none;
}

.profile-page-content-wrap .companyInformationTab .btnGroup {
    display: none;
}

.profile-page-content-wrap .alert {
    font-size: 1rem !important;
}

.public-profile-img img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 1066px) {
    .site-header .burger-menu {
        display: block;
        margin-left: 20px;
    }

    .site-header .canvas-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .site-header .mobile-offcanvas-logo img {
        max-width: 150px;
    }

    .site-header.header-fixed.showed .site-logo a {
        padding: 11px 0;
    }

    .site-header .site-logo a {
        padding: 13px 0;
    }

    .site-header .nav-btns {
        display: flex;
        justify-content: end;
    }

    .site-header .nav-btns a {
        padding: 13px;
    }

    .site-header.header-fixed.showed .site-logo .nav-btns a {
        padding: 11px;
    }

    .site-header .site-logo .nav-btns a {
        padding: 13px;
    }

    .site-header .main-nav-container {
        position: fixed;
        top: 0;
        height: 100vh;
        background: #fff;
        max-width: 95%;
        width: 100%;
        text-align: left;
        overflow-y: auto;
        left: -75pt;
        -webkit-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s;
        opacity: 0;
        visibility: hidden;
        z-index: 7;
        display: block;
        box-shadow: 0 0 10px #00000038;
    }

    .header-position .site-header .main-nav-container {
        top: 2pc;
    }
}

@media (max-width: 1066px) and (max-width: 780px) {
    .header-position .site-header .main-nav-container {
        top: 46px;
    }
}

@media (max-width: 1066px) and (max-width: 420px) {
    .site-header .main-nav-container {
        max-width: 100%;
    }
}

@media (max-width: 1066px) {
    .site-header .main-nav-container.open-menu {
        opacity: 1;
        left: 0;
        visibility: visible;
    }
}

@media (max-width: 1066px) {
    .site-header .main-nav-container li {
        display: block;
        padding: 0 20px;
        margin: 0 !important;
    }

    .site-header .main-nav-container li:before {
        display: none;
    }

    .site-header .main-nav-container li a {
        font-size: 17px;
        color: #131c33;
        position: relative;
        z-index: 1;
        padding: 8px 15px;
        display: block;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        text-transform: capitalize;
        font-weight: 500;
        border-left: 2px solid transparent;
    }

    .site-header .main-nav-container li.has-submenu {
        position: relative;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        width: 100%;
        min-height: 100%;
    }

    .site-header .main-nav-container li.has-submenu.is-open {
        padding-bottom: 14px;
    }

    .site-header .main-nav-container li.has-submenu i {
        position: absolute;
        top: 3px;
        right: 15px;
        display: block;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        z-index: 6;
        font-size: 16px;
    }

    .site-header .main-nav-container li.has-submenu>a {
        position: relative;
        line-height: 1.2 !important;
    }

    .site-header .main-nav-container li.has-submenu>a:after {
        display: none;
    }

    .site-header .main-nav-container li.has-submenu>a.active:after {
        content: "";
    }

    .site-header .main-nav-container li.has-submenu li a {
        font-size: 1pc;
    }

    .site-header .main-nav-container li.has-submenu li.has-submenu .sub-menu {
        position: static;
        width: 100%;
        min-width: 100%;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        opacity: 1;
        visibility: visible;
    }

    .site-header .main-nav-container li.has-submenu .sub-menu,
    .site-header .main-nav-container li.has-submenu li.has-submenu .sub-menu li ul.sub-menu {
        opacity: 1;
        visibility: visible;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    .site-header .main-nav-container li.has-submenu .sub-menu {
        position: static;
        width: 100%;
        min-width: 100%;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

@media (max-width: 1066px) {
    .site-header.header-main .codeboxr-burger-menu {
        margin-left: 0;
    }
}

@media (max-width: 1066px) {
    .header-position .site-header.header-fixed.showed .main-nav-container {
        top: 0;
    }
}

@media (max-width: 1066px) {
    .site-header .main-nav {
        position: relative;
        z-index: 11;
        line-height: 1.2;
    }

    .site-header .main-nav .wrap-main-menu {
        padding-left: 0;
    }

    .site-header .main-nav .sub-menu {
        padding-left: 15px;
        margin-left: 0;
        margin-bottom: 0;
        display: none;
    }

    .site-header .main-nav .sub-menu.active .main-item>.menu-link {
        background: #f8f9fa;
    }

    .site-header .main-nav .sub-menu li a {
        border-top: 0;
    }

    .site-header .main-nav .sub-menu li.active a.active .ti-plus {
        color: var(--primary);
    }

    .site-header .main-nav .nav-item.active-main-item>.menu-link {
        color: var(--primary);
        background: #f8f9fa;
        border-color: var(--primary);
    }

    .site-header .main-nav .sub-menu {
        padding-left: 15px;
        margin-bottom: 0;
    }
}

@media (max-width: 1066px) {
    .site-header .main-nav {
        cursor: default;
        position: relative;
        z-index: 4;
        text-align: left;
        font-weight: 500;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .site-header .main-nav .close-bar,
    .site-header .main-nav a:before,
    .site-header .main-nav.hidden {
        display: none;
    }
}

#slider-area {
    position: relative;
}

#slider-area .single-slide-wrap {
    background-color: #eef8fa;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    /* z-index: 1; */
    padding: 0 0 50px;
    height: 85vh;
    display: flex;
    align-items: end;
}

#slider-area .single-slide-wrap .slider-content h2 {
    font-size: 75pt;
    font-size: 10rem;
    line-height: 1;
    margin: 0;
}

#slider-area .single-slide-wrap .slider-content h3 {
    font-size: 36px;
    line-height: 1;
    margin: 20px 0 30px;
}

#slider-area .single-slide-wrap .slider-content p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
}

#slider-area .single-slide-wrap .slider-content span {
    color: #ffe156;
}

#slider-area .single-slide-wrap .slider-content .slider-btn {
    margin-top: 35px;
}

#slider-area .single-slide-wrap .slider-content .slider-btn a {
    margin-right: 20px;
    font-size: 15px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    padding: 14px 40px;
}

#slider-area .single-slide-wrap .slider-content .slider-btn a:last-child {
    margin-right: 0;
}

#slider-area .single-slide-wrap:after {
    background-color: #000;
    content: "";
    left: 0;
    height: 100%;
    top: 0;
    opacity: 0.7;
    position: absolute;
    width: 100%;
    z-index: -1;
}

#slider-area .owl-dots {
    text-align: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 65px;
}

#slider-area .owl-dots .owl-dot {
    border: 3px solid transparent;
    outline: 0 !important;
}

#slider-area .owl-dots .owl-dot span {
    width: 25px;
    height: 25px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 15px;
    line-height: 100%;
}

#slider-area .owl-dots .owl-dot:last-child span {
    margin-bottom: 0;
}

#slider-area .owl-dots .owl-dot:focus {
    outline: 0 !important;
}

#slider-area .owl-dots .owl-dot.active span {
    border: 3px solid #fff;
    background-color: var(--primary);
    width: 30px;
    height: 30px;
}

#slider-area .slide-bg-1 {
    background-image: url(../images/slider/slider-img-1.jpg);
}

#slider-area .slide-bg-2 {
    background-image: url(../images/slider/slider-img-2.jpg);
}

#slider-area .slide-bg-3 {
    background-image: url(../images/slider/slider-img-3.jpg);
}

#slider-area .social-networks-icon {
    display: none;
    position: absolute;
    left: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

#slider-area .social-networks-icon a {
    border-bottom: 1px solid #fff;
    display: block;
    color: #fff;
    font-size: 30px;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 20px;
    position: relative;
}

#slider-area .social-networks-icon a,
#slider-area .social-networks-icon a i,
#slider-area .social-networks-icon a i.fa {
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#slider-area .social-networks-icon a:hover i.fa-facebook {
    color: #3b5999;
}

#slider-area .social-networks-icon a:hover i.fa-twitter {
    color: #1da1f2;
}

#slider-area .social-networks-icon a:hover i.fa-pinterest {
    color: #cb2028;
}

#slider-area .social-networks-icon a:hover i.fa-youtube {
    color: #cc332d;
}

#slider-area .social-networks-icon a span {
    position: absolute;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    display: block;
    background-color: #fff;
    padding: 2px 8px;
    left: 100%;
    margin-left: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    width: 90pt;
}

#slider-area .social-networks-icon a span:after {
    position: absolute;
    content: "";
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
    left: -5px;
}

#slider-area .social-networks-icon li a:hover span {
    opacity: 1;
    visibility: visible;
    margin-left: 20px;
}

#slider-area .social-networks-icon li:last-child a {
    border-bottom: none;
}

/* #upcoming-area {
    display: none;
    margin-top: -190px;
    position: relative;
    z-index: 1
}

#upcoming-area .upcoming-event-wrap {
    background-color: var(--primary);
    padding: 40px;
    color: #fff;
    position: relative
}

#upcoming-area .upcoming-event-wrap .up-event-titile {
    position: absolute;
    text-align: center;
    margin: 0;
    top: -31px
}

#upcoming-area .upcoming-event-wrap .up-event-titile h3 {
    background-color: #fff;
    font-size: 26px;
    font-size: 2.6rem;
    color: #000;
    text-transform: capitalize;
    font-weight: 700;
    padding: 10px 45px;
    margin: 0;
    -webkit-box-shadow: 14px 0 26px rgba(0, 0, 0, .4);
    box-shadow: 14px 0 26px rgba(0, 0, 0, .4)
}

#upcoming-area .upcoming-event-wrap .upcoming-event-content .owl-nav {
    position: absolute;
    bottom: -40px;
    right: -35px
}

#upcoming-area .upcoming-event-wrap .upcoming-event-content .owl-nav button {
    outline: 0;
    background-color: #fff;
    color: #000;
    width: 45px;
    height: 45px;
    font-size: 20px;
    font-size: 2rem;
    line-height: 3pc;
    text-align: center;
    margin-bottom: 5px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

#upcoming-area .upcoming-event-wrap .upcoming-event-content .owl-nav button:hover {
    background-color: #fff;
    color: var(--secondary);
}

#upcoming-area .upcoming-event-wrap .upcoming-event-content .owl-nav button:focus {
    outline: 0
} */

.upcoming-area {
    padding: 60px 0;
}

.upcoming-area .leftSide p {
    font-size: 14px;
}

.upcoming-area .card,
.upcoming-area .card-body,
.upcoming-area .card-footer {
    padding: 0;
    margin: 0;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    transition: all 1s ease-out;
}

.upcoming-area .card-footer {
    padding: 0 14px;
}

.upcoming-area .card .img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px #0003;
    margin: 10px;
    max-height: 190px;
    min-height: 190px;
}

.upcoming-area .card .img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, #000000bd, transparent);
}

.upcoming-area .card:hover .img::before {
    background: linear-gradient(0deg, #000000d6, transparent);
}

.upcoming-area .card .title {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    padding: 7px 20px;
}

.upcoming-area .card .btn {
    margin-bottom: 20px;
    margin-top: 6px;
}

.upcoming-area .card .event-details {
    font-size: 13px;
    color: #535353;
    letter-spacing: 1px;
}

.upcoming-area .card .event-details i {
    margin-right: 0px;
}

.upcoming-area .card p {
    font-size: 13px;
    line-height: 20px;
    color: #000;
    font-weight: 400;
    text-align: justify;
    letter-spacing: 0.8px;
}

.upcoming-area .owl-theme .owl-dots {
    text-align: left;
    padding-left: 10px;
    padding-top: 20px;
}

@media (max-width: 991px) {
    .upcoming-area .owl-theme .owl-dots {
        text-align: center;
    }
}

.single-upcoming-event .up-event-thumb {
    position: relative;
    min-height: 294px;
}

.single-upcoming-event .up-event-thumb img {
    width: 100%;
    display: block;
}

.single-upcoming-event .up-event-thumb .up-event-date {
    color: #3a3b3c;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    background-color: #fff;
    padding: 9pt;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: -5px;
    border-bottom: 8px solid #000;
}

.single-upcoming-event .up-event-text h3 {
    font-size: 30px;
    font-size: 3rem;
}

.single-upcoming-event .up-event-text p {
    color: #000;
    font-size: 14px;
}

.single-upcoming-event .up-event-text h3 a {
    color: #000;
}

.single-upcoming-event .up-event-text a.btn {
    padding: 12px 36px;
}

.single-upcoming-event .up-event-text a {
    margin-top: 10px;
}

.event-page-content-wrap {
    /* background-color: #ecf1f5 */
    padding-bottom: 50px;
}

.event-page-content-wrap .all-event-list {
    margin-top: -30px;
}

.event-page-content-wrap .all-event-list .single-upcoming-event {
    background-color: #fff;
    color: #000;
    padding: 30px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 0 30px #0000001f;
}

.event-filter-area {
    margin-bottom: 60px;
}

.event-filter-area .form-inline {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.event-filter-area .form-inline select {
    margin-right: 14px;
    padding: 0 30px 0 12px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    font-size: 14px;
}

.event-filter-area .form-inline select {
    appearance: 20px;
}

.event-filter-area .nice-select {
    height: 54px;
    margin-right: 20px;
    text-align: center;
    background-color: #fff;
    color: #6a78a1;
    font-weight: 700;
    font-size: 1pc;
    font-size: 1.6rem;
    line-height: 54px;
    text-transform: uppercase;
}

.event-filter-area .nice-select:after {
    border-color: #6a78a1;
    width: 8px;
    height: 8px;
    margin-top: -7px;
}

.event-filter-area .btn-brand {
    padding: 9pt 25px;
}

.event-filter-area .btn-brand:active,
.event-filter-area .btn-brand:hover {
    background-color: var(--secondary);
    color: #fff;
}

.single-event-page-content {
    background-color: #ecf1f5;
}

.single-event-page-content .single-event-details h2 {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1.3;
    color: #131c33;
    margin-top: 60px;
    margin-bottom: 20px;
}

.single-event-page-content .single-event-details p {
    line-height: 2;
    margin-bottom: 30px;
}

.single-event-page-content .single-event-details .event-schedul h3 {
    background-color: var(--primary);
    color: #fff;
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
    padding: 9pt;
    margin-bottom: 65px;
    margin-top: 90px;
}

.single-event-page-content .single-event-details .event-schedul .event-schedul-accordion .card {
    margin-top: 10px;
}

.single-event-page-content .single-event-details .event-schedul .event-schedul-accordion .card .card-header {
    background-color: #fff;
    padding: 18px 15px 10px;
}

.single-event-page-content .single-event-details .event-schedul .event-schedul-accordion .card .card-header h5 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 700;
    color: #131c33;
    cursor: pointer;
    margin-bottom: 0;
}

.single-event-page-content .single-event-details .event-schedul .event-schedul-accordion .card .card-header h5 .event-time {
    background-color: var(--primary);
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 10px 13px;
    margin-right: 20px;
}

.single-event-page-content .single-event-details .event-schedul .event-schedul-accordion .card .card-header h5 i.fa {
    font-size: 30px;
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    color: #6a78a1;
}

.single-event-page-content .single-event-details .event-schedul .event-schedul-accordion .card .card-header h5[aria-expanded="false"] i.fa-angle-up,
.single-event-page-content .single-event-details .event-schedul .event-schedul-accordion .card .card-header h5[aria-expanded="true"] i.fa-angle-down {
    display: none;
}

.single-event-page-content .single-event-details .event-schedul .event-schedul-accordion .card .card-body {
    background-color: #fff;
    padding: 20px 30px 30px;
}

.single-event-page-content .single-event-details .event-schedul .event-schedul-accordion .card .card-body p {
    margin-bottom: 10px;
}

.single-event-page-content .single-event-details .event-schedul .event-schedul-accordion .card .card-body .speaker-name {
    color: var(--primary);
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 15px;
}

.single-event-page-content .single-event-details .event-schedul .event-schedul-accordion .card .card-body .speaker-name strong {
    text-transform: uppercase;
    font-weight: 700;
    color: #3a3b3c;
    font-style: normal;
}

.single-event-page-content .single-event-details .event-schedul .event-schedul-accordion .card .card-body .speaker-name .speaker-deg {
    color: #6a78a1;
    border-bottom: 2px solid #6a78a1;
    margin-bottom: 0;
}

.single-event-page-content .single-event-details .event-thumb-item {
    min-height: 500px;
    max-height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.single-event-page-content .single-event-details .event-thumb-item:after {
    background-color: #000;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.2;
    z-index: -1;
}

.single-event-page-content .single-event-details .event-thumb-item .event-meta {
    background-color: rgba(0, 0, 0, 0.8);
    border-top: 2px solid var(--secondary);
    color: #fff;
    padding: 15px 30px;
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.single-event-page-content .single-event-details .event-thumb-item .event-meta .event-address {
    color: #ffe156;
    text-decoration: underline;
    margin: 10px 0 5px;
}

.single-event-page-content .single-event-details .event-thumb-item .event-meta h3 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 0;
}

.single-event-page-content .single-event-details .event-thumb-item .event-meta .btn-join {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #fff;
    padding: 8px 30px;
    text-align: right;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.single-event-page-content .single-event-details .event-thumb-item .event-meta .btn-join:active,
.single-event-page-content .single-event-details .event-thumb-item .event-meta .btn-join:hover {
    color: var(--primary);
}

.single-event-page-content .event-thumb-img-1 {
    background-image: url(../images/blog/blog-1.jpg);
}

.single-event-page-content .event-thumbnails {
    position: relative;
}

.single-event-page-content .event-thumbnails .event-countdown {
    padding: 20px 50px;
    text-align: center;
    background-color: var(--primary);
    border: 1px solid #fff;
    border-top: none;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 3;
}

.single-event-page-content .event-thumbnails .event-countdown P {
    position: static;
    color: #fff;
    margin-bottom: 0;
}

.single-event-page-content .event-thumbnails .event-countdown .counter-item:last-child {
    margin-right: 0;
}

.single-event-page-content .event-thumbnails .owl-nav div {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    font-size: 2rem;
    line-height: 50px;
    background-color: var(--primary);
    color: #fff;
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -25px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.single-event-page-content .event-thumbnails .owl-nav div.owl-next {
    left: auto;
    right: 20px;
}

.event-countdown {
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}

.event-countdown .event-countdown-counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.event-countdown .event-countdown-counter .counter-item {
    text-align: center;
    color: #fff;
    margin-right: 15px;
}

.event-countdown .event-countdown-counter .counter-item .counter-label {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.event-countdown .event-countdown-counter .counter-item .single-cont {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 700;
    border: 1px solid #fff;
    background-color: var(--secondary);
    padding: 10px;
    display: inline-block;
}

.event-countdown p {
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 0;
    position: absolute;
    bottom: 0;
    left: 100%;
}

.event-thumbnail-carousel {
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.event-thumbnail-carousel:hover .owl-nav div {
    opacity: 1;
    visibility: visible;
    left: 0;
}

.event-thumbnail-carousel:hover .owl-nav div.owl-next {
    right: 0;
    left: auto;
}

.single-event-details .event-thumbnail-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 2rem;
    line-height: 3.2rem;
    line-height: 50px;
    background-color: var(--primary);
    color: #fff;
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -25px;
    -webkit-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
    visibility: hidden;
}

.single-event-details .event-thumbnail-carousel .owl-nav button.owl-next {
    left: auto;
    right: 20px;
}

.single-event-details .event-thumbnail-carousel .owl-nav button.owl-prev {
    left: 20px;
}

.single-event-details .event-thumbnail-carousel:hover .owl-nav button {
    opacity: 1;
    visibility: visible;
}

.single-event-details .event-thumbnail-carousel:hover .owl-nav button.owl-next {
    right: 0;
}

.single-event-details .event-thumbnail-carousel:hover .owl-nav button.owl-prev {
    left: 0;
}

.cbx-acacordion .accordion-item:first-of-type,
.cbx-acacordion .accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}

.cbx-acacordion .accordion-item:not(:last-child) {
    margin-bottom: 10px;
}

.cbx-acacordion .accordion-header {
    margin: 0 !important;
}

.cbx-acacordion .accordion-button {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 700;
    color: #131c33;
    cursor: pointer;
    margin-bottom: 0;
    border-bottom: 1px solid #0000002d;
    padding: 15px 20px;
}

.cbx-acacordion .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.cbx-acacordion .accordion-button span {
    font-size: 14px;
    font-size: 1.4rem;
    background-color: var(--primary);
    color: #fff;
    padding: 10px 13px;
    margin-right: 20px;
}

.cbx-acacordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: transparent;
}

.cbx-acacordion p {
    margin-bottom: 1em !important;
}

.cbx-acacordion .accordion-body {
    padding: 15px 20px 30px;
}

.cbx-acacordion h4.speaker-name {
    color: var(--primary);
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 15px;
}

.cbx-acacordion h4.speaker-name strong {
    text-transform: uppercase;
    font-weight: 700;
    color: #3a3b3c;
    font-style: normal;
}

.cbx-acacordion h4.speaker-name .speaker-deg {
    color: #6a78a1;
    border-bottom: 2px solid #6a78a1;
    margin-bottom: 0;
}

#page-content-wrap .about-page-content-wrap {
    padding-top: 20px;
    /* background-color: #ecf1f5 */
}

#page-content-wrap .about-page-content-wrap .single-about-text {
    background-color: #fff;
    padding: 50px;
    position: relative;
    font-size: 1pc;
    font-size: 1.6rem;
    margin-top: 150px;
    box-shadow: 0 0 10px #00000026;
    border-radius: 20px;
}

#page-content-wrap .about-page-content-wrap .single-about-text .year {
    font-size: 75pt;
    font-size: 10rem;
    line-height: 1;
    color: #fff;
    text-shadow: 0 4px 9pt rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -75px;
    right: 25px;
}

#page-content-wrap .about-page-content-wrap .single-about-text h2 {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
}

#page-content-wrap .about-page-content-wrap .single-about-text .img-left {
    margin-top: -75pt;
    margin-left: -97px;
}

#page-content-wrap .about-page-content-wrap .single-about-text .img-right {
    margin-top: -75pt;
    margin-right: -118px;
}

#page-content-wrap .about-page-content-wrap .single-about-text:first-child img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

#page-content-wrap .about-page-content-wrap .single-about-text:nth-child(2n) .year {
    right: auto;
    left: 0;
}

#page-content-wrap .about-page-content-wrap .single-about-text:first-child {
    margin-top: 0;
}

#page-content-wrap .our-honorable-commitee .honorable-committee-list .single-committee-member {
    /* margin-top: 50px; */
}

.single-committee-member h3 {
    background: transparent;
    padding: 0;
    padding-top: 10px;
    color: #000;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.single-committee-member h3 .committee-deg {
    font-size: 14px;
    width: 100%;
    display: block;
    font-weight: 300;
    margin-top: 10px;
    letter-spacing: 0.6px;
}

#page-content-wrap .about-page-area-title {
    margin-bottom: 50px;
}

#page-content-wrap .about-page-area-title h2 {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1;
}

.about-area {
    padding: 60px 0;
}

.about-area .about-content-wrap {
    /* background: #f6f9fd; */
    padding: 50px;
    border-radius: 30px;
}

.about-area .about-content-wrap .leftSide {
    /* width: 300px; */
    width: 100%;
}

.about-area .about-content-wrap .leftSide img {
    width: 100%;
    border-radius: 10px;
}

.about-area .des {
    font-size: 14px;
    margin-bottom: 30px;
    color: #6b6b6b;
}

.about-us-wrapper {
    font-size: 1rem !important;
}

.about-us-wrapper ol,
.about-us-wrapper ul {
    font-size: 1rem !important;
}

#gallery-area {
    padding: 60px 0;
}

#gallery-area .viewAll {
    display: block;
    font-size: 16px;
    color: #000;
    text-align: right;
    background-image: linear-gradient(transparent calc(100% - 0.07em),
            currentColor 0.07em);
    background-repeat: no-repeat;
    background-size: 100% calc(100% - 0.07em);
    text-decoration: none;
    width: fit-content;
    margin-left: auto;
}

#gallery-area .viewAll:hover {
    color: var(--secondary);
    -webkit-animation: linkRedraws 0.75s cubic-bezier(0.645, 0.045, 0.355, 1) both;
    animation: linkRedraws 0.75s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}

.gallery-menu {
    margin-bottom: 60px;
    margin-top: 20px;
}

.gallery-menu ul.nav {
    border-bottom: 1px solid #ccc;
}

.gallery-menu span,
.gallery-menu .nav-pills .nav-link {
    background-color: transparent;
    cursor: pointer;
    color: #717171;
    font-weight: 400;
    text-transform: capitalize;
    display: inline-block;
    padding: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-right: 25px;
    font-size: 15px;
    border-radius: 0;
    border-bottom: 3px solid transparent;
}

.gallery-menu span:hover,
.gallery-menu .nav-pills .nav-link:hover {
    background-color: transparent;
    color: #000;
}

.gallery-menu span:last-child,
.gallery-menu .nav-pills .nav-link:last-child {
    margin-right: 0;
}

.gallery-menu span.active,
.gallery-menu .nav-pills .nav-link.active {
    background-color: transparent;
    color: #000;
    border-bottom: 3px solid var(--primary);
}

.gallery-menu a {
    background-color: #dbe5f3;
    cursor: pointer;
    color: #131c33;
    font-weight: 500;
    text-transform: capitalize;
    display: inline-block;
    padding: 15px 35px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-right: 25px;
}

.gallery-menu a:hover {
    background-color: var(--primary);
    color: #fff;
}

.gallery-menu a:last-child {
    margin-right: 0;
}

.gallery-menu a.active {
    background-color: var(--primary);
    color: #fff;
}

.gallery-gird {
    margin-top: -30px;
}

.album-gallery-item .gallery-gird {
    margin-top: -30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: start;
}

.gallery-gird .single-gallery-item {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 15px 15px 10px 0;
    height: 180px !important;
    width: 180px;
    min-width: 180px;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.gallery-gird .single-gallery-item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.gallery-gird .single-directory-item {
    width: 200px;
    height: 100px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.gallery-gird .single-directory-item img {
    width: 100%;
    object-fit: contain;
}

.gallery-gird .single-directory-item span {
    position: relative;
    top: -2em;
    padding: 0 10px;
    font-size: 14px;
    color: #000 !important;
}

.gallery-gird .single-directory-item span a {
    color: #000;
    text-decoration: underline;
}

@media (max-width: 579px) {
    .gallery-gird .single-gallery-item {
        width: 100%;
        height: auto !important;
    }

    .gallery-gird .single-gallery-item img {
        height: auto;
    }
}

.gallery-gird .single-gallery-item .gallery-hvr-wrap {
    background-color: var(--primary);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: #fff;
}

.gallery-gird .single-gallery-item .gallery-hvr-wrap,
.gallery-gird .single-gallery-item .gallery-hvr-wrap .gallery-hvr-text {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.gallery-gird .single-gallery-item .gallery-hvr-wrap .gallery-hvr-text {
    left: 25px;
    bottom: -55px;
}

.gallery-gird .single-gallery-item .gallery-hvr-wrap .gallery-hvr-text h4 {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
}

.gallery-gird .single-gallery-item .gallery-hvr-wrap .gallery-hvr-text .gallery-event-date {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
}

.gallery-gird .single-gallery-item .gallery-hvr-wrap .btn-zoom {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.gallery-gird .single-gallery-item .gallery-hvr-wrap .btn-zoom img {
    /* margin-top: -25px */
}

.gallery-gird .single-gallery-item:hover .gallery-hvr-wrap {
    opacity: 0.9;
    visibility: visible;
}

.gallery-gird .single-gallery-item:hover .gallery-hvr-text {
    /* opacity: 1;
    visibility: visible;
    bottom: 15px */
}

.gallery-gird .single-gallery-item:hover .btn-zoom {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.gallery-gird .video .btn-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.gallery-page-wrap {
    background-color: #fff;
    margin-bottom: 60px;
    min-height: 90vh;
}

/* .gallery-page-wrap .gallery-menu {
    border-bottom: 5px solid var(--primary)
} */

.gallery-page-wrap .single-album-wraper {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.gallery-page-wrap .single-album-wraper:last-child {
    border-bottom: 0;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.gallery-page-wrap .single-album-wraper .album-heading {
    position: relative;
    margin-bottom: 70px;
}

.gallery-page-wrap .single-album-wraper .album-heading h2 {
    font-size: 30px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
}

.gallery-page-wrap .single-album-wraper .album-heading h2:after {
    background-color: var(--secondary);
    content: "";
    left: 0;
    height: 2px;
    position: absolute;
    width: calc(100% - 25px);
    bottom: 0;
    display: none;
}

.gallery-page-wrap .single-album-wraper .album-heading .viewAll {
    display: block;
    font-size: 16px;
    color: #000;
    text-align: right;
    background-image: linear-gradient(transparent calc(100% - 0.07em),
            currentColor 0.07em);
    background-repeat: no-repeat;
    background-size: 100% calc(100% - 0.07em);
    text-decoration: none;
    width: fit-content;
    /* margin-left: auto; */
    margin-top: 30px;
}

.gallery-page-wrap .single-album-wraper .album-heading .viewAll:hover {
    color: var(--secondary);
    -webkit-animation: linkRedraws 0.75s cubic-bezier(0.645, 0.045, 0.355, 1) both;
    animation: linkRedraws 0.75s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}

.gallery-page-wrap .single-album-wraper .album-heading h2 a {
    color: #131c33;
}

.gallery-page-wrap .single-album-wraper .album-heading p {
    font-size: 14px;
}

.lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 10;
}

.lightbox-content {
    position: relative;
    width: 100vw;
    height: 100vh;
    padding: 30vh 30vw;
    margin: 0% auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    border-radius: 7px;
    box-shadow: 0 0 3px 0 rgba(225, 225, 225, 0.25);
    width: 100%;
    height: auto;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 7px;
    top: 45%;
    transform: translateY(-50%);
    cursor: pointer;
    height: 60px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 50px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-content .close {
    height: 30px;
    width: 30px;
    position: absolute;
    top: 24px;
    right: 50px;
    cursor: pointer;
    opacity: 0.6;
}

.lightbox-content .close:hover {
    opacity: 1;
}

.lightbox-content .close:before,
.lightbox-content .close:after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 33px;
    width: 2px;
    background-color: #fff;
}

.lightbox-content .close:before {
    transform: rotate(45deg);
}

.lightbox-content .close:after {
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .gallery-container {
        width: 100%;
    }

    .gallery-item {
        flex-basis: 49.8%;
        margin-bottom: 3px;
    }

    .lightbox-content {
        width: 80%;
        height: 100%;
        margin: 0% auto;
        padding: 0 14px;
    }

    .lightbox-content .close {
        right: 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        top: 50%;
    }

    .lightbox-prev {
        left: 14px;
    }

    .lightbox-next {
        right: 14px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex-basis: 100%;
        margin-bottom: 1px;
    }

    .lightbox-content {
        width: 90%;
        margin: 10% auto;
    }
}

#job-opportunity .job-opportunity-wrapper {
    margin-top: -30px;
    min-height: 50vh;
}

.single-job-opportunity {
    border: 1px solid #dbe5f3;
    padding: 30px 0;
    margin-top: 30px;
    color: #3a3b3c;
    font-size: 14px;
    /* font-size: 1.4rem; */
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.single-job-opportunity .job-opportunity-text {
    padding: 0 20px;
}

.single-job-opportunity .job-opportunity-text .job-oppor-logo {
    height: 5pc;
}

.single-job-opportunity .job-opportunity-text .job-oppor-logo img {
    max-width: 5pc;
    max-height: 5pc;
    margin: auto;
}

.single-job-opportunity .job-opportunity-text h3 {
    margin: 20px 0 25px;
}

.single-job-opportunity .job-opportunity-text h3 a {
    font-size: 20px;
    line-height: 1.3;
    display: block;
    font-weight: 700;
    color: #131c33;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.single-job-opportunity .job-opportunity-text h3 a:hover {
    color: var(--primary);
}

.single-job-opportunity .job-opportunity-text p {
    font-size: 14px;
}

.single-job-opportunity .btn-job {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 40px;
    font-size: 14px;
}

.single-job-opportunity:hover {
    -webkit-box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.15) 0 0 #000;
    box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.15) 0 0 #000;
}

#funfact-area {
    background-color: var(--secondary);
    padding: 75pt 0;
    color: #fff;
    background-image: url(../images/des.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#funfact-area .single-funfact-wrap {
    text-align: center;
}

#funfact-area .single-funfact-wrap .funfact-icon {
    width: 40px;
    height: auto;
    margin: auto;
    display: none;
}

#funfact-area .single-funfact-wrap .funfact-icon img {
    max-width: 100%;
}

#funfact-area .single-funfact-wrap .funfact-info {}

#funfact-area .single-funfact-wrap .funfact-info h5 {
    font-weight: 600;
    font-size: 60px;
    margin-bottom: 10px;
}

#funfact-area .single-funfact-wrap .funfact-info p {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}

#responsibility-area {
    background: transparent;
    padding: 60px 0;
}

#responsibility-area .card {
    border: 0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 30px #0000000f;
    margin: 50px 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#responsibility-area .card:hover {
    box-shadow: 0 0 30px #0000001e;
}

#responsibility-area .single-responsibility {
    color: #3a3b3c;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

#responsibility-area .single-responsibility img {
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    width: 60px;
    margin: auto;
    opacity: 0.7;
}

#responsibility-area .single-responsibility h4 {
    font-size: 15px;
    margin: 0;
    margin-top: 14px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease-in-out;
}

#responsibility-area .single-responsibility:hover h4 {
    color: var(--primary);
}

#responsibility-area .single-responsibility p {
    font-size: 13px;
    color: #5d5d5d;
    line-height: 20px;
    margin-bottom: 0px;
    transition: all 0.3s ease-in-out;
}

#responsibility-area .single-responsibility:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

#responsibility-area .single-responsibility:hover img {
    -webkit-box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.15) 0 0 #000;
    box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.15) 0 0 #000;
}

.career-page-wrapper .career-page-topbg {
    background-color: var(--primary);
    padding: 20px 0;
}

.career-page-wrapper .career-page-topbg img {
    width: 80%;
    margin: auto;
    display: block;
}

.career-page-wrapper .career-page-content-wrap {
    background-color: #ecf1f5;
}

.career-page-wrapper .career-page-content-wrap .job-opportunity-wrapper {
    margin-top: -30px;
}

.career-page-wrapper .career-page-content-wrap .single-job-opportunity {
    background-color: #fff;
}

.career-page-wrapper .career-page-content-wrap .event-filter-area {
    margin-bottom: 75pt;
}

.committee-content-wrap .committee-member-list {
    /* margin-top: -5pc */
    margin-bottom: 50px;
}

.committee-content-wrap .committee-member-list h3 {
    font-size: 20px;
    text-align: center;
}

.committee-content-wrap .committee-member-list .heading {
    font-size: 30px;
    color: #000;
}

.committee-content-wrap .committee-member-list .sub-heading {
    font-size: 30px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
    color: #131c33;
    margin-bottom: 30px;
}

.single-committee-member {
    padding: 0px;
    border-bottom: 1px solid #e4e4e48e;
    padding-bottom: 20px;
    text-align: center;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.single-committee-member .commitee-thumb {
    background-color: transparent;
    border-radius: 20px;
    overflow: hidden;
}

.single-committee-member h3,
.single-committee-member img {
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.single-committee-member img {
    border-radius: 20px;
    height: 150px;
    width: 150px;
    object-fit: cover;
}

.single-committee-member:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.single-committee-member:hover img {
    -webkit-box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.15) 0 0 #000;
    box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.15) 0 0 #000;
    opacity: 0.7;
}

#page-title-area {
    background-image: url(../images/page-title.jpg);
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 70px 0;
    z-index: 1;
    height: 40vh;
    display: flex;
    align-items: end;
    text-align: end;
    overflow: hidden;
    display: none;
}

#page-title-area:after {
    background-color: #11a554;
    content: "";
    height: 68%;
    right: 0;
    bottom: -20px;
    width: 45vw;
    position: absolute;
    opacity: 0.9;
    z-index: -1;
}

#page-title-area .page-title-content {
    color: #fff;
}

#page-title-area .page-title-content h1 {
    font-size: 44px;
}

#page-title-area .page-title-content p {
    color: #fff;
    font-size: 16px;
}

#page-title-area .page-title-content .btn-brand {
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding: 10px 40px;
    margin-top: 15px;
    font-size: 16px;
    border-radius: 6px;
}

.bottomSide {
    position: relative;
    padding: 30px 0;
    z-index: 2;
    overflow: hidden;
    /* height: 30vh; */
    padding-top: 80px;
}

.article-page.bottomSide {
    padding: 30px 0 30px;
}

@media (max-width: 579px) {
    .bottomSide {
        height: auto;
    }
}

.bottomSide .page-title-content {
    border-bottom: 1px solid #dfdfdf;
    /* padding-bottom: 40px; */
}

.article-page.bottomSide .page-title-content {
    border-bottom: 0;
}

.bottomSide>* {
    position: relative;
}

.bottomSide h1 {
    font-size: 20px;
    /* margin-bottom: 19px; */
    color: #002d14;
    color: #212529;
    width: fit-content;
    position: relative;
    /* text-decoration: underline; */
    /* text-underline-offset: 6px; */
    /* text-decoration-color: #11a554; */
    /* text-decoration-color: #0dbab1;
    text-decoration-thickness: 4px; */
}

.bottomSide p {
    font-size: 16px;
    color: #000;
}

.bottomSide select {
    width: fit-content;
    min-width: 150px;
    margin-left: auto;
}

#blog-area {
    background-color: #ecf1f5;
}

.single-blog-post {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.single-blog-post .blog-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 0;
}

.single-blog-post .blog-thumb .blog-thumbnail {
    min-height: 210px;
    position: relative;
}

.single-blog-post .blog-thumb .blog-thumbnail img {
    width: 100%;
    min-height: 210px;
    -o-object-fit: cover;
    object-fit: cover;
}

.single-blog-post .blog-thumb .blog-thumbnail:after {
    background: -o-linear-gradient(bottom,
            #000 0%,
            transparent 50%,
            transparent 100%);
    background: -webkit-gradient(linear,
            left bottom,
            left top,
            from(black),
            color-stop(50%, rgba(0, 0, 0, 0)),
            to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg,
            #000 0%,
            transparent 50%,
            transparent 100%);
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    bottom: 0;
    width: 100%;
}

.single-blog-post .blog-thumb .blog-meta {
    position: absolute;
    left: 0;
    bottom: 15px;
    width: 100%;
    padding: 0 30px;
}

.single-blog-post .blog-thumb .blog-meta .author .author-pic {
    display: inline-block;
    vertical-align: middle;
}

.single-blog-post .blog-thumb .blog-meta .author .author-pic img {
    width: 35px;
    height: 35px;
    border-radius: 3px;
}

.single-blog-post .blog-thumb .blog-meta .author .author-info {
    display: inline-block;
    vertical-align: middle;
    font-size: 9pt;
    font-size: 1.2rem;
    line-height: 1;
    margin-left: 5px;
}

.single-blog-post .blog-thumb .blog-meta .author .author-info h5 {
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 3px;
}

.single-blog-post .blog-thumb .blog-meta .author .author-info p {
    margin: 0;
    color: #fff;
}

.single-blog-post .blog-thumb .blog-meta .like-comm {
    display: inline-block;
    vertical-align: middle;
    margin-top: 5px;
}

.single-blog-post .blog-thumb .blog-meta .like-comm a {
    color: #fff;
    font-size: 9pt;
    font-size: 1.2rem;
    margin-right: 5px;
}

.single-blog-post .blog-thumb .blog-meta .like-comm a i.fa {
    margin-right: 4px;
}

.single-blog-post .blog-thumb .blog-meta a {
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.single-blog-post .blog-thumb .blog-meta a:hover {
    color: var(--primary);
}

.single-blog-post .blog-content {
    background-color: #fff;
    padding: 30px;
    color: #3a3b3c;
}

.single-blog-post .blog-content h3 {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 25px;
}

.single-blog-post .blog-content h3 a {
    color: #131c33;
}

.single-blog-post .blog-content .btn-brand {
    padding: 6px 22px;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 10px;
}

.single-blog-post .blog-content .btn-brand:hover {
    background-color: var(--secondary);
    color: #fff;
}

.single-blog-post .blog-thumb-1 {
    background-image: url(../images/blog/blog-1.jpg);
}

.single-blog-post .blog-thumb-2 {
    background-image: url(../images/blog/blog-2.jpg);
}

.single-blog-post .blog-thumb-3 {
    background-image: url(../images/blog/blog-3.jpg);
}

.single-blog-post:hover {
    -webkit-box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.15) 0 0 #000;
    box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.15) 0 0 #000;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.single-blog-thumb img {
    width: 100%;
}

.blog-page-content-wrap {
    background-color: #ecf1f5;
}

.single-blog-content-wrap {
    background-color: #fff;
}

.single-blog-content-wrap .single-blog-thumb {
    padding: 30px;
}

.single-blog-content-wrap .single-blog-meta {
    border-bottom: 1px solid #b4b4b4;
    padding: 30px;
    padding-top: 0;
}

.single-blog-content-wrap .single-blog-meta h2 {
    font-size: 24px;
    /* font-size: 2.5rem; */
    line-height: 1.3;
    font-weight: 500;
    color: #000;
}

.single-blog-content-wrap .single-blog-meta .posting-info {
    color: #6a78a1;
    font-size: 16px;
    /* font-size: 1.8rem; */
    line-height: 1;
    font-style: italic;
    margin-top: 10px;
}

.single-blog-content-wrap .single-blog-meta .posting-info a {
    color: #6a78a1;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.single-blog-content-wrap .single-blog-meta .posting-info a:hover {
    color: var(--primary);
}

.single-blog-content-wrap .blog-details {
    line-height: 1.8;
    padding: 30px;
}

.single-blog-content-wrap .blog-details p {
    color: #3a3b3c;
    font-size: 1.2rem;
}

.single-blog-content-wrap .blog-details h5 {
    font-size: 1pc;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.single-blog-content-wrap .blog-details img {
    margin-bottom: 25px;
}

.single-blog-content-wrap .post-share {
    background-color: var(--primary);
    padding: 10px 30px;
    display: none;
}

.single-blog-content-wrap .post-share .shareonsocial {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-blog-content-wrap .post-share .shareonsocial a {
    width: 30px;
    height: 30px;
    background-color: #fff;
    margin-right: 10px;
    text-align: center;
    line-height: 35px;
    color: var(--primary);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-blog-content-wrap .post-share .shareonsocial a:hover {
    background-color: var(--primary);
    color: #fff;
}

.single-blog-content-wrap .post-share .shareonsocial span {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    /* font-size: 2rem; */
    line-height: 1;
    margin-right: 20px;
}

.single-blog-content-wrap .post-share .post-like-comm {
    font-size: 20px;
    /* font-size: 1.4rem; */
    line-height: 1;
    margin: 0px 0;
}

.single-blog-content-wrap .post-share .post-like-comm a {
    color: #fff;
    margin-left: 15px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.single-blog-content-wrap .post-share .post-like-comm a i {
    margin-right: 4px;
}

.sidebar-area-wrap {
    margin-bottom: 50px;
}

.sidebar-area-wrap .single-sidebar-wrap {
    background-color: #fff;
    padding: 30px 45px;
    margin-bottom: 30px;
}

.sidebar-area-wrap .single-sidebar-wrap .sidebar-title {
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 25px;
}

.sidebar-area-wrap .single-sidebar-wrap:last-child {
    margin-bottom: 0;
}

.sidebar-area-wrap .single-sidebar-wrap .sidebar-body .tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.sidebar-area-wrap .single-sidebar-wrap .sidebar-body .tags a {
    color: #3a3b3c;
    border: 1px solid #b4b4b4;
    padding: 10px 9pt;
    margin-right: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    font-size: 1.4rem;
    text-transform: capitalize;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    line-height: 1;
}

.sidebar-area-wrap .single-sidebar-wrap .sidebar-body .tags .active,
.sidebar-area-wrap .single-sidebar-wrap .sidebar-body .tags a:focus,
.sidebar-area-wrap .single-sidebar-wrap .sidebar-body .tags a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #000;
}

#scholership-promo {
    background: url(../images/scholership.jpg);
    background: #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 0;
    position: relative;
    overflow: hidden;
}

#scholership-promo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000000bd;
    display: none;
}

#scholership-promo>* {
    position: relative;
}

#scholership-promo .rightSide,
#scholership-promo .rightBottom,
#scholership-promo .leftBottom {
    position: relative;
}

#scholership-promo .rightBottom,
#scholership-promo .leftBottom {
    height: 100px;
}

#scholership-promo .rightSide .background-wrap,
#scholership-promo .rightBottom .background-wrap,
#scholership-promo .leftBottom .background-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    transition: border-color 300ms, border-width 100ms;
    -moz-transition: border-color 300ms, border-width 100ms;
    -o-transition: border-color 300ms, border-width 100ms;
    margin-right: -500px;
}

#scholership-promo .leftBottom .background-wrap {
    margin-right: 0;
    margin-left: -500px;
}

#scholership-promo .rightSide .background-wrap div {
    width: 100%;
    height: 100%;
    background: linear-gradient(#1b2945db, #1b2945fa),
        url(../images/scholership.jpg);
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
}

#scholership-promo .rightBottom .background-wrap div {
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    padding-left: 50px;
}

#scholership-promo .leftBottom .background-wrap div {
    width: 100%;
    height: 100%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    padding-left: 50px;
}

#scholership-promo .rightBottom .background-wrap a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

#scholership-promo .rightBottom .background-wrap a i {
    font-size: 40px;
    margin-right: 10px;
}

#scholership-promo .rightSide .quickLink {
    position: relative;
    z-index: 2;
    padding: 100px 50px;
}

#scholership-promo .rightSide .quickLink h4 {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: none;
    color: #ffffff;
}

#scholership-promo .rightSide .quickLink h4 i {
    margin-right: 10px;
}

#scholership-promo .rightSide .quickLink ul li {
    padding: 24px 0;
    border-bottom: 1px solid #ffffff2e;
    letter-spacing: 0.6px;
}

#scholership-promo .rightSide .quickLink ul li a {
    font-size: 17px;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

#scholership-promo .rightSide .quickLink ul li a:hover {
    color: #fff;
}

#scholership-promo .leftBottom .owl-theme {
    height: 100%;
    display: flex;
    align-items: center;
}

#scholership-promo .leftBottom .notification {
    display: flex;
    font-size: 14px;
    margin-right: 70px;
}

#scholership-promo .leftBottom .owl-theme .owl-nav {
    margin-top: 0;
    width: 100px;
    position: absolute;
    right: 0;
    top: 4px;
}

#scholership-promo .leftBottom .owl-theme .owl-nav button {
    opacity: 0.7;
    background: transparent;
    border: 0;
}

#scholership-promo .leftBottom .owl-theme .owl-nav button:hover {
    opacity: 1;
    background: transparent;
    border: 0;
    color: #000;
}

#scholership-promo .leftBottom .notification i {
    color: #163269;
    font-size: 24px;
    margin-right: 20px;
}

#scholership-promo .leftBottom .notification .content .date {
    color: #a3a3a3;
}

#scholership-promo .leftBottom .notification .content span {
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#scholership-promo .scholership-promo-text {
    font-size: 20px;
}

#scholership-promo .scholership-promo-text h2 {
    margin-bottom: 25px;
    font-size: 40px;
    color: #000;
}

#scholership-promo .scholership-promo-text h2 span {
    color: var(--primary);
}

#scholership-promo .scholership-promo-text p {
    color: #000;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
}

#scholership-promo .scholership-promo-text .btn-brand {
    margin-top: 35px;
}

#scholership-promo .scholership-promo-text .btn-brand:hover {
    background-color: var(--secondary);
    color: #fff;
}

span.required {
    color: #e74c3c;
    font-size: 14px;
}

.contact-page-wrap {
    padding-bottom: 100px;
    background-image: url(../images/contact.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 40%;
}

.contact-content-inner {
    /* -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .1) */
}

.contact-content-inner .map-area-wrap {
    height: 100%;
}

.contact-content-inner .map-area-wrap iframe {
    border: none;
    width: 100%;
    height: 100%;
}

.contact-content-inner .contact-form-wrap {
    padding: 0;
}

.contact-content-inner .contact-form-wrap h3 {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.contact-content-inner .contact-form-wrap .form-group label.error {
    color: #e74c3c;
}

.contact-content-inner .contact-form-wrap .custom-checkbox {
    margin-bottom: 15px;
}

.contact-content-inner .contact-form-wrap .custom-checkbox .custom-control-label {
    line-height: 1;
    padding-left: 4px;
    font-size: 15px;
}

.contact-content-inner .contact-form-wrap .alert {
    margin-bottom: 0;
    margin-top: 8px;
}

.contact-content-inner .contact-form-wrap .alert .close {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    font-size: 2rem;
    border-radius: 0;
}

.contact-content-inner .contact-form-wrap .form-control {
    border: 0;
    border-bottom: 1px solid #ced4da;
}

.contact-content-inner .contact-form-wrap .form-control::placeholder {
    font-size: 14px;
}

.contact-content-inner .contact-form-wrap .form-group {
    margin-bottom: 24px;
}

.register-page-inner {
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.1) 0 0 #000;
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.1) 0 0 #000;
    padding: 60px 0 50px;
}

.register-form-content .signin-area-wrap h4 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1;
    color: #131c33;
    margin-bottom: 30px;
}

.register-form-content .signin-area-wrap .sign-form input {
    width: 100%;
    display: block;
    text-align: center;
    background-color: #ecf1f5;
    border: 1px solid var(--secondary);
    color: #6a78a1;
    padding: 9pt 15px;
    margin-bottom: 15px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.register-form-content .signin-area-wrap .sign-form input:focus {
    outline: 0;
}

.register-form-content .signin-area-wrap .sign-form .btn-reg {
    width: 100%;
    padding: 15px 20px;
    margin-top: 20px;
}

.register-form-content .register-form-wrap {
    position: relative;
}

.register-form-content .register-form-wrap h3 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
    color: #131c33;
    margin-bottom: 35px;
}

.register-form-content .register-form-wrap .file-input {
    margin: 20px 0 25px;
}

.register-form-content .register-form-wrap .file-input .custom-file {
    background-color: #dbe5f3;
    font-size: 9pt;
    font-size: 1.2rem;
    line-height: 1;
    padding: 15px 25px;
    border: 1px solid #6a78a1;
    width: auto;
    cursor: pointer;
}

.register-form-content .register-form-wrap .file-input .custom-file i.fa {
    margin-right: 5px;
}

.register-form-content .register-form-wrap:before {
    background-color: var(--primary);
    content: "";
    width: 3px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -55px;
}

.register-form-content .register-form-wrap .gender {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    color: #000;
    font-weight: 500;
}

.form-group .form-control,
.form-group label {
    font-size: 16px;
    line-height: 1;
}

.form-group .form-control {
    padding: 10px 15px;
    border-radius: 0;
    border-radius: 6px;
}

.form-group .form-control.error {
    border-color: #e74c3c;
}

.form-group .form-control:focus,
.form-group .form-select:focus {
    outline: 0;
    border-color: var(--primary);
    -webkit-box-shadow: none;
    box-shadow: 0 0 0 0.25rem rgb(17 165 84 / 25%);
    box-shadow: none;
}

.form-group .custom-checkbox {
    margin-left: 30px;
    margin-top: 10px;
}

.form-group .custom-checkbox label {
    padding-left: 5px;
    font-size: 9pt;
    font-size: 1.2rem;
    line-height: 1.2;
    color: #3a3b3c;
}

.directory-page-content-warp .directory-text-wrap h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 70px;
    color: #000;
}

.directory-page-content-warp .directory-text-wrap h2 strong {
    color: var(--primary);
}

.directory-page-content-warp .directory-text-wrap .table-search-area form {
    line-height: 1;
}

.directory-page-content-warp .directory-text-wrap .table-search-area form input {
    border: 1px solid var(--primary);
    padding: 15px 20px 1pc;
    color: #3a3b3c;
}

.directory-page-content-warp .directory-text-wrap .table-search-area form .form-control {
    font-size: 14px;
    padding: 14px 20px;
}

.directory-page-content-warp .directory-text-wrap .table-search-area form input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
}

.directory-page-content-warp .directory-text-wrap .table-search-area form .btn-primary {
    font-size: 14px;
    padding: 14px 40px;
    border-radius: 10px;
}

.directory-page-content-warp .directory-text-wrap .table-search-area form .nice-select {
    padding: 0;
    height: 52px;
    line-height: 50px;
    width: 95px;
    text-align: center !important;
    float: none;
    margin-left: -4px;
}

.directory-page-content-warp .directory-text-wrap .table-search-area form .nice-select .list {
    right: 0;
    left: auto;
}

.directory-page-content-warp .directory-text-wrap .table-search-area .nice-select,
.directory-page-content-warp .directory-text-wrap .table-search-area button,
.directory-page-content-warp .directory-text-wrap .table-search-area input {
    display: inline-block;
    vertical-align: middle;
}

.directory-page-content-warp .directory-text-wrap .table-search-area .btn-brand {
    padding: 17px 30px;
    font-weight: 500;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 10px;
}

.directory-page-content-warp .directory-text-wrap .table-search-area .btn-brand:focus,
.directory-page-content-warp .directory-text-wrap .table-search-area .btn-brand:hover {
    background-color: var(--secondary);
    color: #fff;
}

.directory-page-content-warp .directory-text-wrap .show-memeber {
    color: #131c33;
    margin-top: 0px;
    font-size: 16px;
}

.directory-page-content-warp .directory-text-wrap .show-memeber span {
    color: var(--primary);
}

.directory-page-content-warp .pagination-wrap {
    margin-top: 30px;
}

.directory-table .dataTables_wrapper table td,
.directory-table .dataTables_wrapper table td a {
    font-size: 14px !important;
}

.directory-table .dataTables_wrapper {
    margin-bottom: 12px;
}

.directory-table .dataTables_wrapper .dataTables_filter {
    margin-bottom: 10px;
}

.directory-table .dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 2px 12px;
}

.directory-table {
    margin-top: 50px;
}

.directory-table label,
.directory-table .dataTables_info,
.directory-table .paginate_button {
    font-size: 15px;
}

.directory-table .table thead {
    background-color: var(--primary);
    color: #fff;
}

.directory-table .table thead th {
    padding: 15px 20px;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 700;
}

.directory-table .table tbody tr td {
    background-color: #ecf1f5;
    color: #3a3b3c;
    font-weight: 500;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
    vertical-align: middle;
    padding: 17px 10px;
}

.directory-table .table tbody tr td img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    margin-right: 10px;
    border: 2px solid var(--primary);
}

.directory-table .table tbody tr td:nth-child(2n) {
    background-color: #fff;
}

.directory-table .table tbody tr td:first-child {
    width: 35%;
    text-align: left;
}

.people-to-say {
    background-color: #ecf1f5;
}

.people-to-say .about-page-area-title {
    margin-bottom: 50px;
}

.people-to-say .single-testimonial-wrap {
    background-color: #fff;
    position: relative;
    padding: 0 20px 65px;
    margin: 97px 0 40px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
}

.people-to-say .single-testimonial-wrap .people-thumb {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: -65px;
}

.people-to-say .single-testimonial-wrap .people-thumb img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border: 4px solid transparent;
}

.people-to-say .single-testimonial-wrap h4 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 700;
    background-color: var(--primary);
    color: #fff;
    padding: 20px 10px;
    margin-bottom: 0;
    position: absolute;
    right: 0;
    bottom: -40px;
    width: calc(100% - 30px);
}

.people-to-say .single-testimonial-wrap h4 .people-deg {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    opacity: 0.8;
    letter-spacing: 0.7px;
    display: block;
    margin-top: 10px;
}

.people-to-say .single-testimonial-wrap .quote-icon {
    display: inline-block;
    margin: 90px 0 15px;
}

.people-to-say .single-testimonial-wrap .quote-icon:after {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    content: "";
    width: 68px;
    display: block;
    height: 52px;
    text-align: center;
}

.people-to-say .single-testimonial-wrap:hover {
    -webkit-box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.15) 0 0 #000;
    box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.15) 0 0 #000;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.people-to-say .single-testimonial-wrap:hover .people-thumb img {
    border-color: var(--primary);
}

.error-page {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.error-page .animate-element {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.error-page .animate-element li {
    position: absolute;
}

.error-page .animate-element li:nth-child(1) {
    top: 37%;
    left: 11%;
}

.error-page .animate-element li:nth-child(2) {
    bottom: 29%;
    left: 11%;
}

.error-page .animate-element li:nth-child(3) {
    top: 25%;
    right: 75pt;
}

.error-page .animate-element li:nth-child(4) {
    bottom: 33%;
    right: 12%;
}

@media (max-width: 991px) {
    .error-page .animate-element li:nth-child(1) {
        top: 18%;
        left: 2%;
    }

    .error-page .animate-element li:nth-child(2) {
        bottom: 10%;
        left: 3%;
    }

    .error-page .animate-element li:nth-child(3) {
        top: 16%;
        right: 25px;
    }

    .error-page .animate-element li:nth-child(4) {
        bottom: 5%;
        right: 2%;
    }
}

.error-image {
    margin-bottom: 40px;
    position: relative;
}

@media (min-width: 992px) {
    .error-page-content-wrapper {
        margin-top: 70px;
    }
}

.error-content .error-title {
    font-size: 40px;
    line-height: 54px;
    color: #2c2c51;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .error-content .error-title {
        font-size: 30px;
        line-height: 44px;
    }

    .error-content .error-title br {
        display: none;
    }
}

.error-content .subtitle {
    font-size: 20px;
    color: #6b717c;
    margin-bottom: 54px;
}

.error-content .button-container .gp-btn {
    padding: 11px 27px;
}

.error-content .button-container .btn-grey {
    margin-left: 20px;
}

@media (max-width: 420px) {
    .error-content .button-container .btn-grey {
        margin-left: 0;
        margin-top: 20px;
    }
}

:root {
    --footer-text-light-color: #fff;
    --footer-text-dark-color: #000;
}

footer {
    background: #f2f2f2;
    position: relative;
    padding: 50px 0 30px;
    overflow: hidden;
}

footer img.pattern1 {
    position: absolute;
    top: -100px;
    right: -100px;
    height: 200px;
    width: 200px;
    opacity: .6;
}

footer:before {
    /* content: ""; */
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    background-image: url(../images/pattern.png);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.04;
}

footer>* {
    position: relative;
    z-index: 2;
}

footer .top-footer h4 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 40px;
}

footer .top-footer h6 {
    margin: 0;
    font-size: 20px;
    margin-left: 10px;
    font-weight: 500;
    color: #fff;
}

footer .top-footer .icon {
    background: #eee;
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

footer .top-footer .icon1 {
    background: #c7c0f3;
}

footer .top-footer .icon1 i {
    color: #7d6de3;
}

footer .top-footer .icon2 {
    background: #fee6bf;
}

footer .top-footer .icon2 i {
    color: #fcbb4e;
}

footer .top-footer .icon3 {
    background: #b1e3d7;
}

footer .top-footer .icon3 i {
    color: #42bb9d;
}

footer .top-footer p {
    margin-top: 10px;
    color: #ffffffd3;
    font-size: 15px;
    font-weight: 400;
}

footer .middle-footer {
    margin: 40px 0 60px;
}

footer .middle-footer .card-box {
    background: #005b7f;
    background: #008d99;
    padding: 20px 40px;
    border-radius: 10px;
    color: var(--footer-text-dark-color);
}

footer .middle-footer .card-box h4 {
    font-size: 28px;
    color: var(--footer-text-light-color);
    font-weight: 600;
}

footer .middle-footer .card-box p {
    margin: 0;
    font-size: 18px;
    color: var(--footer-text-light-color);
}

footer .middle-footer .card-box a {
    background: var(--footer-text-light-color);
    color: var(--footer-text-dark-color);
}

footer .bottom-footer img {
    width: 140px;
}

footer .bottom-footer p {
    font-size: 14px;
    color: var(--footer-text-dark-color);
}

footer .bottom-footer .f-heading {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--footer-text-dark-color);
    font-weight: 500;
    margin-bottom: 10px;
}

footer .bottom-footer ul li,
footer .bottom-footer ul li a {
    font-size: 14px;
    color: var(--footer-text-dark-color);
}

footer .bottom-footer .contact-details li {
    position: relative;
    padding-left: 20px;
    padding-right: 40px;
}

footer .bottom-footer .contact-details li i {
    position: absolute;
    top: 8px;
    left: 0;
}

footer .bottom-footer .social-media ul {
    display: flex;
    align-items: center;
}

footer .bottom-footer .social-media ul li {
    margin-right: 10px;
    background: #008d99;
    color: #fff;
    height: 30px;
    width: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-right: 10px;
    background: #008d99;
}

footer .bottom-footer .social-media ul li:last-child {
    margin-right: 0;
}

footer .bottom-footer .social-media ul li i {
    color: #fff;
    font-size: 14px;
}

footer .bottom-footer .social-media ul li svg path {
    fill: #fff;
}

footer .powered-by {
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid #ddd;
}

footer .powered-by p {
    color: var(--footer-text-dark-color);
}

footer .powered-by p a{
    color: var(--primary);
}

footer .powered-by .backToTop {
    color: var(--footer-text-dark-color);
}

/* #footer-area a,
#footer-area p,
#footer-area .widget-title {
    color: #000;
    font-weight: 300;
    font-size: 14px;
}

#footer-area .footer-widget {
    padding: 70px 0 50px;
}

#footer-area .footer-widget .single-widget-wrap .widget-title {
    font-weight: 500;
    margin-bottom: 15px;
}

#footer-area .footer-widget .single-widget-wrap .footer-about p {
    margin-top: 20px;
}

#footer-area .footer-widget .single-widget-wrap .footer-about a {
    display: inline-block;
    font-weight: 500;
}

#footer-area .footer-widget .single-widget-wrap .footer-about a:nth-child(1n) {
    margin-right: 15px;
}

#footer-area .footer-widget .single-widget-wrap .newsletter-form {
    margin: 20px 0;
}

#footer-area .footer-widget .single-widget-wrap .newsletter-form form {
    position: relative;
}

#footer-area .footer-widget .single-widget-wrap .newsletter-form form input {
    background-color: #fff;
    border: 1px solid transparent;
    color: #000;
    padding: 9pt 15px;
    padding-right: 70px;
    font-size: 14px;
    font-size: 1.4rem;
    width: 100%;
}

#footer-area .footer-widget .single-widget-wrap .newsletter-form form input::-webkit-input-placeholder {
    color: #000;
}

#footer-area .footer-widget .single-widget-wrap .newsletter-form form input::placeholder {
    color: #000;
}

#footer-area .footer-widget .single-widget-wrap .newsletter-form form input:focus {
    outline: 0;
    border-color: var(--primary);
    -webkit-box-shadow: none;
    box-shadow: none;
}

#footer-area .footer-widget .single-widget-wrap .newsletter-form form input.error {
    border-color: #e74c3c !important;
}

#footer-area .footer-widget .single-widget-wrap .newsletter-form form button {
    background-color: var(--primary);
    color: #fff;
    border: none;
    padding: 13px 20px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#footer-area .footer-widget .single-widget-wrap .newsletter-form form button:hover {
    background-color: var(--secondary);
}

#footer-area .footer-widget .single-widget-wrap .newsletter-form #cbx-subscribe-form-error #subscribe-error {
    color: #e74c3c;
}

#footer-area .footer-list li a {
    display: inline-block;
    margin-bottom: 6px;
    position: relative;
    font-size: 13.5px;
}

#footer-area .footer-list li a:before {
    content: "";
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    font-size: 10px;
    margin-right: 7px;
    position: relative;
    top: -1px;
}

#footer-area .footer-list li a:hover {
    color: var(--secondary);
    transition: all 0.3s ease;
}

#footer-area .footer-list li a:hover:before {
    color: var(--primary);
    transition: all 0.3s ease;
}

#footer-area .footer-widget .footer-about .img-fluid {
    width: 150px;
}

#footer-area .footer-contact {
    padding: 100px 0 50px;
    text-align: center;
}

#footer-area .footer-contact .row {
    align-items: end;
    justify-content: center;
}

#footer-area .footer-contact p {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    color: #4a4a4a;
}

#footer-area .footer-contact h4 {
    font-size: 40px;
    font-weight: 400;
    margin: 0;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    #footer-area .footer-contact h4 {
        position: relative;
        width: 80%;
        margin: auto;
    }
}

#footer-area .footer-contact h4 svg {
    height: 40px;
    width: 40px;
    margin-left: 18px;
}

@media (max-width: 991px) {
    #footer-area .footer-contact h4 svg {
        position: absolute;
        bottom: 0;
        left: 77%;
    }
}

#footer-area .footer-contact .btn-primary {
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 12px 30px;
    margin: 0;
    transition: all 0.3s ease-in-out;
    margin-top: 30px;
    color: #fff;
}

#footer-area .footer-middle {
    padding: 50px 0;
    border-top: 1px solid hsla(0, 0%, 59%, 0.45);
}

#footer-area .footer-middle .footer-social-icons {
    margin-bottom: 20px;
}

#footer-area .footer-middle .footer-social-icons a {
    margin-right: 10px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #000;
}

#footer-area .footer-middle .footer-social-icons a i.fab {
    width: 35px;
    height: 35px;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    box-shadow: 2px 1px 2px #00000021;
}

#footer-area .footer-middle .footer-social-icons a:hover {
    color: var(--secondary);
}

#footer-area .footer-middle p {
    font-size: 15px;
    color: #000;
    font-weight: 300;
}

#footer-area .footer-middle a {
    font-size: 15px;
    color: #000;
    font-weight: 300;
}

#footer-area .footer-middle a.text-underline {
    background-image: linear-gradient(transparent calc(100% - 0.07em),
            currentColor 0.07em);
    background-repeat: no-repeat;
    background-size: 100% calc(100% - 0.07em);
    text-decoration: none;
}

#footer-area .footer-middle a.text-underline:hover {
    -webkit-animation: linkRedraw 0.75s cubic-bezier(0.645, 0.045, 0.355, 1) both;
    animation: linkRedraw 0.75s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}

@keyframes linkRedraw {
    0% {
        background-size: 0 calc(100% - 0.07em);
    }

    100% {
        background-size: 100% calc(100% - 0.07em);
    }
}

#footer-area .backToTop {
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: end;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

#footer-area .backToTop:hover {
    color: var(--secondary);
}

#footer-area .backToTop i {
    font-size: 14px;
    border: 1px solid;
    padding: 14px;
    margin-right: 10px;
}

#footer-area .footer-bottoms {
    padding: 20px 0 10px;
    border-top: 1px solid hsla(0, 0%, 59%, .45);
}

#footer-area .footer-bottoms ul {
    display: inline-block;
}

#footer-area .footer-bottoms ul li {
    display: inline-block;
    margin-right: 14px;
}

#footer-area .footer-bottoms ul li:last-child {
    margin-right: 0;
}

#footer-area .footer-bottoms p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #454545;
    text-align: right;
}

#footer-area .footer-bottoms p.refer {
    text-align: center;
}

@media (max-width: 579px) {
    #footer-area .footer-bottoms p.refer {
        text-align: left;
        margin-top: 12px;
    }

    #footer-area .footer-bottoms ul {
        margin-bottom: 14px;
    }
} */

.footer-organization {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.scroll-top {
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: var(--secondary);
    color: #fff;
    display: none;
    font-size: 20px;
    font-size: 2rem;
    line-height: 50px;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 20px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 3;
}

.scroll-top:focus,
.scroll-top:hover {
    background-color: var(--primary);
    color: #fff;
}

.wrap-index>div:nth-child(odd) {
    background: #eef8fa !important;
}

.wrap-index>div:nth-child(even) {
    background: white !important;
}

.wrap-index .section1 {
    position: relative;
}

.wrap-index .section1 .home_login-form {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    z-index: 2;
    width: 350px;
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    font-size: 14px;
}

.wrap-index .section1 .home_login-form h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
}

.wrap-index .section1 .home_login-form a {
    color: var(--secondary);
}

.wrap-index .section1 .home_login-form a.forgot {
    font-size: 13px;
}

.wrap-index .section1 .home_login-form a:hover {
    color: var(--primary);
}

.wrap-index .section1 .home_login-form .form-control {
    height: 40px;
    padding: 10px;
    font-size: 14px;
}

.wrap-index .section1 .home_login-form .btn-primary {
    width: 100%;
    border-radius: 4px;
}

.wrap-index .section1 .banner {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: #eef8fa;
    padding: 150px 0;
    position: relative;
    height: 85vh;
    min-height: 500px
}

.wrap-index .section1 .banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background: #00000054; */
}

.wrap-index .section1 .banner>* {
    position: relative;
}

.wrap-index .section1 .banner h4 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 14px;
}

.wrap-index .section1 .banner p {
    font-size: 16px;
    color: #fff;
    opacity: 0.9;
    line-height: 30px;
    margin-bottom: 40px;
}

.wrap-index .section1 .banner a {
    background: #fff;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    color: #000;
}

.wrap-index .section1 .banner a:hover {
    color: var(--primary);
}

.wrap-index .section1 .button1 {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.wrap-index .section1 .button1 a {
    font-size: 17px;
}

.wrap-index .section2 {
    padding: 60px 0;
}

.wrap-index .section2 .rightSide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.wrap-index .section2 .heading {
    margin-bottom: 40px;
}

.wrap-index .section2 .description {
    margin-bottom: 60px;
}

.home-sections {
    padding: 60px 0;
}

.home-section-about {
    /* background: #f6f9fd; */
}

.home-sections .rightSide {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
}

.home-sections .heading {
    color: #008d99;
    text-align: center;
}

.home-sections .bold-description {
    /* font-size:20px; */
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    ;
    /* line-height: 1.5; */
}


.welcome-events {
    /* background: #f6f9fd; */
}

.videos .viewAll {
    display: block;
    font-size: 16px;
    color: #000;
    text-align: right;
    background-image: linear-gradient(transparent calc(100% - 0.07em),
            currentColor 0.07em);
    background-repeat: no-repeat;
    background-size: 100% calc(100% - 0.07em);
    text-decoration: none;
    width: fit-content;
    margin-left: auto;
}

.videos .viewAll:hover {
    color: var(--secondary);
    -webkit-animation: linkRedraws 0.75s cubic-bezier(0.645, 0.045, 0.355, 1) both;
    animation: linkRedraws 0.75s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}

.videos .heading {
    margin-bottom: 40px;
}

.jobPosting {
    padding: 60px 0;
    /* background: #f6f9fd; */
}

.jobPosting .heading {
    margin-bottom: 40px;
}

.jobPosting .searchFilters,
.jobPosting .dropdownFilter {
    margin-bottom: 20px;
}

.jobPosting .searchFilters {
    position: relative;
    width: 340px;
    height: 40px;
    border-radius: 100px;
    border: 0;
    padding: 10px 30px 10px 14px;
    box-shadow: 2px 2px 40px #00000014;
    background: #fff;
}

.jobPosting .searchFilters .fa-search {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 13px;
}

.jobPosting .searchFilters .bootstrap-tagsinput {
    width: 100%;
    height: 100%;
    border-radius: 0px;
    border: 0;
    padding: 0;
    overflow: hidden;
    overflow-x: scroll;
    display: flex;
    box-shadow: none;
}

.jobPosting .searchFilters .bootstrap-tagsinput::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: transparent;
}

.jobPosting .searchFilters .bootstrap-tagsinput::-webkit-scrollbar {
    width: 0;
    height: 0;
    background-color: transparent;
}

.jobPosting .searchFilters .bootstrap-tagsinput::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: transparent;
}

.jobPosting .searchFilters .bootstrap-tagsinput .tag {
    margin-right: 5px;
    color: #fff;
    background: #3cd685;
    font-size: 12px;
    padding: 2px 4px 2px 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.jobPosting .searchFilters .placeholder {
    background: transparent;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 13px;
    line-height: 17px;
    z-index: 0;
}

.jobPosting .searchFilters input {
    border: 0;
    box-shadow: none;
    outline: 0;
    font-size: 13px;
}

.jobPosting .searchFilters .bootstrap-tagsinput:has(span)+input+.placeholder,
.jobPosting .searchFilters .bootstrap-tagsinput.focus+input+.placeholder {
    display: none;
}

.jobPosting .searchFilters .bootstrap-tagsinput input {
    position: relative;
    z-index: 1;
}

.jobPosting .dropdownFilter select {
    width: 200px;
    margin-left: auto;
    height: 40px;
    border-radius: 100px;
    background-color: transparent;
    padding: 8px 20px;
    font-size: 13px;
    box-shadow: none;
    outline: 0;
    border: 1px solid #ced4da;
}

.jobPosting .jobs-details .card {
    background: #fff;
    border: 0;
    padding: 18px 24px 24px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 0 10px #0000000a;
    transition: all 0.3s ease-in-out;
    height: 250px;
}

.jobPosting .jobs-details .card:hover {
    /* background: #3cd685; */
    background: var(--secondary);
}

.jobPosting .jobs-details .card-header,
.jobPosting .jobs-details .card-body,
.jobPosting .jobs-details .card-footer {
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.jobPosting .jobs-details .status {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.jobPosting .jobs-details .status i {
    margin-right: 10px;
}

.jobPosting .jobs-details .status i.active {
    color: #3cd685;
    transition: all 0.3s ease-in-out;
}

.jobPosting .jobs-details .card:hover .status i.active {
    color: #fff;
}

.jobPosting .jobs-details .status i.expired {
    color: #fe6f6c;
}

.jobPosting .jobs-details .status span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 300;
    color: #717171;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.jobPosting .jobs-details .card:hover .status span {
    color: #fff;
}

.jobPosting p {
    font-size: 14px;
}

.jobPosting .job-title {
    font-size: 20px;
    margin: 0;
    margin-top: 14px;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease-in-out;
}

.jobPosting .card:hover .job-title {
    color: #fff;
}

.jobPosting .job-dep {
    font-size: 14px;
    color: #474747;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.jobPosting .card:hover .job-dep {
    color: #fff;
}

.jobPosting .job-des {
    font-size: 14px;
    color: #5d5d5d;
    line-height: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}

.jobPosting .card:hover .job-des {
    color: #fff;
}

.jobPosting .card .btn {
    transition: all 0.3s ease-in-out;
}

.jobPosting .card:hover .btn {
    background: #fff;
    color: #3cd685;
    border-color: #fff;
}

.jobPosting .btn-outline {
    border-radius: 100px;
    background-color: transparent;
    padding: 10px 30px;
    font-size: 14px;
    box-shadow: none;
    outline: 0;
    border: 1px solid #ced4da;
    color: #000;
    transition: all 0.3s ease-in-out;
    margin-top: 14px;
}

.jobPosting .btn-outline:hover {
    /* border-color: #3cd685; */
    color: #3cd685;
}

.wrap-index .events {
    padding: 60px 0;
    background: #f8f6ef;
}

.wrap-index .events .heading {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    text-transform: uppercase;
    font-size: 100px;
    font-weight: 900;
    background: linear-gradient(219deg,
            #1868cb 19%,
            transparent 19%,
            transparent 20%,
            #2a9a9f 20%,
            #2a9a9f 39%,
            transparent 39%,
            transparent 40%,
            #f1b211 40%,
            #f1b211 59%,
            transparent 59%,
            transparent 60%,
            #e83611 60%,
            #e83611 79%,
            transparent 79%,
            transparent 80%,
            #f9002f 80%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: sticky;
    top: 120px;
}

.wrap-index .events .card {
    border: 0;
    background: transparent;
    box-shadow: none;
    margin: 0;
}

.wrap-index .events .card .card-element {
    height: 650px;
    border-radius: 16px;
    overflow: hidden;
}

.wrap-index .events .card {
    position: sticky;
    top: var(--sticky-top);
    z-index: var(--index);
}

.wrap-index .events .card .event-details {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100%;
    width: 100%;
    padding: 40px 50px;
    color: #fff;
}

.wrap-index .events .card .event-details::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000054;
}

.wrap-index .events .card .event-details>* {
    position: relative;
}

.wrap-index .events .card .event-details .e-title {
    font-size: 24px;
    text-shadow: 0 0 white;
    font-weight: 600;
}

.wrap-index .events .card .event-details .e-details {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 0 white;
}

.wrap-index .events .card .event-details .e-details>div {
    margin-right: 14px;
}

.wrap-index .events .card .event-details .e-location {
    font-size: 16px;
    margin-top: 6px;
    text-shadow: 0 0 white;
}

.wrap-index .events .card .event-details .e-link a {
    color: #fff;
}

.blogsAndNews {
    padding: 60px 0 60px;
}

.blogsAndNews .nav-tabs {
    position: relative;
    border: none;
    background-color: #c6ffe1;
    border-radius: 6px;
    width: 200px;
    /* margin: auto; */
    flex-wrap: nowrap;
    /* margin-bottom: 60px; */
}

.blogsAndNews .nav-tabs li a {
    position: relative;
    font-size: 16px;
    border: none;
    color: #333;
    z-index: 2;
    transition: all 0.1s linear;
}

.blogsAndNews .nav-tabs a:hover {
    background-color: transparent;
    border: none;
    color: var(--secondary);
}

.blogsAndNews .nav-tabs a.active:hover {
    color: #fff;
}

.blogsAndNews .slider {
    display: inline-block;
    width: 30px;
    height: 100%;
    border-radius: 3px;
    background-color: #11a554;
    position: absolute;
    z-index: 1200;
    bottom: 0;
    transition: all 0.4s linear;
    z-index: 1;
}

.blogsAndNews .nav-tabs .active {
    background-color: transparent;
    border: none;
    color: #fff;
    transition: all 0.3s linear;
}

.blogsAndNews .viewAll {
    /* margin-top: -34px; */
    display: block;
    font-size: 16px;
    color: #000;
    text-align: right;
    background-image: linear-gradient(transparent calc(100% - 0.07em),
            currentColor 0.07em);
    background-repeat: no-repeat;
    background-size: 100% calc(100% - 0.07em);
    text-decoration: none;
    width: fit-content;
    margin-left: auto;
}

.blogsAndNews .viewAll:hover {
    color: var(--secondary);
    -webkit-animation: linkRedraws 0.75s cubic-bezier(0.645, 0.045, 0.355, 1) both;
    animation: linkRedraws 0.75s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}

.blogsAndNews .viewAll i {
    margin-left: 4px;
}

@keyframes linkRedraws {
    0% {
        background-size: 0 calc(100% - 0.07em);
    }

    100% {
        background-size: 100% calc(100% - 0.07em);
    }
}

.blogsAndNews .card {
    background: transparent;
    box-shadow: var(--shadow);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);

}

.blogsAndNews .card-header,
.blogsAndNews .card-body,
.blogsAndNews .card-footer {
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.blogsAndNews .card-footer {
    padding: 14px 20px;
}

.blogsAndNews .card-footer .category-name {
    font-size: 16px;
    color: #4d5d6e;
    margin-bottom: 8px;
}

.blogsAndNews .card-footer hr {
    background: #8f8f8f;
}

.blogsAndNews .author-details {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-right: 14px;
}

.blogsAndNews .author-details::before {
    content: '';
    height: 6px;
    width: 6px;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    background: #ccc;
    border-radius: 100%;
}

.blogsAndNews .profile {
    height: 26px;
    min-width: 26px;
    width: 26px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 10px;
}

.blogsAndNews .profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogsAndNews .author-name {
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.blogsAndNews .img img {
    border-radius: 10px;
    height: 250px;
    object-fit: cover;

    border-radius: 0;
}

.blogsAndNews .date {
    background: #d1f2fd;
    font-size: 12px;
    width: fit-content;
    padding: 2px 10px;
    margin: 10px 0 20px;
    font-weight: 400;
    letter-spacing: 1px;
    border-radius: 4px;
    color: #656565;
}

.blogsAndNews .title {
    /* font-size: 16px;
    color: #08272e;
    line-height: 22px;
    margin-bottom: 4px;
    padding-right: 20px; */

    text-overflow: clip;
    background-blend-mode: overlay;
    font-size: 18px;
    color: #08272e;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    text-wrap-mode: nowrap;

}

.blogsAndNews .link {
    font-size: 14px;
    color: #000;
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
}

.blogsAndNews .link:hover {
    opacity: 0.8;
}

.blogsAndNews .link i {
    margin-left: 4px;
}

.advertise-banner {
    padding-bottom: 100px;
    /* background-color: #f6f9fd; */
}

.advertise-banner .banner.big {
    height: 300px;
    /* background: url("/public/includes/images/pattern1.png"); */
    background-repeat: repeat;
    /* border: 2px solid #73ece9; */
    border-radius: 10px;
    background-size: contain;
    padding: 5px;
}

.advertise-banner .banner.small {
    height: 200px;
    /* background: url("/public/includes/images/pattern1.png"); */
    background-repeat: repeat;
    /* border: 2px solid #73ece9; */
    border-radius: 10px;
    background-size: contain;
    padding: 5px;
}

.advertise-banner .banner img {
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.advertise-banner .heading {
    margin: 50px 0 50px 0;
}

@media only screen and (min-width: 320px) and (max-width: 575px) {

    .btn-brand,
    .btn-brand-rev {
        padding: 8px 15px;
        font-size: 14px;
        font-size: 1.4rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .pagination-wrap {
        margin-top: 50px;
    }

    .pagination-wrap .pagination li {
        margin-right: 0;
    }

    .pagination-wrap .pagination li .page-link {
        width: 30px;
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }

    .img-left,
    .img-right {
        float: none;
        padding: 0;
    }

    .typography-page-wrapper img {
        max-width: 100%;
    }

    .offcanvas-added #menucontent.navbar-collapse.collapse.show {
        display: none !important;
    }

    #header-area .preheader-area {
        padding: 15px 0;
    }

    #header-area .preheader-area .preheader-left {
        padding: 0;
    }

    #header-area .preheader-area .preheader-left a {
        display: block;
        margin-right: 0;
        font-size: 9pt;
        font-size: 1.2rem;
    }

    #header-area .preheader-area .preheader-left a strong {
        font-size: 9pt;
        font-size: 1.2rem;
    }

    #header-area .preheader-area .preheader-right {
        margin-top: 5px;
    }

    #header-area .preheader-area .preheader-right .btn-auth {
        padding: 4px 8px;
        font-size: 9pt;
        font-size: 1.2rem;
        font-weight: 400;
        margin-left: 0;
    }

    #header-area .header-bottom-area,
    #header-area .header-bottom-area.fixed {
        padding: 10px 0;
    }

    #header-area .header-bottom-area .main-menu .navbar-brand img,
    #header-area .header-bottom-area.fixed .main-menu .navbar-brand img {
        width: 150px;
    }

    #header-area .header-bottom-area .main-menu ul,
    #header-area .header-bottom-area.fixed .main-menu ul {
        margin-top: 20px;
    }

    #header-area .header-bottom-area .main-menu .navbar-nav li a.nav-link,
    #header-area .header-bottom-area.fixed .main-menu .navbar-nav li a.nav-link {
        padding: 8px 20px;
        font-size: 13px;
        font-size: 1.3rem;
        margin-right: 0;
    }

    #header-area .header-bottom-area .main-menu .navbar-nav li a.nav-link:before,
    #header-area .header-bottom-area.fixed .main-menu .navbar-nav li a.nav-link:before {
        height: 2px;
    }

    #header-area .header-bottom-area .main-menu .dropdown-menu,
    #header-area .header-bottom-area.fixed .main-menu .dropdown-menu {
        margin-left: 40px !important;
    }

    #slider-area .single-slide-wrap .slider-content h2 {
        font-size: 40px;
        font-weight: 800;
    }

    #slider-area .single-slide-wrap .slider-content h3 {
        font-size: 24px;
        margin: 10px 0 30px;
        line-height: 34px;
    }

    #slider-area .owl-dots {
        top: auto;
        bottom: 3pc;
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    #slider-area .owl-dots .owl-dot {
        display: table-cell;
        vertical-align: middle;
    }

    #slider-area .owl-dots .owl-dot span {
        margin-bottom: 0;
        margin-right: 10px;
        width: 15px;
        height: 15px;
    }

    #slider-area .owl-dots .owl-dot.active span {
        width: 17px;
        height: 17px;
    }

    #slider-area .social-networks-icon {
        display: none;
    }

    /* #upcoming-area {
        margin-top: 0;
        padding: 70px 0
    }

    #upcoming-area .upcoming-event-wrap {
        padding: 40px 10px
    }

    #upcoming-area .upcoming-event-wrap .up-event-titile {
        right: 50%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%)
    }

    #upcoming-area .upcoming-event-wrap .up-event-titile h3 {
        padding: 10px 20px;
        font-size: 20px;
        font-size: 2rem;
        width: 200px
    }

    #upcoming-area .upcoming-event-wrap .upcoming-event-content .owl-nav {
        right: 25px;
        bottom: -7px
    }

    #upcoming-area .upcoming-event-wrap .upcoming-event-content .owl-nav div {
        display: inline-block
    } */

    .single-upcoming-event .up-event-text {
        margin-top: 35px;
    }

    .single-upcoming-event .up-event-text h3 {
        font-size: 20px;
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    #responsibility-area .single-responsibility {
        margin-bottom: 30px;
    }

    #responsibility-area .col-lg-3:last-child .single-responsibility {
        margin-bottom: 0;
    }

    #funfact-area {
        padding: 70px 0;
    }

    #funfact-area .single-funfact-wrap {
        margin-bottom: 50px;
    }

    #funfact-area .col-lg-3:last-child .single-funfact-wrap {
        margin-bottom: 0;
    }

    .gallery-menu span,
    .gallery-menu .nav-pills .nav-link {
        margin-bottom: 10px;
    }

    .gallery-menu a,
    .gallery-menu span,
    .gallery-menu .nav-pills .nav-link {
        margin-right: 3px;
    }

    .gallery-menu a {
        margin-bottom: 0;
    }

    #scholership-promo {
        padding: 70px 0;
    }

    #scholership-promo .scholership-promo-text {
        font-size: 15px;
        font-size: 1.5rem;
    }

    #scholership-promo .scholership-promo-text h2 {
        font-size: 22px;
        font-size: 2.2rem;
    }

    #blog-area .col-lg-4:last-child .single-blog-post,
    .blog-page-contant-start .col-lg-6:last-child .single-blog-post {
        margin-bottom: 0;
    }

    .single-blog-post {
        margin-bottom: 30px;
    }

    .single-blog-post .blog-content {
        padding: 20px 10px;
    }

    .single-blog-post .blog-content h3 {
        font-size: 17px;
        font-size: 1.7rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    #footer-area .footer-widget .single-widget-wrap {
        margin-bottom: 50px;
    }

    #footer-area .footer-widget .col-lg-2 .single-widget-wrap {
        margin-bottom: 0;
    }

    #footer-area .footer-bottom .footer-bottom-text {
        font-size: 14px;
        font-size: 1.4rem;
    }

    .gallery-page-wrap .single-album-wraper {
        margin-bottom: 70px;
    }

    .gallery-page-wrap .single-album-wraper .album-heading h2 {
        font-size: 26px;
        /* font-size: 2.6rem */
    }

    .gallery-page-wrap .single-album-wraper .album-heading a.btn-brand {
        position: inherit;
    }

    .committee-content-wrap .committee-member-list {
        /* margin-top: -50px */
    }

    .single-committee-member {
        /* margin-top: 50px */
    }

    .single-committee-member h3 {
        background: transparent;
        padding: 0;
        padding-top: 10px;
        color: #000;
        font-size: 20px;
        font-weight: 500;
        margin: 0;
        text-align: center;
    }

    .single-committee-member h3 .committee-deg {
        font-size: 14px;
        width: 100%;
        display: block;
        font-weight: 400;
        margin-top: 10px;
        letter-spacing: 0.6px;
    }

    #page-content-wrap .about-page-content-wrap {
        padding-top: 130px;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text {
        padding: 40px 20px 20px;
        font-size: 14px;
        font-size: 1.4rem;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text .year {
        font-size: 72px;
        font-size: 7.2rem;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text .img-left,
    #page-content-wrap .about-page-content-wrap .single-about-text .img-right {
        margin: 0 0 25px;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text img {
        max-width: 100%;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text h2 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text p {
        font-size: 16px;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text:nth-child(2n) .about-page-img {
        margin-top: 30px;
    }

    #page-content-wrap .about-page-area-title h2 {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.2;
    }

    #page-content-wrap .people-to-say {
        padding-bottom: 130px;
    }

    #page-content-wrap .people-to-say .single-testimonial-wrap h4 {
        font-size: 20px;
        font-size: 2rem;
        line-height: 1;
    }

    #page-title-area .page-title-content h2 {
        font-size: 30px;
        font-size: 3rem;
        line-height: 1;
    }

    .directory-page-content-warp .directory-text-wrap h2 {
        font-size: 21px;
        /* font-size: 2.1rem; */
        line-height: 1;
        margin-bottom: 30px;
    }

    .directory-page-content-warp .directory-text-wrap .table-search-area form input {
        display: block;
        margin: 0 auto 20px;
    }

    .directory-page-content-warp .directory-text-wrap .table-search-area form select {
        margin-bottom: 20px;
    }

    .directory-page-content-warp .directory-text-wrap .table-search-area form .btn-brand {
        padding: 9pt 15px;
    }

    .directory-page-content-warp .directory-text-wrap .table-search-area form .nice-select {
        height: 41px;
        line-height: 40px;
    }

    .directory-page-content-warp .directory-text-wrap .directory-table td,
    .directory-page-content-warp .directory-text-wrap .directory-table th {
        font-size: 13px;
        font-size: 1.3rem;
        white-space: nowrap;
    }

    .directory-page-content-warp .directory-text-wrap .directory-table td img,
    .directory-page-content-warp .directory-text-wrap .directory-table th img {
        width: 40px;
        height: 40px;
    }

    .directory-page-content-warp .directory-text-wrap .directory-table td:first-child,
    .directory-page-content-warp .directory-text-wrap .directory-table th:first-child {
        width: auto;
    }

    .single-blog-content-wrap .single-blog-meta h2 {
        font-size: 17px;
        font-size: 1.7rem;
        line-height: 1.4;
    }

    .single-blog-content-wrap .single-blog-meta .posting-info {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1;
    }

    .single-blog-content-wrap .post-share {
        padding: 10px;
    }

    .single-blog-content-wrap .post-share .shareonsocial {
        display: block;
    }

    .single-blog-content-wrap .post-share .shareonsocial span {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1;
        margin-right: 5px;
    }

    .single-blog-content-wrap .post-share .shareonsocial a {
        width: 30px;
        height: 30px;
        background-color: #fff;
        margin-right: 10px;
        text-align: center;
        line-height: 35px;
        color: var(--primary);
        -webkit-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .single-blog-content-wrap .post-share .post-like-comm a {
        margin-left: 5px;
    }

    .event-filter-area .nice-select {
        height: 36px;
        font-size: 9pt;
        font-size: 1.2rem;
        line-height: 38px;
        font-weight: 500;
        margin-right: 2px;
        padding-left: 8px;
        padding-right: 10px;
        margin-bottom: 2px;
    }

    .event-filter-area .nice-select:after {
        width: 5px;
        height: 5px;
        margin-top: -2px;
    }

    .event-filter-area .nice-select ul.list {
        font-size: 9pt;
        font-size: 1.2rem;
        line-height: 1;
    }

    .event-filter-area .btn-brand {
        font-size: 9pt;
        font-size: 1.2rem;
        font-weight: 500;
        padding: 8px 18px;
    }

    .single-event-page-content .single-event-details h2 {
        font-size: 25px;
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .single-event-page-content .single-event-details .event-schedul .event-schedul-accordion .card .card-header h5 {
        font-size: 15px;
        font-size: 1.5rem;
    }

    .single-event-page-content .single-event-details .event-schedul .event-schedul-accordion .card .card-header h5 .event-time {
        text-align: center;
        display: block;
        margin-bottom: 5px;
    }

    .single-event-page-content .single-event-details .event-schedul .event-schedul-accordion .card .card-body {
        font-size: 14px;
        font-size: 1.4rem;
    }

    .single-event-page-content .single-event-details .event-schedul .event-schedul-accordion .card .card-body .speaker-name {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .single-event-page-content .single-event-details .event-thumb-item .event-meta .btn-join {
        position: static;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin-top: 10px;
        display: inline-block;
    }

    .single-event-page-content .single-event-details .event-thumb-item .event-meta h3 {
        font-size: 15px;
        font-size: 1.5rem;
    }

    .single-event-page-content .single-event-details .event-thumb-item .event-meta a {
        font-size: 13px;
        font-size: 1.3rem;
        line-height: 1.3;
        display: block;
    }

    .register-form-content .register-form-wrap {
        margin-top: 75pt;
    }

    .contact-content-inner .map-area-wrap {
        min-height: 25pc;
    }

    .event-countdown p {
        display: none;
    }

    .single-event-page-content .event-thumbnails {
        position: relative;
    }

    .single-event-page-content .event-thumbnails .event-countdown {
        padding: 20px;
        text-align: center;
        background-color: var(--primary);
        border: 1px solid #fff;
        border-top: none;
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 5;
    }

    .single-event-page-content .event-thumbnails .event-countdown P {
        position: static;
        color: #fff;
        margin-bottom: 0;
    }

    .page-title-content h1 {
        font-size: 30px;
        /* font-size: 3rem; */
        line-height: 1.3;
    }

    .register-form .form-group .custom-checkbox {
        margin-bottom: 20px;
        margin-left: 0;
    }
}

@media only screen and (min-width: 576px) {

    .btn-brand,
    .btn-brand-rev {
        padding: 10px 25px;
        font-size: 15px;
        font-size: 1.5rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .img-left,
    .img-right {
        float: none;
        padding: 0;
    }

    .typography-page-wrapper img {
        max-width: 100%;
    }

    .offcanvas-added #menucontent.navbar-collapse.collapse.show {
        display: none !important;
    }

    #header-area .preheader-area {
        padding: 15px 0;
    }

    #header-area .preheader-area .preheader-left {
        padding: 4px 0;
        margin-bottom: 0;
    }

    #header-area .preheader-area .preheader-left a {
        display: inline-block;
        margin-right: 10px;
        font-size: 9pt;
        font-size: 1.2rem;
    }

    #header-area .preheader-area .preheader-left a strong {
        font-size: 13px;
        font-size: 1.3rem;
    }

    #header-area .preheader-area .btn-auth {
        padding: 8px 20px;
        font-size: 9pt;
        font-size: 1.2rem;
    }

    #header-area .header-bottom-area {
        padding: 10px 0;
    }

    #header-area .header-bottom-area .main-menu .navbar-brand img {
        width: 150px;
    }

    #header-area .header-bottom-area .main-menu ul {
        margin-top: 20px;
    }

    #header-area .header-bottom-area .main-menu .navbar-nav li a.nav-link {
        padding: 8px 20px;
        font-size: 13px;
        font-size: 1.3rem;
        margin-right: 0;
    }

    #header-area .header-bottom-area .main-menu .navbar-nav li a.nav-link:before {
        height: 2px;
    }

    #header-area .header-bottom-area .main-menu .dropdown-menu {
        margin-left: 40px !important;
    }

    #slider-area .single-slide-wrap .slider-content h2 {
        font-size: 40px;
        font-size: 4rem;
        line-height: 1;
    }

    #slider-area .single-slide-wrap .slider-content h3 {
        font-size: 25px;
        font-size: 2.5rem;
        line-height: 1.1;
    }

    #slider-area .owl-dots {
        top: auto;
        bottom: 3pc;
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    #slider-area .owl-dots .owl-dot {
        display: table-cell;
        vertical-align: middle;
    }

    #slider-area .owl-dots .owl-dot span {
        margin-bottom: 0;
        margin-right: 10px;
        width: 15px;
        height: 15px;
    }

    #slider-area .owl-dots .owl-dot.active span {
        width: 17px;
        height: 17px;
    }

    #slider-area .social-networks-icon {
        display: none;
    }

    /* #upcoming-area {
        margin-top: 0;
        padding: 105px 0 70px
    }

    #upcoming-area .upcoming-event-wrap .up-event-titile {
        right: 50%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%)
    }

    #upcoming-area .upcoming-event-wrap .up-event-titile h3 {
        padding: 10px 35px;
        font-size: 30px;
        font-size: 3rem;
        width: auto
    } */

    .single-upcoming-event .up-event-text {
        margin-top: 35px;
    }

    .single-upcoming-event .up-event-text h3 {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .single-upcoming-event .btn-brand {
        margin-bottom: 1px;
    }

    #responsibility-area .single-responsibility {
        margin-bottom: 30px;
    }

    #responsibility-area .col-lg-3:nth-child(1n + 3) .single-responsibility {
        margin-bottom: 0;
    }

    #funfact-area .single-funfact-wrap {
        margin-bottom: 50px;
    }

    #funfact-area .col-lg-3:nth-child(1n + 3) .single-funfact-wrap {
        margin-bottom: 0;
    }

    .gallery-menu a,
    .gallery-menu span,
    .gallery-menu .nav-pills .nav-link {
        margin-right: 5px;
        margin-bottom: 0;
    }

    #scholership-promo .scholership-promo-text {
        font-size: 15px;
        font-size: 1.5rem;
    }

    #scholership-promo .scholership-promo-text h2 {
        font-size: 26px;
        font-size: 2.6rem;
    }

    #blog-area .col-lg-4:last-child .single-blog-post,
    .blog-page-contant-start .col-lg-6:last-child .single-blog-post {
        margin-bottom: 0;
    }

    .single-blog-post {
        margin-bottom: 30px;
    }

    .single-blog-post .blog-content {
        padding: 30px;
    }

    .single-blog-post .blog-content h3 {
        font-size: 20px;
        font-size: 2rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    #footer-area .footer-widget .single-widget-wrap {
        margin-bottom: 50px;
    }

    #footer-area .footer-widget .col-lg-2 .single-widget-wrap,
    #footer-area .footer-widget .col-lg-3 .single-widget-wrap {
        margin-bottom: 0;
    }

    #footer-area .footer-bottom .footer-bottom-text {
        font-size: 1pc;
        font-size: 1.6rem;
    }

    .gallery-page-wrap .single-album-wraper .album-heading a.btn-brand {
        position: inherit;
    }

    .committee-content-wrap .committee-member-list {
        /* margin-top: -50px */
    }

    .single-committee-member {
        /* margin-top: 50px; */
    }

    .single-committee-member h3 .committee-deg {
        font-size: 14px;
        width: 100%;
        display: block;
        font-weight: 300;
        margin-top: 10px;
        letter-spacing: 0.6px;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text {
        padding: 40px 20px 20px;
        font-size: 14px;
        font-size: 1.4rem;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text .year {
        font-size: 72px;
        font-size: 7.2rem;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text h3 {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text .img-left,
    #page-content-wrap .about-page-content-wrap .single-about-text .img-right {
        margin: 0 0 25px;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text img {
        max-width: 100%;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text:nth-child(2n) .about-page-img {
        margin-top: 30px;
    }

    .directory-page-content-warp .directory-text-wrap .table-search-area form input {
        display: inline-block;
        margin: 0;
    }

    .directory-page-content-warp .directory-text-wrap .table-search-area form .btn-brand {
        padding: 17px 30px;
    }

    .directory-page-content-warp .directory-text-wrap .table-search-area form .nice-select {
        height: 52px;
        line-height: 52px;
    }

    .directory-page-content-warp .directory-text-wrap .directory-table td,
    .directory-page-content-warp .directory-text-wrap .directory-table th {
        font-size: 15px;
        font-size: 1.5rem;
        white-space: nowrap;
    }

    .directory-page-content-warp .directory-text-wrap .directory-table td img,
    .directory-page-content-warp .directory-text-wrap .directory-table th img {
        width: 40px;
        height: 40px;
    }

    .directory-page-content-warp .directory-text-wrap .directory-table td:first-child,
    .directory-page-content-warp .directory-text-wrap .directory-table th:first-child {
        width: auto;
    }

    .event-filter-area .btn-brand {
        padding: 14px 25px;
        border-radius: 10px;
    }

    .single-event-page-content .single-event-details .event-thumb-item .event-meta a {
        display: block;
    }

    .single-event-page-content .single-event-details .event-thumb-item .event-meta .btn-join {
        position: static;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        display: inline-block;
        margin-top: 10px;
    }

    .register-form-content .register-form-wrap {
        margin-top: 75pt;
    }

    .register-form-content .register-form-wrap:before {
        display: none;
    }

    .contact-content-inner .map-area-wrap {
        min-height: 500px;
    }

    .register-form .form-group .custom-checkbox {
        margin-bottom: 20px;
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) {

    .btn-brand,
    .btn-brand-rev {
        padding: 15px 30px;
        font-size: 18px;
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .img-left,
    .img-right {
        float: none;
        padding: 0;
    }

    #header-area .preheader-area .preheader-left a {
        margin-right: 20px;
        font-size: 14px;
        font-size: 1.4rem;
    }

    #header-area .preheader-area .preheader-left a strong {
        font-size: 1pc;
        font-size: 1.6rem;
    }

    #header-area .preheader-area .btn-auth {
        padding: 8px 20px;
        font-size: 1pc;
        font-size: 1.6rem;
    }

    #slider-area .single-slide-wrap .slider-content h2 {
        font-size: 70px;
        line-height: 1;
    }

    #slider-area .single-slide-wrap .slider-content h3 {
        font-size: 30px;
        font-size: 3rem;
        line-height: 1.1;
    }

    /* #upcoming-area {
        padding: 105px 0 70px
    } */

    .single-upcoming-event .up-event-text h3 {
        font-size: 40px;
        font-weight: 600;
    }

    #scholership-promo .scholership-promo-text {
        font-size: 20px;
        font-size: 2rem;
    }

    #scholership-promo .scholership-promo-text h2 {
        font-size: 60px;
    }

    .single-blog-post .blog-content {
        padding: 20px 15px;
    }

    .single-blog-post .blog-content h3 {
        font-size: 17px;
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .gallery-page-wrap .single-album-wraper .album-heading a.btn-brand {
        position: absolute;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text {
        padding: 50px;
        font-size: 1pc;
        font-size: 1.6rem;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text .year {
        font-size: 75pt;
        font-size: 8rem;
        line-height: 1;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text h3 {
        font-size: 22px;
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text .img-left,
    #page-content-wrap .about-page-content-wrap .single-about-text .img-right {
        margin: 0 0 25px;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text img {
        max-width: 100%;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text:nth-child(2n) .about-page-img {
        margin-top: 30px;
    }

    .blog-page-contant-start .col-lg-6:last-child .single-blog-post,
    .blog-page-contant-start .col-lg-6:nth-child(1n + 5) .single-blog-post {
        margin-bottom: 0;
    }

    .event-filter-area .btn-brand {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media only screen and (min-width: 992px) {

    .btn-brand,
    .btn-brand-rev {
        padding: 15px 30px;
        font-size: 15px;
        font-size: 1.5rem;
    }

    .section-padding {
        padding: 90pt 0;
    }

    .img-left,
    .img-right {
        padding: 0 2rem 1rem 0;
    }

    .img-left {
        float: left;
    }

    .img-right {
        float: right;
    }

    .typography-page-wrapper img {
        max-width: 500px;
    }

    #header-area .preheader-area {
        padding: 0;
    }

    #header-area .preheader-area .preheader-left {
        padding: 15px 0;
        margin-bottom: 0;
    }

    #header-area .preheader-area .preheader-left a {
        display: inline-block;
        margin-right: 35px;
        font-size: 14px;
        font-size: 1.4rem;
    }

    #header-area .preheader-area .preheader-left a strong {
        font-size: 1pc;
        font-size: 1.6rem;
    }

    #header-area .preheader-area .btn-auth {
        padding: 15px 35px;
        font-size: 18px;
        font-size: 1.8rem;
    }

    #header-area .header-bottom-area {
        padding: 0;
    }

    #header-area .header-bottom-area .main-menu .navbar-brand img {
        width: 250px;
    }

    #header-area .header-bottom-area .main-menu ul {
        margin-top: 0;
    }

    #header-area .header-bottom-area .main-menu .navbar-nav li a.nav-link {
        padding: 40px 20px;
        font-size: 17px;
        font-size: 1.7rem;
        margin-right: 20px;
    }

    #header-area .header-bottom-area .main-menu .navbar-nav li a.nav-link:before {
        height: 6px;
    }

    #header-area .header-bottom-area .main-menu .dropdown-menu {
        margin-left: 0 !important;
    }

    #slider-area .single-slide-wrap .slider-content {
        /* padding-left: 100px; */
    }

    #slider-area .single-slide-wrap .slider-content h2 {
        font-size: 64px;
        font-weight: 600;
    }

    #slider-area .single-slide-wrap .slider-content h3 {
        font-size: 64px;
        font-weight: 600;
    }

    #slider-area .owl-dots {
        top: 50%;
        bottom: auto;
        left: auto;
        right: 65px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    #slider-area .owl-dots .owl-dot {
        display: inherit;
        vertical-align: middle;
    }

    #slider-area .owl-dots .owl-dot span {
        margin-bottom: 10px;
        margin-right: 0;
        width: 25px;
        height: 25px;
    }

    #slider-area .owl-dots .owl-dot.active span {
        width: 30px;
        height: 30px;
    }

    #slider-area .social-networks-icon {
        display: none;
    }

    #slider-area .social-networks-icon.social-networks-icon-display {
        display: block;
    }

    /* #upcoming-area {
        margin-top: -190px;
        padding: 0
    }

    #upcoming-area .upcoming-event-wrap .up-event-titile {
        right: 40px;
        -webkit-transform: inherit;
        -ms-transform: inherit;
        transform: inherit;
        margin-bottom: 0
    }

    #upcoming-area .upcoming-event-wrap .up-event-titile h3 {
        padding: 10px 45px;
        font-size: 24px;
        font-size: 2.4rem;
        width: auto
    } */

    .single-upcoming-event .up-event-text {
        margin-top: 0;
    }

    #funfact-area .single-funfact-wrap,
    #responsibility-area .single-responsibility {
        margin-bottom: 0;
    }

    .gallery-menu span,
    .gallery-menu .nav-pills .nav-link {
        margin-right: 15px;
    }

    .gallery-menu .nav-pills .nav-item {
        margin-right: 15px;
    }

    .gallery-menu a,
    .gallery-menu span,
    .gallery-menu .nav-pills .nav-link {
        margin-bottom: 0;
    }

    .gallery-menu a {
        padding: 15px 35px;
        margin-right: 25px;
    }

    .single-blog-post {
        margin-bottom: 0;
    }

    .single-blog-post .blog-content {
        padding: 30px;
    }

    .single-blog-post .blog-content h3 {
        font-size: 20px;
        font-size: 2rem;
        line-height: 1.4;
    }

    #footer-area .footer-widget .single-widget-wrap {
        margin-bottom: 0;
    }

    .committee-content-wrap .committee-member-list {
        /* margin-top: -5pc */
    }

    .single-committee-member {
        /* margin-top: 5pc; */
        height: 200px;
        width: 200px;
        margin-bottom: 100px;
    }

    .single-committee-member-president {
        /* margin-top: 5pc; */
        height: 300px;
        width: 300px;
        margin-bottom: 100px;
    }

    .single-committee-member h3 {
        background: transparent;
        padding: 0;
        padding-top: 10px;
        color: #000;
        font-size: 24px;
        font-weight: 500;
        margin: 0;
        text-align: center;
    }

    .single-committee-member h3 .committee-deg {
        font-size: 14px;
        width: 100%;
        display: block;
        font-weight: 300;
        margin-top: 10px;
        letter-spacing: 0.6px;
    }

    #table-directory_filter {
        margin-bottom: 10px;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text {
        padding: 50px;
        font-size: 1pc;
        font-size: 1.6rem;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text .about-page-img {
        position: absolute;
        width: 124%;
        margin-bottom: 0;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text h2 {
        font-size: 44px;
        margin-bottom: 20px;
        color: #000;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text p {
        font-size: 16px;
        color: #000;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text .img-left,
    #page-content-wrap .about-page-content-wrap .single-about-text .img-right {
        margin: 0;
        margin-top: -75pt;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text .img-left {
        margin-left: -97px;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text .img-right {
        padding: 30px;
        margin-right: -118px;
        margin-top: -160px;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text img {
        max-width: 500px;
    }

    #page-content-wrap .about-page-content-wrap .single-about-text:nth-child(2n) .about-page-img {
        margin-top: 0;
    }

    .directory-page-content-warp .directory-text-wrap .directory-table th {
        font-size: 14px;
        font-weight: 400;
    }

    .directory-page-content-warp .directory-text-wrap .directory-table td {
        font-size: 14px;
        white-space: normal;
        font-weight: 400;
    }

    .directory-page-content-warp .directory-text-wrap .directory-table td img {
        width: 50px;
        height: 50px;
        margin-left: 20px;
    }

    .directory-page-content-warp .directory-text-wrap .directory-table td:first-child {
        width: 35%;
    }

    .blog-page-contant-start .col-lg-6 .single-blog-post {
        margin-bottom: 30px;
    }

    .blog-page-contant-start .col-lg-6:last-child .single-blog-post,
    .blog-page-contant-start .col-lg-6:nth-child(1n + 5) .single-blog-post,
    .sidebar-area-wrap {
        margin-bottom: 0;
    }

    .single-event-page-content .single-event-details .event-thumb-item .event-meta a {
        display: block;
    }

    .single-event-page-content .single-event-details .event-thumb-item .event-meta .btn-join {
        position: absolute;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        display: inline-block;
        margin-top: 0;
    }

    .register-form-content .register-form-wrap {
        margin-top: 0;
    }

    .register-form-content .register-form-wrap:before {
        display: block;
    }

    #header-area .header-bottom-area.fixed .navbar-brand img {
        width: 150px;
    }
}

span.error111 {
    font-size: 14px;
    color: #f00;
}

span.success {
    font-size: 14px;
    color: #0f5132;
}

.global-loader {
    position: relative;
    /* filter: blur(5px); */
}

.global-loader::after {
    position: absolute;
    left: 0;
    right: 0;
    /* filter: blur(0px); */
    height: 100%;
    content: "Loading, Please wait...";
    display: flex;
    top: 0;
    /* align-items: center; */
    padding-top: 50px;
    justify-content: center;
    background: rgba(254, 254, 254, 0.9);
}

.circle-loader {
    position: absolute;
    left: 50%;
    right: 50%;
    top: 50%;
    bottom: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 8px solid var(--primary);
    animation:
        s10-1 0.8s infinite linear alternate,
        s10-2 1.6s infinite linear;
}

@keyframes s10-1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%)
    }

    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%)
    }
}

@keyframes s10-2 {
    0% {
        transform: scaleY(1) rotate(0deg)
    }

    49.99% {
        transform: scaleY(1) rotate(135deg)
    }

    50% {
        transform: scaleY(-1) rotate(0deg)
    }

    100% {
        transform: scaleY(-1) rotate(-135deg)
    }
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--secondary);
}

.page-link:hover {
    color: var(--secondary);
}

.page-link {
    color: var(--primary);
}

.blogsPage .blog-page-content-wrap,
.newsPage .blog-page-content-wrap {
    background: #fff;
}

.article-page .card {
    background: transparent;
    box-shadow: var(--shadow);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.article-page .card .card-header {
    margin-bottom: 10px;
    padding: 11px 20px 2px;
}

.article-page .card .author-details::before {
    display: none;
}

.article-page .card .date {
    padding: 0;
    font-size: 14px;
}

.article-page .card .card-body {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 0px;
}

.article-page .card img {
    transition: all .3s ease-in-out;
}

.article-page .card:hover img {
    transform: scale(1.05);
}

.article-page .card .card-footer {
    border: 1px solid #eee;
    margin-top: -10px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    padding: 16px 14px 10px;
    background: #fff;
}

.article-page .card .liked_btn {
    margin-right: 10px;
}

.article-page .card .liked_btn {
    font-size: 18px;
}

.article-page .card .liked_btn .text-secondary {
    color: #4d5d6e !important;
}

.article-page .card svg {
    height: 16px;
    width: 16px;
}

.article-page .card svg path {
    fill: #4d5d6e;
}

.article-page .card a {
    font-size: 16px;
}

.article-page .card a:hover svg path {
    fill: var(--primary);
}

@media (max-width: 1066px) {
    .site-header .mobile-res {
        color: #fff;
        margin: 20px 5px 0 12px;
        width: 44%;
        float: left;
        display: block;
    }

    .site-header .mobile-res i {
        font-size: 15px !important;
        margin-right: 10px;
    }

    .site-header .desktop-res {
        display: none;
    }

    #slider-area .single-slide-wrap {
        height: 80vh;
    }

    .jobPosting .searchFilters {
        width: 100%;
    }

    .jobPosting .dropdownFilter select {
        width: 80%;
    }

    .wrap-index .section1 .home_login-form {
        right: 5%;
        top: 41%;
    }

    #responsibility-area {
        padding: 40px 0 0;
    }

    #scholership-promo>div {
        padding: 0;
    }

    #scholership-promo .scholership-promo-text {
        padding: 0 20px;
    }

    #scholership-promo .scholership-promo-text h2 {
        font-size: 36px;
    }

    #scholership-promo .rightSide .quickLink {
        padding: 50px;
    }

    #scholership-promo .rightSide .quickLink ul li {
        padding: 16px 0;
    }

    #scholership-promo .rightSide .quickLink ul li a {
        font-size: 15px;
    }

    #scholership-promo .bottom {
        margin-top: -14px;
    }

    #scholership-promo .leftBottom .owl-theme .owl-nav {
        top: auto;
        bottom: -31px;
    }

    #funfact-area {
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    #funfact-area:before {
        content: "";
        height: 150px;
        width: 0.5px;
        position: absolute;
        top: 50%;
        left: 50%;
        background: #ffffff45;
        transform: translate(-50%, -50%);
    }

    #funfact-area:after {
        content: "";
        width: 150px;
        height: 0.5px;
        position: absolute;
        top: 50%;
        left: 50%;
        background: #ffffff45;
        transform: translate(-50%, -50%);
    }

    #funfact-area .single-funfact-wrap {
        margin-bottom: 0;
    }

    #funfact-area .single-funfact-wrap .funfact-info h5 {
        font-size: 40px;
    }

    #funfact-area .single-funfact-wrap .funfact-info p {
        font-size: 14px;
    }

    .about-area {
        padding-bottom: 0;
    }

    .about-area .about-content-wrap {
        padding: 30px;
        text-align: center;
    }

    .wrap-index .events .card .card-element {
        height: 500px;
    }

    .wrap-index .events .heading {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    #scholership-promo {
        padding: 40px 0;
    }

    #scholership-promo .leftBottom {
        padding: 44px;
        height: 140px;
    }

    #scholership-promo>div {
        padding: 0;
    }

    #scholership-promo .rightSide .background-wrap {
        margin-left: -200px;
    }

    #scholership-promo .leftBottom .background-wrap {
        margin-right: -200px;
        margin-left: -200px;
    }

    #scholership-promo .rightBottom .background-wrap {
        margin-left: -200px;
        padding-left: 100px;
    }

    #scholership-promo .rightBottom .background-wrap a {
        padding-left: 90px;
    }

    .wrap-index .events .heading {
        font-size: 60px;
    }
}

@media (max-width: 579px) {
    .heading {
        font-size: 30px;
    }

    #slider-area .single-slide-wrap {
        height: 100%;
        padding: 50px 0 100px;
    }

    #slider-area .single-slide-wrap .slider-content p {
        font-size: 14px;
    }

    #slider-area .single-slide-wrap .slider-content .slider-btn {
        margin-top: 35px;
        display: flex;
        justify-content: space-around;
    }

    #slider-area .single-slide-wrap .slider-content .slider-btn a {
        margin-right: 0px;
        font-size: 13px;
        border-radius: 0;
        text-transform: uppercase;
        font-weight: 600;
        padding: 12px 24px;
    }

    #slider-area .owl-dots {
        bottom: 30px;
    }

    .wrap-index .section1 .banner {
        padding: 0;
        height: 350px;
    }

    .wrap-index .section1 .button1 {
        bottom: 60px;
    }

    .wrap-index .section1 .col-10 {
        margin: auto;
    }

    .wrap-index .section1 .home_login-form {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 38%;
    }

    #responsibility-area {
        padding: 30px 0 0;
    }

    #responsibility-area .card {
        padding: 20px;
    }

    .upcoming-area .heading {
        text-align: center;
    }

    .upcoming-area .leftSide p {
        text-align: center;
    }

    #gallery-area .heading {
        margin: 0;
    }

    #gallery-area .viewAll {
        font-size: 14px;
    }

    .gallery-menu .nav-pills .nav-link {
        font-size: 13px;
        margin: 0;
    }

    #scholership-promo {
        padding: 40px 0;
    }

    .jobPosting {
        padding: 40px 0;
    }

    .about-area .about-content-wrap .leftSide {
        margin: auto;
    }

    .blogsAndNews {
        padding: 40px 0;
    }

    .blogsAndNews .viewAll {
        font-size: 14px;
    }

    .blogsAndNews .nav-tabs {
        width: 160px;
    }

    .blogsAndNews .nav-tabs li a {
        font-size: 14px;
        padding: 6px;
    }

    #footer-area .footer-widget .single-widget-wrap {
        margin-bottom: 0;
    }

    #footer-area .footer-middle {
        padding: 30px 0 0;
    }

    #footer-area .footer-bottoms {
        text-align: left;
    }

    #footer-area .footer-bottoms p {
        text-align: left;
    }

    #footer-area .footer-middle .backToTop {
        /* padding-bottom: 40px; */
        display: none;
    }

    #footer-area .footer-widget {
        padding: 30px 0;
    }

    .wrap-index .events .card .card-element {
        height: 400px;
    }

    .bottomSide {
        padding-top: 30px;
    }

    .bottomSide select {
        margin-top: 18px;
    }
}

.intl-tel-input .country-list .country-name {
    font-size: 1rem;
}

.intl-tel-input .country-list .country .dial-code {
    font-size: 1rem;
}

/* youtube embedded video css */
.custom-play-button {
    height: 48px;
    padding: 10px;
    font-size: 24px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 68px;
    font-size: 16px;
    min-width: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.custom-small-play-button {
    width: 48px;
    height: 35px;
    min-width: 48px;
    font-size: 10px;
    border-radius: 8px;
}

.dark-background-container {
    background: #000;
    border-radius: 12px
}

.z-index-2 {
    z-index: 2;
}

.videos .title {
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    padding-left: 10px;
    text-wrap-mode: nowrap;
    cursor: pointer;
}

.select2-container {
    max-width: 200px !important;
}


/* //////////// new ui css ///////////// */

.wrap-index>div.ui-x {
    background: #fff !important;
    padding-top: 10px;
    margin-top: 10px;
}

.ui-x .section {
    margin-top: 30px;
}

.ui-x h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.ui-x ul {
    margin: 10px 0 0;
    padding-left: 24px;
    list-style: inherit;
    font-size: 16px;
}

.ui-x li {
    margin: 6px 0;
    color: var(--muted);
}

.ui-x .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid #00ad91;
    background: #fff;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
    min-height: 56px;
    box-shadow: 0 6px 18px rgba(2,6,23,.06);
    transition: none;
}

.ui-x .btn:hover {
    border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    box-shadow: 0 10px 25px rgba(14,165,168,.18);
}


/* .ui-x .hero-banner .wrap-box {
    margin-top: 18px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.80));
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow);
} */

.ui-x .hero .wrap-box {
    margin-top: 18px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.80));
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.ui-x .hero img{
    border-radius: 22px;
    margin-bottom: 20px;
}

.ui-x .badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 10px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
}

.ui-x .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
}

.ui-x .subline {
    margin: 0 0 14px;
    color: var(--muted);
    font-weight: 600;
}

.ui-x .hero h1 {
    font-weight: 600;
    margin: 6px 0 8px;
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -.2px;
}

.ui-x .hero p {
    margin: 0;
    color: var(--muted);
    max-width: 920px;
}

.ui-x .cta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.ui-x .grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.ui-x .card {
    grid-column: span 4;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.ui-x .card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
}

.ui-x .card p {
    margin: 0;
    color: var(--muted);
}

.ui-x .two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ui-x .box {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.ui-x .box h3{
    font-size: 18px;
    font-weight: 600;
}

.ui-x .note {
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px dashed var(--line);
    border-radius: 16px;
    color: var(--muted);
    background: var(--surface);
    font-size: 14px;
}

@media (max-width: 920px) {
    .ui-x .hero h1 {
        font-size: 30px;
    }

    .ui-x .card {
        grid-column: span 12;
    }
    
    .ui-x .two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .ui-x .cta-grid {
        grid-template-columns: 1fr;
    }
}