@-webkit-keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0;
    }
    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0;
    }
    to {
        background-position: 0 0;
    }
}

@keyframes swiper-preloader-spin {
    to {
        transform: rotate(360deg);
    }
} 

@keyframes breath {
    0% {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

@-webkit-keyframes breath {
    0% {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

@keyframes slide-diagonal {
    0%,
    to {
        transform: translate(var(--zerounit), var(--zerounit));
        opacity: 1;
    }
    25% {
        transform: translate(2.9282576866764276vw, -2.9282576866764276vw);
    }
    50% {
        transform: translate(-2.9282576866764276vw, 2.9282576866764276vw);
        opacity: 0;
    }
    51% {
        transform: translate(-2.9282576866764276vw, 2.9282576866764276vw);
        opacity: 1;
    }
}

@keyframes circle_pulse {
    0%,
    to {
        transform: scale(1);
    }
    70% {
        transform: scale(1.2);
    }
}

@keyframes free-rotate {
    0% {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse2 {
    0%,
    to {
        transform: scale3d(1, 1, 1);
    }
    70% {
        transform: scale3d(1.012, 1.012, 1);
    }
}

@keyframes link_arrow_animation {
    0%,
    to {
        transform: translate(var(--zerounit), var(--zerounit));
        opacity: 1;
    }
    25% {
        transform: translate(2.9282576866764276vw, -2.9282576866764276vw);
    }
    50% {
        transform: translate(-2.9282576866764276vw, 2.9282576866764276vw);
        opacity: 0;
    }
    51% {
        transform: translate(-2.9282576866764276vw, 2.9282576866764276vw);
        opacity: 1;
    }
}

@keyframes download_animation {
    0%,
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
    25% {
        transform: translate(0, 2.9282576866764276vw);
    }
    50% {
        transform: translate(0, 2.9282576866764276vw);
        opacity: 0;
    }
    51% {
        transform: translate(0, -2.9282576866764276vw);
        opacity: 1;
    }
}

@keyframes rightarrow_move {
    0%,
    to {
        transform: translate(var(--zerounit), var(--zerounit));
        opacity: 1;
    }
    25% {
        transform: translate(2.9282576866764276vw, -2.9282576866764276vw);
    }
    50% {
        transform: translate(-2.9282576866764276vw, 2.9282576866764276vw);
        opacity: 0;
    }
    51% {
        transform: translate(-2.9282576866764276vw, 2.9282576866764276vw);
        opacity: 1;
    }
}

:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --color-change: #ffc107;
}

*,
::after,
::before {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-size: 16px;
    font-style: normal;
    overflow-x: hidden;
}

@-ms-viewport {
    width: device-width;
}

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

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}

address,
hr {
    margin-bottom: 1rem;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    margin-top: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

dl,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
    margin-top: 0;
}

dl,
ol,
p,
ul {
    margin-bottom: 1rem;
}

abbr[data-original-title],
abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
}

address {
    font-style: normal;
    line-height: inherit;
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote,
figure {
    margin: 0 0 1rem;
}

dfn {
    font-style: italic;
}

b,
strong {
    font-weight: bolder;
}

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

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}

samp {
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

table {
    border-collapse: collapse;
}

caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    border-radius: 0;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type="reset"],
[type="submit"],
button,
html [type="button"] {
    -webkit-appearance: button;
}

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

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
    -webkit-appearance: listbox;
}

textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

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

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

.h1,
h1 {
    font-size: 2.5rem;
}

.h2,
h2 {
    font-size: 2rem;
}

.h3,
h3 {
    font-size: 1.75rem;
}

.h4,
h4 {
    font-size: 1.5rem;
}

.h5,
h5 {
    font-size: 1.25rem;
}

.h6,
h6 {
    font-size: 1rem;
}

.display-1,
.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.display-1 {
    font-size: 6rem;
    line-height: 1.2;
}

.display-2,
.display-3,
.display-4 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-3,
.display-4 {
    font-size: 4.5rem;
}

.display-4 {
    font-size: 3.5rem;
}

.small,
small {
    font-size: 80%;
    font-weight: 400;
}

.mark,
mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

.list-inline,
.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d;
}

.blockquote-footer::before {
    content: "— ";
}

.img-fluid,
.img-thumbnail {
   width: 100% !important;
    height: auto;

}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}

.figure {
    display: inline-block;
}

.figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.figure-caption {
    font-size: 90%;
    color: #6c757d;
}

code,
kbd,
pre,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

code {
    color: #e83e8c;
    word-break: break-word;
}

a>code,
pre code {
    color: inherit;
}

code,
kbd,
pre {
    font-size: 87.5%;
}

kbd {
    padding: 0.2rem 0.4rem;
    color: #fff;
    background-color: #212529;
    border-radius: 0.2rem;
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
}

pre {
    display: block;
    color: #212529;
}

pre code {
    font-size: inherit;
    word-break: normal;
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}




.banner_caption p {
    font-size: 6.588579795021962vw;
    text-transform: uppercase;
    color: #fff;
    font-family: acumin-pro-condensed,acumin-pro,sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    display: inline-block;
    line-height: 6.661786237188873vw;
    margin-left: -0.3125vw;
    margin-bottom: 0;
} 
@media only screen and (max-width: 768px){
	 
	 
    .hide-second-line h2 label:nth-child(1) .ttl_xl_longer {
        width: 35px !important;
    }
	.success_section_heading h2 { 
    font-size: 9.856515vw !important; 
}
#faq .my_heading h3 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 500;
    font-size: 5.192982vw !important;
    line-height: 7.777778vw !important;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    transition: .2s;
}
#faq .my_plus_minus {
        position: absolute;
        width: 2.756955vw;
        height: 1.7569546120058566vw;
        right: 6.002928257686676vw;
        top: 2.732064vw !important;
        display: flex;
        align-items: center;
        cursor: pointer;
    }
	#faq .accordian_content_inner1 li h4 {
    font-size: 4.317716vw !important;
    line-height: 5.04978vw !important;
}
	#faq .accordian_content_inner1 li h3 {
    font-size: 4.317716vw !important;
    line-height: 5.04978vw !important;
}
#faq.tabs_accordian_wrp .section_edge {
        padding: 30px 0 0;
        background: #fff;
    }
	#faq { 
        margin-bottom: 60px;
    }
	  
	}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.card>hr,
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-auto {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1,
.col-2,
.col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2,
.col-3 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4,
.col-5,
.col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5,
.col-6 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7,
.col-8,
.col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8,
.col-9 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10,
.col-11,
.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11,
.col-12 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
}

.order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}

.order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}

.order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}

.order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
}

.order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}

.order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
}

.order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}

.order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
}

.order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
}

.offset-1 {
    margin-left: 8.333333%;
}

.offset-2 {
    margin-left: 16.666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.333333%;
}

.offset-5 {
    margin-left: 41.666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.333333%;
}

.offset-8 {
    margin-left: 66.666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.333333%;
}

.offset-11 {
    margin-left: 91.666667%;
}

@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-sm-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-sm-1,
    .col-sm-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-sm-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-sm-3,
    .col-sm-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-sm-5,
    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7,
    .col-sm-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-sm-10,
    .col-sm-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-sm-11,
    .col-sm-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-sm-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-sm-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-sm-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-sm-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-sm-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-sm-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-sm-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-sm-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-sm-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-sm-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-sm-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-sm-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-sm-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-sm-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-sm-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-sm-0 {
        margin-left: 0;
    }
    .offset-sm-1 {
        margin-left: 8.333333%;
    }
    .offset-sm-2 {
        margin-left: 16.666667%;
    }
    .offset-sm-3 {
        margin-left: 25%;
    }
    .offset-sm-4 {
        margin-left: 33.333333%;
    }
    .offset-sm-5 {
        margin-left: 41.666667%;
    }
    .offset-sm-6 {
        margin-left: 50%;
    }
    .offset-sm-7 {
        margin-left: 58.333333%;
    }
    .offset-sm-8 {
        margin-left: 66.666667%;
    }
    .offset-sm-9 {
        margin-left: 75%;
    }
    .offset-sm-10 {
        margin-left: 83.333333%;
    }
    .offset-sm-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-md-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-md-1,
    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-md-3,
    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-md-5,
    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7,
    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-md-10,
    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-md-11,
    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-md-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-md-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-md-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-md-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-md-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-md-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-md-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-md-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-md-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-md-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-md-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-md-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-md-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-md-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-md-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-md-0 {
        margin-left: 0;
    }
    .offset-md-1 {
        margin-left: 8.333333%;
    }
    .offset-md-2 {
        margin-left: 16.666667%;
    }
    .offset-md-3 {
        margin-left: 25%;
    }
    .offset-md-4 {
        margin-left: 33.333333%;
    }
    .offset-md-5 {
        margin-left: 41.666667%;
    }
    .offset-md-6 {
        margin-left: 50%;
    }
    .offset-md-7 {
        margin-left: 58.333333%;
    }
    .offset-md-8 {
        margin-left: 66.666667%;
    }
    .offset-md-9 {
        margin-left: 75%;
    }
    .offset-md-10 {
        margin-left: 83.333333%;
    }
    .offset-md-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-lg-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-lg-1,
    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-lg-3,
    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-lg-5,
    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7,
    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-lg-10,
    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-lg-11,
    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-lg-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-lg-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-lg-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-lg-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-lg-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-lg-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-lg-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-lg-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-lg-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-lg-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-lg-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-lg-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-lg-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-lg-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-lg-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-lg-0 {
        margin-left: 0;
    }
    .offset-lg-1 {
        margin-left: 8.333333%;
    }
    .offset-lg-2 {
        margin-left: 16.666667%;
    }
    .offset-lg-3 {
        margin-left: 25%;
    }
    .offset-lg-4 {
        margin-left: 33.333333%;
    }
    .offset-lg-5 {
        margin-left: 41.666667%;
    }
    .offset-lg-6 {
        margin-left: 50%;
    }
    .offset-lg-7 {
        margin-left: 58.333333%;
    }
    .offset-lg-8 {
        margin-left: 66.666667%;
    }
    .offset-lg-9 {
        margin-left: 75%;
    }
    .offset-lg-10 {
        margin-left: 83.333333%;
    }
    .offset-lg-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-xl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-xl-1,
    .col-xl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-xl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-xl-3,
    .col-xl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-xl-5,
    .col-xl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-7,
    .col-xl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-xl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-xl-10,
    .col-xl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-xl-11,
    .col-xl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-xl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-xl-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-xl-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-xl-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-xl-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-xl-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-xl-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-xl-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-xl-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-xl-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-xl-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-xl-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-xl-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-xl-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-xl-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-xl-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-xl-0 {
        margin-left: 0;
    }
    .offset-xl-1 {
        margin-left: 8.333333%;
    }
    .offset-xl-2 {
        margin-left: 16.666667%;
    }
    .offset-xl-3 {
        margin-left: 25%;
    }
    .offset-xl-4 {
        margin-left: 33.333333%;
    }
    .offset-xl-5 {
        margin-left: 41.666667%;
    }
    .offset-xl-6 {
        margin-left: 50%;
    }
    .offset-xl-7 {
        margin-left: 58.333333%;
    }
    .offset-xl-8 {
        margin-left: 66.666667%;
    }
    .offset-xl-9 {
        margin-left: 75%;
    }
    .offset-xl-10 {
        margin-left: 83.333333%;
    }
    .offset-xl-11 {
        margin-left: 91.666667%;
    }
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

.table td,
.table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table tbody+tbody {
    border-top: 2px solid #dee2e6;
}

.table .table {
    background-color: #fff;
}

.table-sm td,
.table-sm th {
    padding: 0.3rem;
}

.table-bordered,
.table-bordered td,
.table-bordered th {
    border: 1px solid #dee2e6;
}

.table-bordered thead td,
.table-bordered thead th {
    border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary>td,
.table-primary>th {
    background-color: #b8daff;
}

.table-hover .table-primary:hover,
.table-hover .table-primary:hover>td,
.table-hover .table-primary:hover>th {
    background-color: #9fcdff;
}

.table-secondary,
.table-secondary>td,
.table-secondary>th {
    background-color: #d6d8db;
}

.table-hover .table-secondary:hover,
.table-hover .table-secondary:hover>td,
.table-hover .table-secondary:hover>th {
    background-color: #c8cbcf;
}

.table-success,
.table-success>td,
.table-success>th {
    background-color: #c3e6cb;
}

.table-hover .table-success:hover,
.table-hover .table-success:hover>td,
.table-hover .table-success:hover>th {
    background-color: #b1dfbb;
}

.table-info,
.table-info>td,
.table-info>th {
    background-color: #bee5eb;
}

.table-hover .table-info:hover,
.table-hover .table-info:hover>td,
.table-hover .table-info:hover>th {
    background-color: #abdde5;
}

.table-warning,
.table-warning>td,
.table-warning>th {
    background-color: #ffeeba;
}

.table-hover .table-warning:hover,
.table-hover .table-warning:hover>td,
.table-hover .table-warning:hover>th {
    background-color: #ffe8a1;
}

.table-danger,
.table-danger>td,
.table-danger>th {
    background-color: #f5c6cb;
}

.table-hover .table-danger:hover,
.table-hover .table-danger:hover>td,
.table-hover .table-danger:hover>th {
    background-color: #f1b0b7;
}

.table-light,
.table-light>td,
.table-light>th {
    background-color: #fdfdfe;
}

.table-hover .table-light:hover,
.table-hover .table-light:hover>td,
.table-hover .table-light:hover>th {
    background-color: #ececf6;
}

.table-dark>td,
.table-dark>th {
    background-color: #c6c8ca;
}

.table-hover .table-dark:hover,
.table-hover .table-dark:hover>td,
.table-hover .table-dark:hover>th {
    background-color: #b9bbbe;
}

.table-active,
.table-active>td,
.table-active>th,
.table-hover .table-active:hover,
.table-hover .table-active:hover>td,
.table-hover .table-active:hover>th {
    background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
    color: #fff;
    background-color: #212529;
    border-color: #32383e;
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table-dark {
    color: #fff;
    background-color: #212529;
}

.table-dark td,
.table-dark th,
.table-dark thead th {
    border-color: #32383e;
}

.table-dark.table-bordered {
    border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-sm>.table-bordered {
        border: 0;
    }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-md>.table-bordered {
        border: 0;
    }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-lg>.table-bordered {
        border: 0;
    }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-xl>.table-bordered {
        border: 0;
    }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive>.table-bordered {
    border: 0;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 2px);
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}

.form-control-file,
.form-control-range {
    display: block;
    width: 100%;
}

.col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}

.col-form-label-lg {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5;
}

.col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.875rem;
    line-height: 1.5;
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    margin-bottom: 0;
    line-height: 1.5;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
}

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm,
.input-group-lg>.form-control-plaintext.form-control,
.input-group-lg>.input-group-append>.form-control-plaintext.btn,
.input-group-lg>.input-group-append>.form-control-plaintext.input-group-text,
.input-group-lg>.input-group-prepend>.form-control-plaintext.btn,
.input-group-lg>.input-group-prepend>.form-control-plaintext.input-group-text,
.input-group-sm>.form-control-plaintext.form-control,
.input-group-sm>.input-group-append>.form-control-plaintext.btn,
.input-group-sm>.input-group-append>.form-control-plaintext.input-group-text,
.input-group-sm>.input-group-prepend>.form-control-plaintext.btn,
.input-group-sm>.input-group-prepend>.form-control-plaintext.input-group-text {
    padding-right: 0;
    padding-left: 0;
}

.form-control-sm,
.input-group-sm>.form-control,
.input-group-sm>.input-group-append>.btn,
.input-group-sm>.input-group-append>.input-group-text,
.input-group-sm>.input-group-prepend>.btn,
.input-group-sm>.input-group-prepend>.input-group-text {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.input-group-sm>.input-group-append>select.btn:not([size]):not([multiple]),
.input-group-sm>.input-group-append>select.input-group-text:not([size]):not([multiple]),
.input-group-sm>.input-group-prepend>select.btn:not([size]):not([multiple]),
.input-group-sm>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),
.input-group-sm>select.form-control:not([size]):not([multiple]),
select.form-control-sm:not([size]):not([multiple]) {
    height: calc(1.8125rem + 2px);
}

.form-control-lg,
.input-group-lg>.form-control,
.input-group-lg>.input-group-append>.btn,
.input-group-lg>.input-group-append>.input-group-text,
.input-group-lg>.input-group-prepend>.btn,
.input-group-lg>.input-group-prepend>.input-group-text {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.input-group-lg>.input-group-append>select.btn:not([size]):not([multiple]),
.input-group-lg>.input-group-append>select.input-group-text:not([size]):not([multiple]),
.input-group-lg>.input-group-prepend>select.btn:not([size]):not([multiple]),
.input-group-lg>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),
.input-group-lg>select.form-control:not([size]):not([multiple]),
select.form-control-lg:not([size]):not([multiple]) {
    height: calc(2.875rem + 2px);
}

.form-group {
    margin-bottom: 1rem;
}

.form-text {
    display: block;
    margin-top: 0.25rem;
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.form-row>.col,
.form-row>[class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}

.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}

.form-check-input:disabled~.form-check-label {
    color: #6c757d;
}

.form-check-label {
    margin-bottom: 0;
}

.form-check-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: 0.3125rem;
    margin-left: 0;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #28a745;
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    line-height: 1;
    color: #fff;
    background-color: rgba(40, 167, 69, 0.8);
    border-radius: 0.2rem;
}

.custom-select.is-valid,
.form-control.is-valid,
.was-validated .custom-select:valid,
.was-validated .form-control:valid {
    border-color: #28a745;
}

.custom-select.is-valid:focus,
.form-control.is-valid:focus,
.was-validated .custom-select:valid:focus,
.was-validated .form-control:valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.custom-select.is-valid~.valid-feedback,
.custom-select.is-valid~.valid-tooltip,
.form-control.is-valid~.valid-feedback,
.form-control.is-valid~.valid-tooltip,
.was-validated .custom-select:valid~.valid-feedback,
.was-validated .custom-select:valid~.valid-tooltip,
.was-validated .form-control:valid~.valid-feedback,
.was-validated .form-control:valid~.valid-tooltip {
    display: block;
}

.form-check-input.is-valid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
    color: #28a745;
}

.form-check-input.is-valid~.valid-feedback,
.form-check-input.is-valid~.valid-tooltip,
.was-validated .form-check-input:valid~.valid-feedback,
.was-validated .form-check-input:valid~.valid-tooltip {
    display: block;
}

.custom-control-input.is-valid~.custom-control-label,
.was-validated .custom-control-input:valid~.custom-control-label {
    color: #28a745;
}

.custom-control-input.is-valid~.custom-control-label::before,
.was-validated .custom-control-input:valid~.custom-control-label::before {
    background-color: #71dd8a;
}

.custom-control-input.is-valid~.valid-feedback,
.custom-control-input.is-valid~.valid-tooltip,
.was-validated .custom-control-input:valid~.valid-feedback,
.was-validated .custom-control-input:valid~.valid-tooltip {
    display: block;
}

.custom-control-input.is-valid:checked~.custom-control-label::before,
.was-validated .custom-control-input:valid:checked~.custom-control-label::before {
    background-color: #34ce57;
}

.custom-control-input.is-valid:focus~.custom-control-label::before,
.was-validated .custom-control-input:valid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.custom-file-input.is-valid~.custom-file-label,
.was-validated .custom-file-input:valid~.custom-file-label {
    border-color: #28a745;
}

.custom-file-input.is-valid~.custom-file-label::before,
.was-validated .custom-file-input:valid~.custom-file-label::before {
    border-color: inherit;
}

.custom-file-input.is-valid~.valid-feedback,
.custom-file-input.is-valid~.valid-tooltip,
.was-validated .custom-file-input:valid~.valid-feedback,
.was-validated .custom-file-input:valid~.valid-tooltip {
    display: block;
}

.custom-file-input.is-valid:focus~.custom-file-label,
.was-validated .custom-file-input:valid:focus~.custom-file-label {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    line-height: 1;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.8);
    border-radius: 0.2rem;
}

.custom-select.is-invalid,
.form-control.is-invalid,
.was-validated .custom-select:invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545;
}

.custom-select.is-invalid:focus,
.form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.was-validated .form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.custom-select.is-invalid~.invalid-feedback,
.custom-select.is-invalid~.invalid-tooltip,
.form-control.is-invalid~.invalid-feedback,
.form-control.is-invalid~.invalid-tooltip,
.was-validated .custom-select:invalid~.invalid-feedback,
.was-validated .custom-select:invalid~.invalid-tooltip,
.was-validated .form-control:invalid~.invalid-feedback,
.was-validated .form-control:invalid~.invalid-tooltip {
    display: block;
}

.form-check-input.is-invalid~.form-check-label,
.was-validated .form-check-input:invalid~.form-check-label {
    color: #dc3545;
}

.form-check-input.is-invalid~.invalid-feedback,
.form-check-input.is-invalid~.invalid-tooltip,
.was-validated .form-check-input:invalid~.invalid-feedback,
.was-validated .form-check-input:invalid~.invalid-tooltip {
    display: block;
}

.custom-control-input.is-invalid~.custom-control-label,
.was-validated .custom-control-input:invalid~.custom-control-label {
    color: #dc3545;
}

.custom-control-input.is-invalid~.custom-control-label::before,
.was-validated .custom-control-input:invalid~.custom-control-label::before {
    background-color: #efa2a9;
}

.custom-control-input.is-invalid~.invalid-feedback,
.custom-control-input.is-invalid~.invalid-tooltip,
.was-validated .custom-control-input:invalid~.invalid-feedback,
.was-validated .custom-control-input:invalid~.invalid-tooltip {
    display: block;
}

.custom-control-input.is-invalid:checked~.custom-control-label::before,
.was-validated .custom-control-input:invalid:checked~.custom-control-label::before {
    background-color: #e4606d;
}

.custom-control-input.is-invalid:focus~.custom-control-label::before,
.was-validated .custom-control-input:invalid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.custom-file-input.is-invalid~.custom-file-label,
.was-validated .custom-file-input:invalid~.custom-file-label {
    border-color: #dc3545;
}

.custom-file-input.is-invalid~.custom-file-label::before,
.was-validated .custom-file-input:invalid~.custom-file-label::before {
    border-color: inherit;
}

.custom-file-input.is-invalid~.invalid-feedback,
.custom-file-input.is-invalid~.invalid-tooltip,
.was-validated .custom-file-input:invalid~.invalid-feedback,
.was-validated .custom-file-input:invalid~.invalid-tooltip {
    display: block;
}

.custom-file-input.is-invalid:focus~.custom-file-label,
.was-validated .custom-file-input:invalid:focus~.custom-file-label {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-inline .form-check,
input[type="button"].btn-block,
input[type="reset"].btn-block,
input[type="submit"].btn-block {
    width: 100%;
}
.common_caption p {
    font-size: 3.3674963396778916vw;
    line-height: 4.24597364568082vw;
}
@media (min-width: 576px) {
    .form-inline .form-group,
    .form-inline label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0;
    }
    .form-inline label {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .form-inline .form-group {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }
    .form-inline .form-control-plaintext {
        display: inline-block;
    }
    .form-inline .input-group {
        width: auto;
    }
    .form-inline .form-check {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0;
    }
    .form-inline .form-check-input {
        position: relative;
        margin-top: 0;
        margin-right: 0.25rem;
        margin-left: 0;
    }
    .form-inline .custom-control {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .form-inline .custom-control-label {
        margin-bottom: 0;
    }
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:focus,
.btn:hover {
    text-decoration: none;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled,
.btn:disabled {
    opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    background-image: none;
}

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-primary.focus,
.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-secondary.focus,
.btn-secondary:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-success.focus,
.btn-success:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show>.btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
}

.btn-info.focus,
.btn-info:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show>.btn-info.dropdown-toggle {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show>.btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
}

.btn-warning.focus,
.btn-warning:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show>.btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show>.btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-danger.focus,
.btn-danger:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

.btn-light.focus,
.btn-light:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show>.btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
}

.btn-dark.focus,
.btn-dark:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show>.btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary {
    color: #007bff;
    background-color: transparent;
    background-image: none;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
    color: #6c757d;
    background-color: transparent;
    background-image: none;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show>.btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
    color: #28a745;
    background-color: transparent;
    background-image: none;
    border-color: #28a745;
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success.focus,
.btn-outline-success:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
    color: #28a745;
    background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show>.btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
    color: #17a2b8;
    background-color: transparent;
    background-image: none;
    border-color: #17a2b8;
}

.btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info.focus,
.btn-outline-info:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show>.btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
    color: #ffc107;
    background-color: transparent;
    background-image: none;
    border-color: #ffc107;
}

.btn-outline-warning:hover {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning.focus,
.btn-outline-warning:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show>.btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
    color: #dc3545;
    background-color: transparent;
    background-image: none;
    border-color: #dc3545;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger.focus,
.btn-outline-danger:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show>.btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
    color: #f8f9fa;
    background-color: transparent;
    background-image: none;
    border-color: #f8f9fa;
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light.focus,
.btn-outline-light:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show>.btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
    color: #343a40;
    background-color: transparent;
    background-image: none;
    border-color: #343a40;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark.focus,
.btn-outline-dark:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show>.btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link,
.btn-link:hover {
    background-color: transparent;
}

.btn-link {
    font-weight: 400;
    color: #007bff;
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
    border-color: transparent;
}

.btn-link.focus,
.btn-link:focus {
    text-decoration: underline;
    border-color: transparent;
    box-shadow: none;
}

.btn-link.disabled,
.btn-link:disabled {
    color: #6c757d;
}

.btn-group-lg>.btn,
.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.btn-group-sm>.btn,
.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block+.btn-block {
    margin-top: 0.5rem;
}

.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}

.fade.show,
.jctkr-wrapper.jctkr-initialized ul {
    opacity: 1;
}

.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

tr.collapse.show {
    display: table-row;
}

tbody.collapse.show {
    display: table-row-group;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.collapsing,
.dropdown,
.dropup {
    position: relative;
}

.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after,
.dropleft .dropdown-toggle:empty::after,
.dropright .dropdown-toggle:empty::after,
.dropup .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.dropup .dropdown-menu {
    margin-top: 0;
    margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
}

.dropright .dropdown-menu {
    margin-top: 0;
    margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
    vertical-align: 0;
}

.dropleft .dropdown-menu {
    margin-top: 0;
    margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    display: none;
}

.dropleft .dropdown-toggle::before {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0.3em solid;
    border-bottom: 0.3em solid transparent;
    vertical-align: 0;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    color: #6c757d;
    background-color: transparent;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #6c757d;
    white-space: nowrap;
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}

.btn-group-vertical>.btn,
.btn-group>.btn {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.btn-group-vertical>.btn:hover,
.btn-group>.btn:hover {
    z-index: 1;
}

.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus {
    z-index: 1;
}

.btn-group .btn+.btn,
.btn-group .btn+.btn-group,
.btn-group .btn-group+.btn,
.btn-group .btn-group+.btn-group,
.btn-group-vertical .btn+.btn,
.btn-group-vertical .btn+.btn-group,
.btn-group-vertical .btn-group+.btn,
.btn-group-vertical .btn-group+.btn-group {
    margin-left: -1px;
}

.btn-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.btn-toolbar .input-group {
    width: auto;
}

.btn-group>.btn:first-child {
    margin-left: 0;
}

.btn-group>.btn-group:not(:last-child)>.btn,
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group>.btn-group:not(:first-child)>.btn,
.btn-group>.btn:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
    padding-right: 0.5625rem;
    padding-left: 0.5625rem;
}

.dropdown-toggle-split::after {
    margin-left: 0;
}

.btn-group-sm>.btn+.dropdown-toggle-split,
.btn-sm+.dropdown-toggle-split {
    padding-right: 0.375rem;
    padding-left: 0.375rem;
}

.btn-group-lg>.btn+.dropdown-toggle-split,
.btn-lg+.dropdown-toggle-split {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.btn-group-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
    width: 100%;
}

.btn-group-vertical>.btn+.btn,
.btn-group-vertical>.btn+.btn-group,
.btn-group-vertical>.btn-group+.btn,
.btn-group-vertical>.btn-group+.btn-group {
    margin-top: -1px;
    margin-left: 0;
}

.btn-group-vertical>.btn-group:not(:last-child)>.btn,
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-vertical>.btn-group:not(:first-child)>.btn,
.btn-group-vertical>.btn:not(:first-child) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.btn-group-toggle>.btn,
.btn-group-toggle>.btn-group>.btn {
    margin-bottom: 0;
}

.btn-group-toggle>.btn input[type="checkbox"],
.btn-group-toggle>.btn input[type="radio"],
.btn-group-toggle>.btn-group>.btn input[type="checkbox"],
.btn-group-toggle>.btn-group>.btn input[type="radio"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group>.custom-file,
.input-group>.custom-select,
.input-group>.form-control {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.input-group>.custom-file:focus,
.input-group>.custom-select:focus,
.input-group>.form-control:focus {
    z-index: 3;
}

.input-group>.custom-file+.custom-file,
.input-group>.custom-file+.custom-select,
.input-group>.custom-file+.form-control,
.input-group>.custom-select+.custom-file,
.input-group>.custom-select+.custom-select,
.input-group>.custom-select+.form-control,
.input-group>.form-control+.custom-file,
.input-group>.form-control+.custom-select,
.input-group>.form-control+.form-control {
    margin-left: -1px;
}

.input-group>.custom-file:not(:last-child) .custom-file-label,
.input-group>.custom-file:not(:last-child) .custom-file-label::before,
.input-group>.custom-select:not(:last-child),
.input-group>.form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group>.custom-file:not(:first-child) .custom-file-label,
.input-group>.custom-file:not(:first-child) .custom-file-label::before,
.input-group>.custom-select:not(:first-child),
.input-group>.form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group>.custom-file {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.input-group-append,
.input-group-prepend,
.input-group>.custom-file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.input-group-append .btn,
.input-group-prepend .btn {
    position: relative;
    z-index: 2;
}

.input-group-prepend {
    margin-right: -1px;
}

.input-group-append,
.input-group-append .btn+.btn,
.input-group-append .btn+.input-group-text,
.input-group-append .input-group-text+.btn,
.input-group-append .input-group-text+.input-group-text,
.input-group-prepend .btn+.btn,
.input-group-prepend .btn+.input-group-text,
.input-group-prepend .input-group-text+.btn,
.input-group-prepend .input-group-text+.input-group-text {
    margin-left: -1px;
}

.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.input-group-text input[type="checkbox"],
.input-group-text input[type="radio"],
.showmain_menu .toggle_menu_main>li {
    margin-top: 0;
}

.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),
.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),
.input-group>.input-group-append:not(:last-child)>.btn,
.input-group>.input-group-append:not(:last-child)>.input-group-text,
.input-group>.input-group-prepend>.btn,
.input-group>.input-group-prepend>.input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group>.input-group-append>.btn,
.input-group>.input-group-append>.input-group-text,
.input-group>.input-group-prepend:first-child>.btn:not(:first-child),
.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),
.input-group>.input-group-prepend:not(:first-child)>.btn,
.input-group>.input-group-prepend:not(:first-child)>.input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}

.custom-control-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem;
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    background-color: #007bff;
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:active~.custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff;
}

.custom-control-input:disabled~.custom-control-label {
    color: #6c757d;
}

.custom-control-input:disabled~.custom-control-label::before {
    background-color: #e9ecef;
}

.custom-control-label {
    margin-bottom: 0;
}

.custom-control-label::after,
.custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
}

.custom-control-label::before {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #dee2e6;
}

.custom-control-label::after {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #007bff;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
    background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
    border-radius: 50%;
}

.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: #007bff;
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    background-size: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5);
}

.custom-select:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none;
}

.custom-select:disabled {
    color: #6c757d;
    background-color: #e9ecef;
}

.custom-select::-ms-expand {
    opacity: 0;
}

.custom-select-lg,
.custom-select-sm {
    height: calc(1.8125rem + 2px);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 75%;
}

.custom-select-lg {
    height: calc(2.875rem + 2px);
    font-size: 125%;
}

.custom-file,
.custom-file-input {
    position: relative;
    width: 100%;
    height: calc(2.25rem + 2px);
}

.custom-file {
    display: inline-block;
    margin-bottom: 0;
}

.custom-file-input {
    z-index: 2;
    margin: 0;
    opacity: 0;
}

.custom-file-input:focus~.custom-file-control {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input:focus~.custom-file-control::before {
    border-color: #80bdff;
}

.custom-file-input:lang(en)~.custom-file-label::after {
    content: "Browse";
}

.custom-file-label,
.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
}

.custom-file-label {
    left: 0;
    z-index: 1;
    height: calc(2.25rem + 2px);
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.custom-file-label::after {
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(calc(2.25rem + 2px) - 1px * 2);
    content: "Browse";
    background-color: #e9ecef;
    border-left: 1px solid #ced4da;
    border-radius: 0 0.25rem 0.25rem 0;
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
}

.nav-link:focus,
.nav-link:hover {
    text-decoration: none;
}

.nav-link.disabled {
    color: #6c757d;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.nav-pills .nav-link {
    border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #007bff;
}

.nav-fill .nav-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}

.nav-justified .nav-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
}

.tab-content>.tab-pane {
    display: none;
}

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

.navbar {
    position: relative;
    padding: 0.5rem 1rem;
}

.navbar,
.navbar>.container,
.navbar>.container-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration: none;
}

.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}

.navbar-nav .dropdown-menu {
    position: static;
    float: none;
}

.navbar-text {
    display: inline-block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    text-decoration: none;
}

.navbar-toggler:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
}

@media (max-width: 575.98px) {
    .navbar-expand-sm>.container,
    .navbar-expand-sm>.container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 576px) {
    .navbar-expand-sm,
    .navbar-expand-sm .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }
    .navbar-expand-sm {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-sm .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-sm .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto;
    }
    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-sm>.container,
    .navbar-expand-sm>.container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-sm .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-sm .navbar-toggler {
        display: none;
    }
    .navbar-expand-sm .dropup .dropdown-menu {
        top: auto;
        bottom: 100%;
    }
}

@media (max-width: 767.98px) {
    .navbar-expand-md>.container,
    .navbar-expand-md>.container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md,
    .navbar-expand-md .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }
    .navbar-expand-md {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-md .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-md .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto;
    }
    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-md>.container,
    .navbar-expand-md>.container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-md .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-md .navbar-toggler {
        display: none;
    }
    .navbar-expand-md .dropup .dropdown-menu {
        top: auto;
        bottom: 100%;
    }
}

@media (max-width: 991.98px) {
    .navbar-expand-lg>.container,
    .navbar-expand-lg>.container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg,
    .navbar-expand-lg .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }
    .navbar-expand-lg {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-lg>.container,
    .navbar-expand-lg>.container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-lg .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
    .navbar-expand-lg .dropup .dropdown-menu {
        top: auto;
        bottom: 100%;
    }
}

@media (max-width: 1199.98px) {
    .navbar-expand-xl>.container,
    .navbar-expand-xl>.container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl,
    .navbar-expand-xl .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }
    .navbar-expand-xl {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-xl .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-xl .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto;
    }
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-xl>.container,
    .navbar-expand-xl>.container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-xl .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-xl .navbar-toggler {
        display: none;
    }
    .navbar-expand-xl .dropup .dropdown-menu {
        top: auto;
        bottom: 100%;
    }
}

.navbar-expand {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.navbar-expand>.container,
.navbar-expand>.container-fluid {
    padding-right: 0;
    padding-left: 0;
}

.navbar-expand,
.navbar-expand .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
}

.navbar-expand .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute;
}

.navbar-expand .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.navbar-expand>.container,
.navbar-expand>.container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}

.navbar-expand .navbar-toggler {
    display: none;
}

.navbar-expand .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
}

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover,
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-text a {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-dark .navbar-brand {
    color: #fff;
}

.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .active>.nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show>.nav-link,
.navbar-dark .navbar-text a {
    color: #fff;
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.5);
}

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.card>.list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.card>.list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover,
.megamenu_left_wrap>ul>li>a:hover,
.megamenu_left_wrap>ul>li>ul>li>a:hover {
    text-decoration: none;
}

.card-link+.card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header+.list-group .list-group-item:first-child {
    border-top: 0;
}

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
    margin-bottom: -0.75rem;
    border-bottom: 0;
}

.card-header-pills,
.card-header-tabs {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img {
    width: 100%;
    border-radius: calc(0.25rem - 1px);
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-deck .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-deck {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }
    .card-deck .card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px;
    }
}

.card-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-group>.card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-group {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
    .card-group>.card {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0;
    }
    .card-group>.card+.card {
        margin-left: 0;
        border-left: 0;
    }
    .card-group>.card:first-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .card-group>.card:first-child .card-header,
    .card-group>.card:first-child .card-img-top {
        border-top-right-radius: 0;
    }
    .card-group>.card:first-child .card-footer,
    .card-group>.card:first-child .card-img-bottom {
        border-bottom-right-radius: 0;
    }
    .card-group>.card:last-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .card-group>.card:last-child .card-header,
    .card-group>.card:last-child .card-img-top {
        border-top-left-radius: 0;
    }
    .card-group>.card:last-child .card-footer,
    .card-group>.card:last-child .card-img-bottom {
        border-bottom-left-radius: 0;
    }
    .card-group>.card:only-child {
        border-radius: 0.25rem;
    }
    .card-group>.card:only-child .card-header,
    .card-group>.card:only-child .card-img-top {
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
    }
    .card-group>.card:only-child .card-footer,
    .card-group>.card:only-child .card-img-bottom {
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
    }
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child),
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer,
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
    .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top {
        border-radius: 0;
    }
}

.card-columns .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
    }
    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}

.breadcrumb,
.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    border-radius: 0.25rem;
}

.breadcrumb {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background-color: #e9ecef;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.pagination {
    padding-left: 0;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-link:hover {
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-link:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

.pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
}

.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.badge:empty {
    display: none;
}

.btn .badge {
    position: relative;
    top: -1px;
}

.badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem;
}

.badge-primary {
    color: #fff;
    background-color: #007bff;
}

.badge-primary[href]:focus,
.badge-primary[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #0062cc;
}

.badge-secondary {
    color: #fff;
    background-color: #6c757d;
}

.badge-secondary[href]:focus,
.badge-secondary[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #545b62;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
}

.badge-success[href]:focus,
.badge-success[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #1e7e34;
}

.badge-info {
    color: #fff;
    background-color: #17a2b8;
}

.badge-info[href]:focus,
.badge-info[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #117a8b;
}

.badge-warning {
    color: #212529;
    background-color: #ffc107;
}

.badge-warning[href]:focus,
.badge-warning[href]:hover {
    color: #212529;
    text-decoration: none;
    background-color: #d39e00;
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
}

.badge-danger[href]:focus,
.badge-danger[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #bd2130;
}

.badge-light {
    color: #212529;
    background-color: #f8f9fa;
}

.badge-light[href]:focus,
.badge-light[href]:hover {
    color: #212529;
    text-decoration: none;
    background-color: #dae0e5;
}

.badge-dark {
    color: #fff;
    background-color: #343a40;
}

.badge-dark[href]:focus,
.badge-dark[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #1d2124;
}

.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: 0.3rem;
}

@media (min-width: 576px) {
    .jumbotron {
        padding: 4rem 2rem;
    }
}

.jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 4rem;
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.alert-primary hr {
    border-top-color: #9fcdff;
}

.alert-primary .alert-link {
    color: #002752;
}

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.alert-secondary hr {
    border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
    color: #202326;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-success hr {
    border-top-color: #b1dfbb;
}

.alert-success .alert-link {
    color: #0b2e13;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-info hr {
    border-top-color: #abdde5;
}

.alert-info .alert-link {
    color: #062c33;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-warning hr {
    border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
    color: #533f03;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-danger hr {
    border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
    color: #491217;
}

.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

.alert-light hr {
    border-top-color: #ececf6;
}

.alert-light .alert-link {
    color: #686868;
}

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

.alert-dark hr {
    border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
    color: #040505;
}

.progress,
.progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.progress {
    height: 1rem;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.progress-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-color: #007bff;
    transition: width 0.6s ease;
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
}

.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.media-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit;
}

.list-group-item-action:focus,
.list-group-item-action:hover {
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}

.list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.list-group-item:focus,
.list-group-item:hover {
    z-index: 1;
    text-decoration: none;
}

.list-group-item.disabled,
.list-group-item:disabled {
    color: #6c757d;
    background-color: #fff;
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.list-group-flush .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.list-group-flush:first-child .list-group-item:first-child {
    border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
    border-bottom: 0;
}

.list-group-item-primary {
    color: #004085;
    background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
    color: #004085;
    background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #004085;
    border-color: #004085;
}

.list-group-item-secondary {
    color: #383d41;
    background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
    color: #383d41;
    background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #383d41;
    border-color: #383d41;
}

.list-group-item-success {
    color: #155724;
    background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
    color: #155724;
    background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #155724;
    border-color: #155724;
}

.list-group-item-info {
    color: #0c5460;
    background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
    color: #0c5460;
    background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #0c5460;
    border-color: #0c5460;
}

.list-group-item-warning {
    color: #856404;
    background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
    color: #856404;
    background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #856404;
    border-color: #856404;
}

.list-group-item-danger {
    color: #721c24;
    background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
    color: #721c24;
    background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #721c24;
    border-color: #721c24;
}

.list-group-item-light {
    color: #818182;
    background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
    color: #818182;
    background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #818182;
    border-color: #818182;
}

.list-group-item-dark {
    color: #1b1e21;
    background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
    color: #1b1e21;
    background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #1b1e21;
    border-color: #1b1e21;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0#fff;
    opacity: 0.5;
}

.close:focus,
.close:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.75;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

.modal,
.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    outline: 0;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-content,
.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.modal-dialog-centered {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

.modal-footer> :not(:first-child) {
    margin-left: 0.25rem;
}

.modal-footer> :not(:last-child) {
    margin-right: 0.25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2));
    }
    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px;
    }
}

.tooltip {
    z-index: 1070;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0;
}

.tooltip.show {
    opacity: 0.9;
}

.tooltip,
.tooltip .arrow {
    position: absolute;
    display: block;
}

.tooltip .arrow {
    width: 0.8rem;
    height: 0.4rem;
}

.tooltip .arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-tooltip-auto[x-placement^="top"],
.bs-tooltip-top {
    padding: 0.4rem 0;
}

.bs-tooltip-auto[x-placement^="top"] .arrow,
.bs-tooltip-top .arrow {
    bottom: 0;
}

.bs-tooltip-auto[x-placement^="top"] .arrow::before,
.bs-tooltip-top .arrow::before {
    top: 0;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #000;
}

.bs-tooltip-auto[x-placement^="right"],
.bs-tooltip-right {
    padding: 0 0.4rem;
}

.bs-tooltip-auto[x-placement^="right"] .arrow,
.bs-tooltip-right .arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-auto[x-placement^="right"] .arrow::before,
.bs-tooltip-right .arrow::before {
    right: 0;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: #000;
}

.bs-tooltip-auto[x-placement^="bottom"],
.bs-tooltip-bottom {
    padding: 0.4rem 0;
}

.bs-tooltip-auto[x-placement^="bottom"] .arrow,
.bs-tooltip-bottom .arrow {
    top: 0;
}

.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,
.bs-tooltip-bottom .arrow::before {
    bottom: 0;
    border-width: 0 0.4rem 0.4rem;
    border-bottom-color: #000;
}

.bs-tooltip-auto[x-placement^="left"],
.bs-tooltip-left {
    padding: 0 0.4rem;
}

.bs-tooltip-auto[x-placement^="left"] .arrow,
.bs-tooltip-left .arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-auto[x-placement^="left"] .arrow::before,
.bs-tooltip-left .arrow::before {
    left: 0;
    border-width: 0.4rem 0 0.4rem 0.4rem;
    border-left-color: #000;
}

.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem;
}

.popover,
.popover .arrow {
    position: absolute;
    display: block;
}

.popover {
    top: 0;
    left: 0;
    z-index: 1060;
    max-width: 276px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
}

.popover .arrow {
    width: 1rem;
    height: 0.5rem;
    margin: 0 0.3rem;
}

.popover .arrow::after,
.popover .arrow::before {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-popover-auto[x-placement^="top"],
.bs-popover-top {
    margin-bottom: 0.5rem;
}

.bs-popover-auto[x-placement^="top"] .arrow,
.bs-popover-top .arrow {
    bottom: calc((0.5rem + 1px) * -1);
}

.bs-popover-auto[x-placement^="top"] .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::before,
.bs-popover-top .arrow::after,
.bs-popover-top .arrow::before {
    border-width: 0.5rem 0.5rem 0;
}

.bs-popover-auto[x-placement^="top"] .arrow::before,
.bs-popover-top .arrow::before {
    bottom: 0;
    border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^="top"] .arrow::after,
.bs-popover-top .arrow::after {
    bottom: 1px;
    border-top-color: #fff;
}

.bs-popover-auto[x-placement^="right"],
.bs-popover-right {
    margin-left: 0.5rem;
}

.bs-popover-auto[x-placement^="right"] .arrow,
.bs-popover-right .arrow {
    left: calc((0.5rem + 1px) * -1);
    width: 0.5rem;
    height: 1rem;
    margin: 0.3rem 0;
}

.bs-popover-auto[x-placement^="right"] .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::before,
.bs-popover-right .arrow::after,
.bs-popover-right .arrow::before {
    border-width: 0.5rem 0.5rem 0.5rem 0;
}

.bs-popover-auto[x-placement^="right"] .arrow::before,
.bs-popover-right .arrow::before {
    left: 0;
    border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^="right"] .arrow::after,
.bs-popover-right .arrow::after {
    left: 1px;
    border-right-color: #fff;
}

.bs-popover-auto[x-placement^="bottom"],
.bs-popover-bottom {
    margin-top: 0.5rem;
}

.bs-popover-auto[x-placement^="bottom"] .arrow,
.bs-popover-bottom .arrow {
    top: calc((0.5rem + 1px) * -1);
}

.bs-popover-auto[x-placement^="bottom"] .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::before,
.bs-popover-bottom .arrow::after,
.bs-popover-bottom .arrow::before {
    border-width: 0 0.5rem 0.5rem;
}

.bs-popover-auto[x-placement^="bottom"] .arrow::before,
.bs-popover-bottom .arrow::before {
    top: 0;
    border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^="bottom"] .arrow::after,
.bs-popover-bottom .arrow::after {
    top: 1px;
    border-bottom-color: #fff;
}

.bs-popover-auto[x-placement^="bottom"] .popover-header::before,
.bs-popover-bottom .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -0.5rem;
    content: "";
    border-bottom: 1px solid #f7f7f7;
}

.bs-popover-auto[x-placement^="left"],
.bs-popover-left {
    margin-right: 0.5rem;
}

.bs-popover-auto[x-placement^="left"] .arrow,
.bs-popover-left .arrow {
    right: calc((0.5rem + 1px) * -1);
    width: 0.5rem;
    height: 1rem;
    margin: 0.3rem 0;
}

.bs-popover-auto[x-placement^="left"] .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::before,
.bs-popover-left .arrow::after,
.bs-popover-left .arrow::before {
    border-width: 0.5rem 0 0.5rem 0.5rem;
}

.bs-popover-auto[x-placement^="left"] .arrow::before,
.bs-popover-left .arrow::before {
    right: 0;
    border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^="left"] .arrow::after,
.bs-popover-left .arrow::after {
    right: 1px;
    border-left-color: #fff;
}

.popover-header {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: inherit;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
    display: none;
}

.popover-body {
    padding: 0.5rem 0.75rem;
    color: #212529;
}

.carousel,
.carousel-inner {
    position: relative;
}

.carousel-inner {
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block;
}

.carousel-item-next,
.carousel-item-prev {
    position: absolute;
    top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .carousel-item-next.carousel-item-left,
    .carousel-item-prev.carousel-item-right {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.active.carousel-item-right,
.carousel-item-next {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .active.carousel-item-right,
    .carousel-item-next {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.active.carousel-item-left,
.carousel-item-prev {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .active.carousel-item-left,
    .carousel-item-prev {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat center center;
    background-size: 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators li {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li::after,
.carousel-indicators li::before {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
}

.carousel-indicators li::before {
    top: -10px;
}

.carousel-indicators li::after {
    bottom: -10px;
}

.carousel-indicators .active,
.ftr_menu_list li a:hover .explore_txt:after {
    background-color: #fff;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}

.align-baseline {
    vertical-align: baseline !important;
}

.align-top {
    vertical-align: top !important;
}

.align-middle {
    vertical-align: middle !important;
}

.align-bottom {
    vertical-align: bottom !important;
}

.align-text-bottom {
    vertical-align: text-bottom !important;
}

.align-text-top {
    vertical-align: text-top !important;
}

.bg-primary {
    background-color: #007bff !important;
}

a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
    background-color: #0062cc !important;
}

.bg-secondary {
    background-color: #6c757d !important;
}

a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
    background-color: #545b62 !important;
}

.bg-success {
    background-color: #28a745 !important;
}

a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
    background-color: #1e7e34 !important;
}

.bg-info {
    background-color: #17a2b8 !important;
}

a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
    background-color: #117a8b !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
    background-color: #d39e00 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
    background-color: #bd2130 !important;
}

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

a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
    background-color: #dae0e5 !important;
}

.bg-dark {
    background-color: #343a40 !important;
}

a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
    background-color: #1d2124 !important;
}

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

.bg-transparent {
    background-color: transparent !important;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.border-right {
    border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
    border-left: 1px solid #dee2e6 !important;
}

.border-0 {
    border: 0 !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-right-0 {
    border-right: 0 !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-left-0 {
    border-left: 0 !important;
}

.border-primary {
    border-color: #007bff !important;
}

.border-secondary {
    border-color: #6c757d !important;
}

.border-success {
    border-color: #28a745 !important;
}

.border-info {
    border-color: #17a2b8 !important;
}

.border-warning {
    border-color: #ffc107 !important;
}

.border-danger {
    border-color: #dc3545 !important;
}

.border-light {
    border-color: #f8f9fa !important;
}

.border-dark {
    border-color: #343a40 !important;
}

.border-white {
    border-color: #fff !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.rounded-right,
.rounded-top {
    border-top-right-radius: 0.25rem !important;
}

.rounded-top {
    border-top-left-radius: 0.25rem !important;
}

.rounded-right {
    border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom,
.rounded-left {
    border-bottom-left-radius: 0.25rem !important;
}

.rounded-bottom {
    border-bottom-right-radius: 0.25rem !important;
}

.rounded-left {
    border-top-left-radius: 0.25rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.clearfix::after {
    clear: both;
}

.d-none,
ul.mbl_menu_items>li>ul>li>ul {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }
    .d-sm-inline {
        display: inline !important;
    }
    .d-sm-inline-block {
        display: inline-block !important;
    }
    .d-sm-block {
        display: block !important;
    }
    .d-sm-table {
        display: table !important;
    }
    .d-sm-table-row {
        display: table-row !important;
    }
    .d-sm-table-cell {
        display: table-cell !important;
    }
    .d-sm-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
    .d-md-inline {
        display: inline !important;
    }
    .d-md-inline-block {
        display: inline-block !important;
    }
    .d-md-block {
        display: block !important;
    }
    .d-md-table {
        display: table !important;
    }
    .d-md-table-row {
        display: table-row !important;
    }
    .d-md-table-cell {
        display: table-cell !important;
    }
    .d-md-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-inline {
        display: inline !important;
    }
    .d-lg-inline-block {
        display: inline-block !important;
    }
    .d-lg-block {
        display: block !important;
    }
    .d-lg-table {
        display: table !important;
    }
    .d-lg-table-row {
        display: table-row !important;
    }
    .d-lg-table-cell {
        display: table-cell !important;
    }
    .d-lg-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }
    .d-xl-inline {
        display: inline !important;
    }
    .d-xl-inline-block {
        display: inline-block !important;
    }
    .d-xl-block {
        display: block !important;
    }
    .d-xl-table {
        display: table !important;
    }
    .d-xl-table-row {
        display: table-row !important;
    }
    .d-xl-table-cell {
        display: table-cell !important;
    }
    .d-xl-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media print {
    .d-print-none {
        display: none !important;
    }
    .d-print-inline {
        display: inline !important;
    }
    .d-print-inline-block {
        display: inline-block !important;
    }
    .d-print-block {
        display: block !important;
    }
    .d-print-table {
        display: table !important;
    }
    .d-print-table-row {
        display: table-row !important;
    }
    .d-print-table-cell {
        display: table-cell !important;
    }
    .d-print-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-print-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.clearfix::after,
.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.embed-responsive-21by9::before {
    padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive-4by3::before {
    padding-top: 75%;
}

.embed-responsive-1by1::before {
    padding-top: 100%;
}

.flex-column,
.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-column-reverse,
.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

@media (min-width: 576px) {
    .flex-sm-column,
    .flex-sm-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-sm-column-reverse,
    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-sm-column-reverse {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-sm-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-sm-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-sm-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-sm-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-sm-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-sm-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-sm-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 768px) {
    .flex-md-column,
    .flex-md-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-md-column-reverse,
    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-md-column-reverse {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-md-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-md-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-md-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-md-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-md-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-md-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-md-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 992px) {
    .flex-lg-column,
    .flex-lg-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-lg-column-reverse,
    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-lg-column-reverse {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-lg-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-lg-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-lg-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-lg-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-lg-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-lg-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-lg-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1200px) {
    .flex-xl-column,
    .flex-xl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-xl-column-reverse,
    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-xl-column-reverse {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .justify-content-xl-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-xl-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-xl-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-xl-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-xl-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-xl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-xl-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.float-none {
    float: none !important;
}

@media (min-width: 576px) {
    .float-sm-left {
        float: left !important;
    }
    .float-sm-right {
        float: right !important;
    }
    .float-sm-none {
        float: none !important;
    }
}

@media (min-width: 768px) {
    .float-md-left {
        float: left !important;
    }
    .float-md-right {
        float: right !important;
    }
    .float-md-none {
        float: none !important;
    }
}

@media (min-width: 992px) {
    .float-lg-left {
        float: left !important;
    }
    .float-lg-right {
        float: right !important;
    }
    .float-lg-none {
        float: none !important;
    }
}

@media (min-width: 1200px) {
    .float-xl-left {
        float: left !important;
    }
    .float-xl-right {
        float: right !important;
    }
    .float-xl-none {
        float: none !important;
    }
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}

.fixed-bottom,
.fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-top {
    top: 0;
}

.fixed-bottom {
    bottom: 0;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    -webkit-clip-path: none;
    clip-path: none;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100,
.home-desi-cat iframe {
    height: 100% !important;
}

.mw-100 {
    max-width: 100% !important;
}

.mh-100 {
    max-height: 100% !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
    padding-left: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important;
    }
    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important;
    }
    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important;
    }
    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important;
    }
    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important;
    }
    .m-sm-1 {
        margin: 0.25rem !important;
    }
    .mt-sm-1,
    .my-sm-1 {
        margin-top: 0.25rem !important;
    }
    .mr-sm-1,
    .mx-sm-1 {
        margin-right: 0.25rem !important;
    }
    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-sm-1,
    .mx-sm-1 {
        margin-left: 0.25rem !important;
    }
    .m-sm-2 {
        margin: 0.5rem !important;
    }
    .mt-sm-2,
    .my-sm-2 {
        margin-top: 0.5rem !important;
    }
    .mr-sm-2,
    .mx-sm-2 {
        margin-right: 0.5rem !important;
    }
    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-sm-2,
    .mx-sm-2 {
        margin-left: 0.5rem !important;
    }
    .m-sm-3 {
        margin: 1rem !important;
    }
    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important;
    }
    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important;
    }
    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important;
    }
    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important;
    }
    .m-sm-4 {
        margin: 1.5rem !important;
    }
    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important;
    }
    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important;
    }
    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important;
    }
    .m-sm-5 {
        margin: 3rem !important;
    }
    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important;
    }
    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important;
    }
    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important;
    }
    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important;
    }
    .p-sm-0 {
        padding: 0 !important;
    }
    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important;
    }
    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important;
    }
    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important;
    }
    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important;
    }
    .p-sm-1 {
        padding: 0.25rem !important;
    }
    .pt-sm-1,
    .py-sm-1 {
        padding-top: 0.25rem !important;
    }
    .pr-sm-1,
    .px-sm-1 {
        padding-right: 0.25rem !important;
    }
    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-sm-1,
    .px-sm-1 {
        padding-left: 0.25rem !important;
    }
    .p-sm-2 {
        padding: 0.5rem !important;
    }
    .pt-sm-2,
    .py-sm-2 {
        padding-top: 0.5rem !important;
    }
    .pr-sm-2,
    .px-sm-2 {
        padding-right: 0.5rem !important;
    }
    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-sm-2,
    .px-sm-2 {
        padding-left: 0.5rem !important;
    }
    .p-sm-3 {
        padding: 1rem !important;
    }
    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important;
    }
    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important;
    }
    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important;
    }
    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important;
    }
    .p-sm-4 {
        padding: 1.5rem !important;
    }
    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important;
    }
    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important;
    }
    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important;
    }
    .p-sm-5 {
        padding: 3rem !important;
    }
    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important;
    }
    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important;
    }
    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important;
    }
    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important;
    }
    .m-sm-auto {
        margin: auto !important;
    }
    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important;
    }
    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important;
    }
    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important;
    }
    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important;
    }
    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important;
    }
    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important;
    }
    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important;
    }
    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important;
    }
    .m-md-1 {
        margin: 0.25rem !important;
    }
    .mt-md-1,
    .my-md-1 {
        margin-top: 0.25rem !important;
    }
    .mr-md-1,
    .mx-md-1 {
        margin-right: 0.25rem !important;
    }
    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-md-1,
    .mx-md-1 {
        margin-left: 0.25rem !important;
    }
    .m-md-2 {
        margin: 0.5rem !important;
    }
    .mt-md-2,
    .my-md-2 {
        margin-top: 0.5rem !important;
    }
    .mr-md-2,
    .mx-md-2 {
        margin-right: 0.5rem !important;
    }
    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-md-2,
    .mx-md-2 {
        margin-left: 0.5rem !important;
    }
    .m-md-3 {
        margin: 1rem !important;
    }
    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important;
    }
    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important;
    }
    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important;
    }
    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important;
    }
    .m-md-4 {
        margin: 1.5rem !important;
    }
    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important;
    }
    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important;
    }
    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important;
    }
    .m-md-5 {
        margin: 3rem !important;
    }
    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important;
    }
    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important;
    }
    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important;
    }
    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important;
    }
    .p-md-0 {
        padding: 0 !important;
    }
    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important;
    }
    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important;
    }
    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important;
    }
    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important;
    }
    .p-md-1 {
        padding: 0.25rem !important;
    }
    .pt-md-1,
    .py-md-1 {
        padding-top: 0.25rem !important;
    }
    .pr-md-1,
    .px-md-1 {
        padding-right: 0.25rem !important;
    }
    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-md-1,
    .px-md-1 {
        padding-left: 0.25rem !important;
    }
    .p-md-2 {
        padding: 0.5rem !important;
    }
    .pt-md-2,
    .py-md-2 {
        padding-top: 0.5rem !important;
    }
    .pr-md-2,
    .px-md-2 {
        padding-right: 0.5rem !important;
    }
    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-md-2,
    .px-md-2 {
        padding-left: 0.5rem !important;
    }
    .p-md-3 {
        padding: 1rem !important;
    }
    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important;
    }
    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important;
    }
    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important;
    }
    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important;
    }
    .p-md-4 {
        padding: 1.5rem !important;
    }
    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important;
    }
    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important;
    }
    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important;
    }
    .p-md-5 {
        padding: 3rem !important;
    }
    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important;
    }
    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important;
    }
    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important;
    }
    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important;
    }
    .m-md-auto {
        margin: auto !important;
    }
    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }
    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important;
    }
    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }
    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important;
    }
    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important;
    }
    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important;
    }
    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }
    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important;
    }
    .m-lg-1 {
        margin: 0.25rem !important;
    }
    .mt-lg-1,
    .my-lg-1 {
        margin-top: 0.25rem !important;
    }
    .mr-lg-1,
    .mx-lg-1 {
        margin-right: 0.25rem !important;
    }
    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-lg-1,
    .mx-lg-1 {
        margin-left: 0.25rem !important;
    }
    .m-lg-2 {
        margin: 0.5rem !important;
    }
    .mt-lg-2,
    .my-lg-2 {
        margin-top: 0.5rem !important;
    }
    .mr-lg-2,
    .mx-lg-2 {
        margin-right: 0.5rem !important;
    }
    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-lg-2,
    .mx-lg-2 {
        margin-left: 0.5rem !important;
    }
    .m-lg-3 {
        margin: 1rem !important;
    }
    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important;
    }
    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important;
    }
    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important;
    }
    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important;
    }
    .m-lg-4 {
        margin: 1.5rem !important;
    }
    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important;
    }
    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important;
    }
    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important;
    }
    .m-lg-5 {
        margin: 3rem !important;
    }
    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important;
    }
    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important;
    }
    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important;
    }
    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important;
    }
    .p-lg-0 {
        padding: 0 !important;
    }
    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important;
    }
    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important;
    }
    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important;
    }
    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important;
    }
    .p-lg-1 {
        padding: 0.25rem !important;
    }
    .pt-lg-1,
    .py-lg-1 {
        padding-top: 0.25rem !important;
    }
    .pr-lg-1,
    .px-lg-1 {
        padding-right: 0.25rem !important;
    }
    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-lg-1,
    .px-lg-1 {
        padding-left: 0.25rem !important;
    }
    .p-lg-2 {
        padding: 0.5rem !important;
    }
    .pt-lg-2,
    .py-lg-2 {
        padding-top: 0.5rem !important;
    }
    .pr-lg-2,
    .px-lg-2 {
        padding-right: 0.5rem !important;
    }
    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-lg-2,
    .px-lg-2 {
        padding-left: 0.5rem !important;
    }
    .p-lg-3 {
        padding: 1rem !important;
    }
    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important;
    }
    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important;
    }
    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important;
    }
    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important;
    }
    .p-lg-4 {
        padding: 1.5rem !important;
    }
    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important;
    }
    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important;
    }
    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important;
    }
    .p-lg-5 {
        padding: 3rem !important;
    }
    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important;
    }
    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important;
    }
    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important;
    }
    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important;
    }
    .m-lg-auto {
        margin: auto !important;
    }
    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important;
    }
    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important;
    }
    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important;
    }
    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 !important;
    }
    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important;
    }
    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important;
    }
    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important;
    }
    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important;
    }
    .m-xl-1 {
        margin: 0.25rem !important;
    }
    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.25rem !important;
    }
    .mr-xl-1,
    .mx-xl-1 {
        margin-right: 0.25rem !important;
    }
    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-xl-1,
    .mx-xl-1 {
        margin-left: 0.25rem !important;
    }
    .m-xl-2 {
        margin: 0.5rem !important;
    }
    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.5rem !important;
    }
    .mr-xl-2,
    .mx-xl-2 {
        margin-right: 0.5rem !important;
    }
    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-xl-2,
    .mx-xl-2 {
        margin-left: 0.5rem !important;
    }
    .m-xl-3 {
        margin: 1rem !important;
    }
    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important;
    }
    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important;
    }
    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important;
    }
    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important;
    }
    .m-xl-4 {
        margin: 1.5rem !important;
    }
    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important;
    }
    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important;
    }
    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important;
    }
    .m-xl-5 {
        margin: 3rem !important;
    }
    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important;
    }
    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important;
    }
    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important;
    }
    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important;
    }
    .p-xl-0 {
        padding: 0 !important;
    }
    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important;
    }
    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important;
    }
    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important;
    }
    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important;
    }
    .p-xl-1 {
        padding: 0.25rem !important;
    }
    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.25rem !important;
    }
    .pr-xl-1,
    .px-xl-1 {
        padding-right: 0.25rem !important;
    }
    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-xl-1,
    .px-xl-1 {
        padding-left: 0.25rem !important;
    }
    .p-xl-2 {
        padding: 0.5rem !important;
    }
    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.5rem !important;
    }
    .pr-xl-2,
    .px-xl-2 {
        padding-right: 0.5rem !important;
    }
    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-xl-2,
    .px-xl-2 {
        padding-left: 0.5rem !important;
    }
    .p-xl-3 {
        padding: 1rem !important;
    }
    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important;
    }
    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important;
    }
    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important;
    }
    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important;
    }
    .p-xl-4 {
        padding: 1.5rem !important;
    }
    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important;
    }
    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important;
    }
    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important;
    }
    .p-xl-5 {
        padding: 3rem !important;
    }
    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important;
    }
    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important;
    }
    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important;
    }
    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important;
    }
    .m-xl-auto {
        margin: auto !important;
    }
    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important;
    }
    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important;
    }
    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important;
    }
    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important;
    }
}

.text-justify {
    text-align: justify !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important;
    }
    .text-sm-right {
        text-align: right !important;
    }
    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }
    .text-md-right {
        text-align: right !important;
    }
    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }
    .text-lg-right {
        text-align: right !important;
    }
    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important;
    }
    .text-xl-right {
        text-align: right !important;
    }
    .text-xl-center {
        text-align: center !important;
    }
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-italic {
    font-style: italic !important;
}

.text-white {
    color: #fff !important;
}

.text-primary {
    color: #007bff !important;
}

a.text-primary:focus,
a.text-primary:hover {
    color: #0062cc !important;
}

.text-secondary {
    color: #6c757d !important;
}

a.text-secondary:focus,
a.text-secondary:hover {
    color: #545b62 !important;
}

.text-success {
    color: #28a745 !important;
}

a.text-success:focus,
a.text-success:hover {
    color: #1e7e34 !important;
}

.text-info {
    color: #17a2b8 !important;
}

a.text-info:focus,
a.text-info:hover {
    color: #117a8b !important;
}

.text-warning {
    color: #ffc107 !important;
}

a.text-warning:focus,
a.text-warning:hover {
    color: #d39e00 !important;
}

.text-danger {
    color: #dc3545 !important;
}

a.text-danger:focus,
a.text-danger:hover {
    color: #bd2130 !important;
}

.text-light {
    color: #f8f9fa !important;
}

a.text-light:focus,
a.text-light:hover {
    color: #dae0e5 !important;
}

.text-dark {
    color: #343a40 !important;
}

a.text-dark:focus,
a.text-dark:hover {
    color: #1d2124 !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

@media print {
    *,
     ::after,
     ::before {
        text-shadow: none !important;
        box-shadow: none !important;
    }
    a:not(.btn) {
        text-decoration: underline;
    }
    abbr[title]::after {
        content: " (" attr(title) ")";
    }
    pre {
        white-space: pre-wrap !important;
    }
    blockquote,
    pre {
        border: 1px solid #999;
    }
    thead {
        display: table-header-group;
    }
    blockquote,
    img,
    pre,
    tr {
        page-break-inside: avoid;
    }
    h2,
    h3,
    p {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    @page {
        size: a3;
    }
    .container,
    body {
        min-width: 992px !important;
    }
    .navbar {
        display: none;
    }
    .badge {
        border: 1px solid #000;
    }
    .table {
        border-collapse: collapse !important;
    }
    .table td,
    .table th {
        background-color: #fff !important;
    }
    .table-bordered td,
    .table-bordered th {
        border: 1px solid #ddd !important;
    }
}

.jarallax {
    position: relative;
    z-index: 0;
}

.jarallax>.jarallax-img {
    position: absolute;
    object-fit: cover;
    font-family: "object-fit: cover;";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@font-face {
    font-family: swiper-icons;
    src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA) format("woff");
    font-weight: 400;
    font-style: normal;
}

:root {
    --swiper-theme-color: #007aff;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-container-vertical>.swiper-wrapper {
    flex-direction: column;
}

.swiper-slide,
.swiper-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-wrapper {
    z-index: 1;
    display: flex;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0, 0, 0);
}

.swiper-container-multirow-column>.swiper-wrapper,
.swiper-container-multirow>.swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-container-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    flex-shrink: 0;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

.swiper-container-3d {
    perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
    scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
    scroll-snap-type: y mandatory;
}

:root {
    --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
    left: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
    content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
    content: "next";
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
    --swiper-navigation-color: #ffffff;
}

.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
    --swiper-navigation-color: #000000;
}

.swiper-button-lock {
    display: none;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}

button.swiper-pagination-bullet {
    border: 0;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: 0.2s transform, 0.2s top;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 0.2s transform, 0.2s left;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical>.swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-white {
    --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
    --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
    display: none;
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.slick-slide.slick-loading img,
.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube,
.swiper-container-flip {
    overflow: visible;
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    transform-origin: 100%0;
}

.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next+.swiper-slide,
.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.slick-slide.dragging img,
.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.slick-list,
.slick-slider {
    position: relative;
    display: block;
}

.slick-slider {
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.glb_srch_field form input.search-field:focus,
.slick-dots li button:focus,
.slick-dots li button:hover,
.slick-list:focus {
    outline: 0;
}

.slick-list.dragging {
    cursor: pointer;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:after,
.slick-track:before {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-initialized .slick-slide,
.slick-slide img {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-loading .slick-list {
    background: #fff url(ajax-loader.html) center center no-repeat;
    background: #fff url(../slick/ajax-loader.gif) center center no-repeat;
}

@font-face {
    font-family: slick;
    font-weight: 400;
    font-style: normal;
    src: url(fonts/slick.html);
    src: url(fonts/slickd41d.html?#iefix) format("embedded-opentype"), url(fonts/slick.woff) format("woff"), url(fonts/slick.ttf) format("truetype"), url(fonts/slick.svg#slick) format("svg");
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button,
.slick-next,
.slick-prev {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: 0 0;
}

.slick-dots li button:before {
    font-family: slick;
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "•";
    text-align: center;
    opacity: 0.25;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: slick;
    font-weight: 400;
    font-style: normal;
    src: url(../slick/fonts/slick.eot);
    src: url(../slick/fonts/slickd41d.eot?#iefix) format("embedded-opentype"), url(../slick/fonts/slick.woff) format("woff"), url(../slick/fonts/slick.ttf) format("truetype"), url(../slick/fonts/slick.svg#slick) format("svg");
}

.slick-next,
.slick-prev {
    position: absolute;
    top: 50%;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    color: transparent;
    outline: 0;
    background: 0 0;
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before,
.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    opacity: 1;
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    opacity: 0.25;
}

.slick-next:before,
.slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: 0.75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir="rtl"] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    content: "←";
}

.slick-next:before,
[dir="rtl"] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: -25px;
}

[dir="rtl"] .slick-next {
    right: auto;
    left: -25px;
}

[dir="rtl"] .slick-next:before {
    content: "←";
}

.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.jctkr-wrapper ul,
.slick-dots {
    position: absolute;
    margin: 0;
    padding: 0;
    list-style: none;
}

.slick-dots {
    bottom: -25px;
    display: block;
    width: 100%;
    text-align: center;
}

.slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: #000;
}

.jctkr-wrapper,
.jctkr-wrapper * {
    box-sizing: border-box;
}

.jctkr-wrapper {
    position: relative;
    width: 100%;
    height: 80px;
    vertical-align: top;
    overflow: hidden;
}

.jctkr-wrapper ul {
    left: 0;
    top: 0;
    height: 100%;
    white-space: nowrap;
    font-size: 0;
    text-align: left;
    opacity: 0;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

.jctkr-wrapper ul li {
    display: flex;
    font-family: sans-serif;
    font-size: 16px;
    align-items: center;
}

.jctkr-label,
.jctkr-wrapper {
    display: inline-block;
}

header.home_header_wrp {
    position: fixed;
    top: 0;
    z-index: 3;
    width: 100%;
}

header.home_header_wrp.homesticky {
    border-bottom: 1px solid rgb(0 0 0/10%);
}

nav.home_navbar {
    display: flex;
    justify-content: space-between;
}

.homelogo_hold a {
    display: flex;
    background: #fff;
}

.homelogo_hold a img {
    width: 6.661786237188873vw;
    transition: 0.3s;
}

.homesticky .homelogo_hold a img.homelogo_img {
    width: 4.099560761346998vw;
}

.homesticky .homelogo_hold a img.homelogo_slogan,
.swiper-slide-active .syncslider_caption h4:after {
    width: 0;
}

.home_main_menu {
    width: 100%;
}

.homesticky .home_main_menu {
    width: calc(100% - 0.6588579795021963vw);
}

.mainmenu_left_right {
    display: flex;
    width: 100%;
    background: #fff;
}

ul.mainmenu_left_wrp {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0 0 0 5.124450951683748vw;
}

.homesticky ul.mainmenu_left_wrp {
    padding: 0 0 0 2.562225475841874vw;
}

ul.mainmenu_left_wrp>li {
    flex-wrap: wrap;
    display: flex;
}

.open_dropdow_mega_menu .plusminus_anim.nintydeg span:first-child {
    transform: rotate(180deg);
    opacity: 0;
}

ul.mainmenu_left_wrp>li:not(:first-child) {
    padding: 0 0 0 1.610541727672035vw;
}

.megamenu_left_wrap>ul>li>ul>li>a,
ul.mainmenu_left_wrp>li>a {
    font-family: acumin-pro, sans-serif;
    text-transform: uppercase;
    display: block;
}

ul.mainmenu_left_wrp>li>a {
    color: #000;
    font-size: 0.9248901903367496vw;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    padding: 1.281112737920937vw 0;
}

ul.mainmenu_left_wrp>li>a:after {
    height: var(--threeunit);
    width: 100%;
    content: "";
    background-color: #000;
    transform-origin: right top;
    transform: scaleX(1);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.2s linear;
    /* cursor: url(../images/bc-svg8.svg) 36 45, auto; */
    cursor: default;
}

ul.mainmenu_left_wrp>li.open_dropdow_mega_menu>a:after,
ul.mainmenu_left_wrp>li:hover>a:after {
    -webkit-transform-origin: left top;
    --transform-origin: left top;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
}

.mainmenu_right_wrp {
    margin-left: auto;
    display: flex;
    padding-right: 0;
}

a.home_search_icon {
    display: flex;
    align-items: center;
    padding: 0 1.6837481698389458vw;
    text-decoration: none;
    position: relative;
}

a.ctalink_menubar,
a.home_search_icon span {
    font-size: 1.0248901903367496vw;
    text-transform: uppercase;
    transition: 0.3s;
}

a.home_search_icon span {
    position: relative;
    margin: -0.14641288433382138vw 0.7320644216691069vw 0 0;
    color: #000;
    font-family: acumin-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.homesticky a.home_search_icon {
    border-left: var(--oneunit) solid #dcdcdc;
    padding: 0 1.281112737920937vw;
}

.homesticky a.home_search_icon span {
    width: 0;
    overflow: hidden;
    display: none;
    visibility: hidden;
}

a.home_search_icon svg {
    width: 14px;
    height: 14px;
}

.home_other_cta {
    display: flex;
    width: 16.323572474377746vw;
    overflow: hidden;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    margin-right: -13.323572474377746vw;
}

a.ctalink_menubar {
    font-family: acumin-pro, sans-serif !important;
    text-align: center;
    width: var(--gridcell);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.ctalink_menubar:hover {
    letter-spacing: 0.8px;
}

.homesticky .home_other_cta {
    opacity: 1;
    visibility: initial;
    margin-right: 0;
}

a.ctalink_menubar_purple {
    color: #fff;
    background: #5926c4;
}
a.ctalink_menubar_yellow {
    color: #000;
    background: var(--lightyellow);
}

a.ctalink_menubar_black {
    background: var(--black);
    color: #fff;
}

.homemain_banner_wrp {
    height: calc(var(--gridcell) * 9);
    overflow: hidden;
}

.homemain_banner_inner {
    position: relative;
    z-index: 0;
}

.home_banner_item,
.homemain_banner_inner {
    height: calc(var(--gridcell) * 9);
    width: 100%;
}

.home_move_image {
    position: absolute;
    width: 100%;
    min-height: calc(var(--gridcell) * 9);
    left: 10%;
    top: -3.6603221083455346vw;
    background-repeat: no-repeat;
    background-color: #bebcbd;
    background-image: url(../images/homeban-bg.webp);
    background-size: 120%;
    transition: opacity ease-in 0.3s;
}

.home_move_image img {
    width: 108%;
    position: relative;
    left: 10%;
}

.home_banner_caption,
.home_door_image {
    position: absolute;
    width: 100%;
    height: calc(var(--gridcell) * 9);
}

.home_door_image {
    z-index: 1;
    left: 0;
    right: 0;
}

.home_door_image img,
.sync_leftthumb img {
    width: 100%;
    max-width: 100%;
    height: auto; 
}

.home_banner_caption {
    z-index: 2;
    padding: 18.45vw 6.661786237188873vw 6.661786237188873vw 6.588579795021962vw;
}

.homebanner_inner {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-size: 6vw;
    line-height: 6.588579795021962vw;
    color: #fff;
    z-index: 2;
    position: relative;
    text-transform: uppercase;
}

span.home_slider_dash {
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
    height: 0.6578947368421052vw;
    margin: -1.2445095168374818vw 0.43923865300146414vw 0;
    min-width: 30px;
}

span.homeslider_dash_1 {
    width: 2.9282576866764276vw;
}

span.homeslider_dash_2 {
    width: 17.20351390922401vw;
}

.glb_srch_field label,
span.homeslider_dash_3,
span.homeslider_dash_4 {
    display: none;
}

span.homeslider_dash_5 {
    width: 9.150805270863836vw;
    margin-left: 0;
}

.home_txtslider_container {
    overflow: hidden;
    display: inline-block;
    height: 5.051244509516837vw;
    vertical-align: top;
    margin-top: 1.4641288433382138vw;
}

.home_txtslider_container_2 {
    height: 7.686676427525622vw;
}

.home_txtslider_container_2 .home_txtslider_item {
    text-transform: capitalize;
}

.swipe-width50 {
    width: 48%;
}

.home_txtslider_item {
    height: 6.69vw;
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-size: 6vw;
    color: #fff;
    text-transform: uppercase;
    line-height: 3.8799414348462666vw;
}

.dropdown_mega_menu {
    position: absolute;
    z-index: -1;
    background: #fff;
    width: 84%;
    right: 0;
    top: calc(-35.87115666178624vw + 4.099560761346998vw);
    border-top: 1px solid #bebcbd80;
    border-bottom: 1px solid #bebcbd80;
    border-left: 1px solid #bebcbd80;
    transition: 0.4s;
    height: 41.32vw;
    visibility: hidden;
    opacity: 0;
}

.homesticky .dropdown_mega_menu {
    width: 95.9%;
}

.dropdown_mega_menu_inner {
    width: 94.4%;
}

.dropdown_mega_menu_inner .dropdown_mega_menu,
.open_dropdow_mega_menu .dropdown_mega_menu {
    opacity: 1;
    visibility: initial;
    top: 4.099560761346998vw;
}

.open_dropdow_mega_menu .dropdown_mega_menu_inner {
    top: 100%;
}

.close_mega_menu {
    position: absolute;
    left: 14px;
    top: 60px;
    cursor: pointer;
    display: none;
    width: 22px;
}

.mega_manu_edge {
    width: 100%;
    margin: 0 0 0 auto;
    display: flex;
}

.mega_menu_align {
    width: 97.2%;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
}

.homesticky .mega_menu_align {
    width: 97.5%;
}

.megamenu_left_wrap {
    width: 64%;
    padding: 3.9282576866764276vw 0;
}

.megamenu_left_wrap>ul {
    padding: 0;
    list-style: none;
}

.megamenu_left_wrap>ul>li {
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 1023px) {
    .megamenu_left_wrap>ul>li:last-child {
        display: none;
    }
}

.megamenu_left_wrap>ul>li>a {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.megamenu_left_wrap>ul>li>a:before {
    content: attr(data-content);
    position: absolute;
    left: 0;
    z-index: 1;
    color: #000;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    -webkit-text-stroke: var(--oneunit) #000;
    transition: 0.2s linear;
    opacity: 0;
}

.megamenu_left_wrap>ul>li:hover>a:before,
.megamenu_right_wrap:hover .megamenu_right_inner>div>ul>li>a:before {
    opacity: 1;
}

ul.megamenu_hold>li>i {
    width: 11px;
    height: 11px;
    top: 2.049780380673499vw;
    position: relative;
    left: initial;
    right: inherit;
    transform: translate(0, -50%);
    margin-left: 7px;
}

ul.toggle_menu_main li>i {
    top: 2.4890190336749636vw;
}

.megamenu_left_wrap>ul>li>ul {
    display: flex;
    list-style: none;
    padding: 14px 0 0 10px;
}

.megamenu_left_wrap>ul>li>ul>li {
    padding-left: 8px;
}

.megamenu_left_wrap>ul>li>ul>li>a {
    color: #999;
    border: 1px solid #999;
    border-radius: 8px;
    padding: 3px 6px;
    font-size: 11px;
    font-weight: 200;
}

.megamenu_left_wrap>ul>li:hover ul>li>a {
    background: #ffd815;
    border-color: #ffd815;
    color: #000;
    font-weight: 400;
}

.megamenu_right_wrap {
    width: 36%;
    border-left: 1px solid #bebcbd80;
    padding: 2.9282576866764276vw 7.174231332357247vw 2.9282576866764276vw 1.9765739385065886vw;
    cursor: pointer;
    transition: 0.3s;
}

.megamenu_right_wrap:hover {
    background: #ffd815;
}

.megamenu_right_inner {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.megamenu_right_inner:hover {
    cursor: url(../images/how-we-teach.svg) 36 42, auto;
}

.megamenu_right_inner ul li a:hover {
    cursor: url(../images/how-we-teach.svg) 36 42, auto;
}

.megamenu_right_inner>div>ul {
    list-style: none;
    padding: 0 0 13px;
}

/* .megamenu_left_wrap>ul>li>a,
.megamenu_right_inner>div>ul>li>a {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-size: 3.6603221083455346vw;
    line-height: 4.24597364568082vw;
    color: #fff;
    -webkit-text-stroke: var(--oneunit) #9b9b9b;
    position: relative;
}*/  
.megamenu_left_wrap>ul>li>a {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-size: 2.0603221083455346vw;
    line-height: 2.44597364568082vw;
    color: #fff;
    -webkit-text-stroke: var(--oneunit) #9b9b9b;
    position: relative;
}  
.megamenu_right_inner>div>ul>li>a {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-size: 3.6603221083455346vw;
    line-height: 4.24597364568082vw;
    color: #fff;
    -webkit-text-stroke: var(--oneunit) #9b9b9b;
    position: relative;
}

.megamenu_right_inner>div>ul>li>a {
    font-style: normal;
    letter-spacing: normal;
    white-space: nowrap;
    -webkit-text-fill-color: #fff;
    display: inline-block;
}

.megamenu_right_inner>div>ul>li>a:before {
    content: attr(data-content);
    position: absolute;
    left: 0;
    z-index: 1;
    color: #000;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    -webkit-text-stroke: var(--oneunit) #000;
    transition: 0.2s linear;
    opacity: 0;
}

.megamenu_right_inner>div>ul>li>a:hover,
.notification_alert>div p a:hover {
    text-decoration: none;
}

.megamenu_right_inner>div>p {
    font-size: 16px;
    line-height: 24px;
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    margin: 0;
    color: #4d4d4d;
}

.megamenu_right_wrap:hover p {
    color: #000;
}

.megamenu_right_inner>a.explore_without_txt span.explore_arrow {
    margin: 0;
    width: 36px;
}

.megamenu_right_wrap:hover>.megamenu_right_inner>a.explore_without_txt span.explore_arrow {
    margin: 0;
    width: 50px;
}

.megamenu_right_inner>a.explore_without_txt span.explore_arrow:before {
    width: 20px;
    height: 20px;
    top: -6px;
    right: 2px;
}

.body_openmega_overflow {
    overflow: hidden;
}

.mega_menu_bg_layer {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #00000063;
    top: 0;
    z-index: -2;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
    cursor: url(../images/close-cursor.svg) 0 0, pointer;
}

.mega_menu_bg_layer_active {
    visibility: initial;
    opacity: 1;
}

.glb_srch_field form input.search-field {
    width: 100%;
    outline: 0;
    border-width: 0 0 1px;
    border-style: solid;
    border-color: #ccc;
    font-size: 1.610541727672035vw;
    line-height: 2.781844802342606vw;
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    padding: 0.21961932650073207vw 0;
    color: #000;
}

.glb_srch_field form input.search-field::placeholder {
    color: #ccc;
    opacity: 1;
}

.glb_srch_field form input.search-field:-ms-input-placeholder {
    color: #ccc;
}

.glb_srch_field form input.search-field::-ms-input-placeholder {
    color: #ccc;
}

.glb_srch_field form input.search-submit {
    display: none;
}

* {
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    word-break: normal;
    word-wrap: normal;
}

em {
    font-style: italic;
    font-weight: 300;
}

.overflow_hidden {
    overflow: hidden;
}

:root {
    --zerounit: 0px;
    --oneunit: 1px;
    --twounit: 2px;
    --threeunit: 3px;
    --fourunit: 4px;
    --lightyellow: #ffd815;
    --black: #000000;
    --gridcell: 6.666vw;
    --border-color: #bebcbd80;
    --red: #e13212;
    --blue: #5926c4;
    --white: #fff;
    --scale-value: 0;
}

.textyellow {
    color: var(--lightyellow);
}

.bgyellow {
    background-color: var(--lightyellow);
}

.textwhite {
    color: var(--white);
}

.bgwhite {
    background-color: var(--white);
}

.textblue {
    color: var(--blue);
}

.bgblue {
    background-color: var(--blue);
}

.custom_accordian_item.active .accordian_heading h4,
.custom_accordian_item:hover .accordian_heading h4,
.textred {
    color: var(--red);
}
.custom_accordian_item.active .accordian_heading h3,
.custom_accordian_item:hover .accordian_heading h3,
.textred {
    color: var(--red);
}
 
.bgred {
    background-color: var(--red);
}

.textblack {
    color: var(--black);
}

.bgblack {
    background-color: var(--black);
}

.lightyellow_color {
    color: var(--lightyellow);
}

.lightyellow_bg {
    background-color: var(--lightyellow);
}

.notification_alert {
    display: flex;
    background-color: #ffd815;
    color: #0a0a0a;
    justify-content: center;
    position: relative;
    padding: 0;
    height: 0;
    transition: 0.2s linear;
    align-items: center;
    overflow: hidden;
}

.show_notice_alert {
    height: 34px;
    visibility: initial;
    padding: 3px 0 7px;
}

.notification_alert>div p {
    margin: 0;
    color: #0a0a0a;
    font-family: acumin-pro, sans-serif;
}

.notification_alert>div p a {
    color: #0a0a0a;
    border-bottom: 1px solid #0a0a0a;
    font-family: acumin-pro, sans-serif;
}

.notification_alert>a.close_notification {
    /* cursor: url(../images/bc-svg8.svg) 3 0, auto; */
    cursor: default;
    font-family: acumin-pro, sans-serif;
    color: #0a0a0a;
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: -4px;
    transform: rotate(45deg);
    width: 30px;
    display: block;
    height: 30px;
    text-align: center;
}

.notification_alert>a.close_notification:hover {
    text-decoration: none;
    transform: scale(1.1) rotate(45deg);
}

.secondary_header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: #fff;
}

.header_fixed_border,
.secondary_header.header_brd_btm {
    border-bottom: var(--oneunit) solid var(--border-color);
}

::-webkit-scrollbar {
    width: 0.1px;
    height: var(--zerounit);
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.internal_navbar {
    display: flex;
    justify-content: space-between;
}

.sitelogo_toggle {
    width: 8.638360175695462vw;
    transition: 0.3s linear;
    background: #fff;
    position: relative;
}

.logo_togglebtn_hold:after,
.sitelogo_toggle.addafterline:after {
    content: "";
    position: absolute;
    border-bottom: var(--oneunit) solid #dcdcdc;
    width: 100%;
}

.sitelogo_toggle.addafterline:after {
    height: 0.07320644216691069vw;
    bottom: 2.635431918008785vw;
}

.logo_togglebtn_hold {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo_togglebtn_hold:after {
    left: 0;
    bottom: -0.07320644216691069vw;
    transition: 0.22s linear;
}

.secondary_header.scrolled .logo_togglebtn_hold:after {
    content: "";
    border-bottom: 0;
}

.logo_togglebtn_hold.sitelog_borderwith:after {
    width: 0;
    opacity: 0;
}

.scrolled .logo_togglebtn_hold {
    border: 0;
}

.logo_togglebtn_hold a {
    display: block;
}

.logo_togglebtn_hold a img {
    width: 4.099560761346998vw;
    transition: 0.22s linear;
    max-width: 100%;
    height: auto; 
}

.scrolled .logo_togglebtn_hold a img {
    width: 3.074670571010249vw;
}

.nav_tgl_btn,
.nav_tgl_btn span {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}

.nav_tgl_btn {
    width: 1.8301610541727673vw;
    height: 1.5373352855051245vw;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-right: 1.0980966325036603vw;
    /* -webkit-animation: breath 0.5s infinite alternate; */
    /* animation: breath 0.5s infinite alternate; */
    margin-top: 1.3177159590043925vw;
}

.secondary_header.scrolled .nav_tgl_btn {
    margin: 0 1.0980966325036603vw 0 0;
    font-weight: 900;
    /* top: -15px; */
}

.nav_tgl_btn span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #9B9B9B;
    border-radius: 0;
    opacity: 1;
    left: 0;
    right: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    margin: var(--zerounit) auto;
}

.nav_tgl_btn span:nth-child(1) {
    top: var(--zerounit);
}

.nav_tgl_btn span:nth-child(2) {
    top: 0.43923865300146414vw;
    /* height: 0.07320644216691069vw; */
}

.nav_tgl_btn span:nth-child(3) {
    top: 0.8784773060029283vw;
}

.nav_tgl_btn span:nth-child(4) {
    top: 1.3177159590043925vw;
    /* height: 0.07320644216691069vw; */
}

.nav_tgl_btn.open span:nth-child(1) {
    top: 0;
    width: 0%;
}

.nav_tgl_btn.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0.5856515373352855vw;
    height: var(--oneunit);
}

.nav_tgl_btn.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0.5856515373352855vw;
    height: 0.07320644216691069vw;
}

.nav_tgl_btn.open span:nth-child(4) {
    top: 1.171303074670571vw;
    width: 0%;
}

.secondarymenu_rightside {
    width: calc(100% - 8.638360175695462vw);
}

.menu_rightside_top {
    overflow: hidden;
    border-bottom: var(--oneunit) solid #dcdcdc;
    background: #fff;
    transition: 0.22s linear;
}

.menu_rightside_top.menu_rightside_height {
    height: 4.172767203513909vw;
}

.secondary_header.scrolled .menu_rightside_top {
    height: 0;
    border: 0;
    opacity: 0;
}

.removeheight {
    max-height: initial;
}

.toggle_menu_wrp {
    display: none;
}

.toggle_menu_wrp.togglemenu_open {
    display: block;
}

.toggle_menu_main {
    display: flex;
    margin: 0;
    padding: 0;
}

.toggle_menu_main li {
    list-style: none;
    opacity: 0;
    transition: 0.1s linear;
    flex-wrap: wrap;
    display: flex;
}

.showmain_menu li,
.toggle_menu_main>li:hover a:after {
    opacity: 1;
}

.showmain_menu .toggle_menu_main>li:nth-child(1) {
    transition-delay: 0.2s;
}

.toggle_menu_main>li {
    margin-top: 0.7320644216691069vw;
}

.showmain_menu .toggle_menu_main>li:nth-child(2) {
    transition-delay: 0.25s;
}

.showmain_menu .toggle_menu_main>li:nth-child(3) {
    transition-delay: 0.3s;
}

.showmain_menu .toggle_menu_main>li:nth-child(4) {
    transition-delay: 0.35s;
}

.showmain_menu .toggle_menu_main>li:nth-child(5) {
    transition-delay: 0.4s;
}

.showmain_menu .toggle_menu_main>li:nth-child(6) {
    transition-delay: 0.45s;
}

.showmain_menu .toggle_menu_main>li:nth-child(7) {
    transition-delay: 0.5s;
}

.showmain_menu .toggle_menu_main>li:nth-child(8) {
    transition-delay: 0.6s;
}

.showmain_menu .toggle_menu_main>li:nth-child(9) {
    transition-delay: 0.7s;
}

.toggle_menu_main>li:not(:first-child) {
    margin-left: 2.4158125915080526vw;
}

.toggle_menu_main>li>a {
    display: block;
    color: var(--black);
    font-size: 1.0248901903367496vw;
    line-height: 2.781844802342606vw;
    text-transform: uppercase;
    font-family: acumin-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    padding: 1.0980966325036603vw 0 0.21961932650073207vw;
}

.toggle_menu_main>li a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.1903367496339678vw;
    background: #004934;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: 0.2s linear;
}

.prev_next_page {
    display: flex;
    justify-content: space-between;
}

.nextpage_group>li>a.nextpage_link,
.prev_next_page h1,
.prevpage_group>li>a {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    color: #fff;
    -webkit-text-stroke: var(--oneunit) #9b9b9b;
    -webkit-text-fill-color: #fff;
}

.prev_next_page h1 {
    font-size: 4.6875vw;
    margin: 0;
    display: block;
    line-height: 4.479vw;
}

.nextpage_group,
.prevpage_group,
ul.mbl_menu_items {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nextpage_group>li,
.prevpage_group>li {
    display: -moz-box;
    position: relative;
}

.nextpage_group>li>a.nextpage_link,
.prevpage_group>li>a {
    font-size: 4.758418740849195vw;
    line-height: 5.490483162518302vw;
    font-style: normal;
    letter-spacing: normal;
    white-space: nowrap;
    display: inline-block;
    position: relative;
}

a.nextpage_link.hide_element {
    opacity: 0;
    visibility: hidden;
    padding-left: 1.8301610541727673vw;
}

.megamenu_dropdown {
    position: absolute;
    right: -4vw !important;
    bottom: 0;
    overflow: hidden;
    top: 0px;
    /* cursor: url(../images/bc-svg8.svg) 3 0, auto; */
    align-items: center;
    height: 80%;
    width: 50px;
}

.megamenu_dropdown span {
    background-image: url(../images/down.svg);
    width: 1.0248901903367496vw;
    height: 1.171303074670571vw;
    background-size: 100%;
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    /* cursor: url(../images/bc-svg8.svg) 15 15, auto; */
    top: 50%;
    position: relative;
    left: 25%;
}

.prevpage_group>li>a:first-letter,
a.nextpage_link:first-letter {
    text-transform: uppercase;
}

a.nextpage_link.nextpage_size {
    width: 15.95vw;
    position: relative;
    align-self: flex-start;
    transition: 0.3s ease-out;
}

a.nextpage_link:hover {
    width: 17.5vw;
}

a.nextpage_link:before {
    content: "";
    position: absolute;
    width: 1.3177159590043925vw;
    height: 0.7320644216691069vw;
    left: 0;
    bottom: 1.171303074670571vw;
    line-height: initial;
    z-index: 9999;
    border: var(--oneunit) solid #9b9b9b;
    display: none;
}

.prevpage_group>li>a,
.prevpage_group_submenu>li>a:hover,
.searchicon_cta a:hover,
a.nextpage_link {
    text-decoration: none;
    /* cursor: url(../images/bc-svg8.svg) 3 0, auto; */
}

#__eechatIcon {
    z-index: 999999 !important;
}

.prevpage_group_submenu {
    padding: 0.36603221083455345vw 0 1.4641288433382138vw;
    display: none;
}

.prevpage_group_submenu>li {
    list-style: none;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.prevpage_group_submenu>li:last-child,
.slick-track .slick-slide:last-child .textrail_caption h4 span.textrail_dashline {
    display: none;
}

.prevpage_group_submenu>li>a:hover:before,
.prevpage_list_cascading>li {
    opacity: 1;
}

.prevpage_list_cascading>li:nth-child(1) {
    transition-delay: 0.1ms;
}

.mbl_menu_open ul.mbl_menu_items>li:nth-child(1)>a,
.prevpage_list_cascading>li:nth-child(2) {
    transition-delay: 0.2s;
}

.prevpage_list_cascading>li:nth-child(3) {
    transition-delay: 0.3s;
}

.prevpage_list_cascading>li:nth-child(4) {
    transition-delay: 0.4s;
}

.prevpage_list_cascading>li:nth-child(5) {
    transition-delay: 0.5s;
}

.prevpage_list_cascading>li:nth-child(6) {
    transition-delay: 0.6s;
}

.prevpage_list_cascading>li:nth-child(7) {
    transition-delay: 0.7s;
}

.prevpage_list_cascading>li:nth-child(8) {
    transition-delay: 0.8s;
}

.prevpage_group_submenu>li>a {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-size: 3.0758418740849195vw;
    line-height: 3.8490483162518302vw;
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: var(--oneunit) #9b9b9b;
    position: relative;
}

.prevpage_group_submenu>li>a:before {
    content: attr(data-content);
    position: absolute;
    left: 0;
    z-index: 1;
    color: var(--red);
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    -webkit-text-stroke: var(--oneunit) var(--red);
    transition: 0.2s linear;
    opacity: 0;
}

.menu_rightside_bottom {
    background: #fff;
    overflow-y: hidden;
}

.submenu_search_cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom_sub_menu {
    display: flex;
    padding: 0;
    margin: 0;
    overflow-y: hidden;
}

.sub_menu_overviewpage li:first-child a:after {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
}

.bottom_sub_menu li {
    list-style: none;
    margin-right: 1.171303074670571vw;
}

.bottom_sub_menu li a {
    color: var(--black);
    text-transform: uppercase;
    font-family: acumin-pro, sans-serif;
    font-weight: 300;
    text-decoration: none;
    font-size: 0.8052708638360175vw;
    display: block;
    white-space: nowrap;
    position: relative;
}

.bottom_sub_menu li a:after {
    height: var(--threeunit);
    width: 100%;
    content: "";
    background-color: #000;
    transform-origin: right top;
    transform: scaleX(1);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.2s linear;
}

.sub_menu_innerpage li a:hover:after {
    opacity: 1;
}

.bottom_sub_menu li a:hover:after,
.bottom_sub_menu li.active a:after {
    -webkit-transform-origin: left top;
    --transform-origin: left top;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.menu_rightside_bottom,
.menu_rightside_top {
    padding-left: 0;
}

#marker {
    position: absolute;
    display: none;
    height: 0.21961932650073207vw;
    -webkit-transition: width 0.2s, left 0.2s;
    -moz-transition: width 0.2s, left 0.2s;
    -ms-transition: width 0.2s, left 0.2s;
    -o-transition: width 0.2s, left 0.2s;
    transition: width 0.2s, left 0.2s;
    bottom: 0 !important;
}

.bottom_sub_menu li.borderActive~#marker {
    border-bottom: 0.21961932650073207vw solid #000;
}

.searchicon_cta {
    display: flex;
    margin-left: auto;
}

.search_icon {
    padding-left: 0.6588579795021963vw;
    padding-right: 0.6588579795021963vw;
    display: flex;
    align-items: center;
    border-left: var(--oneunit) solid #dcdcdc;
    transition: 0.3s linear;
    width: 2.562225475841874vw;
}

color .search_icon svg {
    width: 1.0248901903367496vw;
    height: 1.0248901903367496vw;
}

.ctalink_sub_menubar,
ul.mbl_menu_items>li>a {
    text-transform: uppercase;
    display: block;
    text-decoration: none;
}

.ctalink_sub_menubar {
    font-size: 0.804093567251462vw;
    font-family: acumin-pro, sans-serif !important;
    text-align: center;
    min-width: 8.66vw;
    transition: 0.2s linear;
}

.ctalink_sub_menubar:hover {
    letter-spacing: 0.8px;
}

.ctalink_yellow,
.ctalink_yellow:hover {
    background: var(--lightyellow);
    color: #000;
}

.ctalink_black,
.ctalink_black:hover {
    background: var(--black);
    color: #fff;
}
.ctalink_purple,
.ctalink_purple:hover {
   background: #5926c4;
    color: #fff;
}

.bottom_sub_menu li a,
.ctalink_sub_menubar,
.search_icon {
    padding-top: 0.7340644216691069vw;
    padding-bottom: 0.7340644216691069vw;
}

.scrolled .bottom_sub_menu li a,
.scrolled .ctalink_sub_menubar,
.scrolled .search_icon {
    padding-top: 0.950683748169839vw;
    padding-bottom: 0.950683748169839vw;
}

@media only screen and (min-width: 1024px) {
    .mbl_syncslider_lifeiiad,
    .mobile_menu_popup {
        display: none;
    }
}

.mobile_menu_popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    left: -100%;
    transition: 0.5s;
}

.mbl_menu_open {
    left: 0;
}

.mbl_menu_hold {
    overflow-x: hidden;
}

ul.mbl_menu_items>li {
    border-width: 1px 0 0;
    border-color: #444;
    border-style: solid;
    position: relative;
}

ul.mbl_menu_items>li>a {
    color: #fff;
    font-size: 22px;
    font-family: acumin-pro, sans-serif;
    font-weight: 300;
    padding: 13px 20px 13px 38px;
    transition: 0.5s linear;
}

.mbl_menu_open ul.mbl_menu_items>li:nth-child(2)>a {
    transition-delay: 0.25s;
}

.mbl_menu_open ul.mbl_menu_items>li:nth-child(3)>a,
.underline_link_list li:nth-child(1) a:after {
    transition-delay: 0.3s;
}

.mbl_menu_open ul.mbl_menu_items>li:nth-child(4)>a {
    transition-delay: 0.35s;
}

.mbl_menu_open ul.mbl_menu_items>li:nth-child(5)>a {
    transition-delay: 0.4s;
}

.mbl_menu_open ul.mbl_menu_items>li:nth-child(6)>a {
    transition-delay: 0.45s;
}

.mbl_menu_open ul.mbl_menu_items>li:nth-child(7)>a {
    transition-delay: 0.5s;
}

.mbl_menu_open ul.mbl_menu_items>li:nth-child(8)>a {
    transition-delay: 0.55s;
}

.mbl_menu_open ul.mbl_menu_items>li:nth-child(9)>a,
.underline_link_list li:nth-child(2) a:after {
    transition-delay: 0.6s;
}

.mbl_menu_open ul.mbl_menu_items>li:nth-child(10)>a {
    transition-delay: 0.65s;
}

@media only screen and (max-width: 1023px) {
    i.mbl_menu_expend_icon {
        position: absolute;
        width: 94px;
        height: 58px;
        right: 0;
        top: 0;
        display: flex;
        align-items: center;
        cursor: pointer;
        padding: 0;
        z-index: 2;
    }
    i.mbl_menu_expend_icon span {
        width: 27px;
        height: 1px;
        background: #fff;
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    i.mbl_menu_expend_icon span:nth-child(1) {
        transform: rotate(90deg);
        transition: cubic-bezier(0.2, 0.01, 0.6, 0.99) 0.3s;
    }
    i.mbl_menu_expend_icon.mlb_expend_anim span:first-child {
        transform: rotate(180deg);
    }
}

ul.mbl_menu_items>li>ul {
    display: none;
    padding: 0 0 18px 64px;
}

ul.mbl_menu_items>li>ul>li {
    list-style: none;
}

ul.mbl_menu_items>li>ul>li>a {
    color: #fff;
    font-size: 16px;
    font-family: acumin-pro, sans-serif;
    font-weight: 300;
    padding: 8px 0;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    transition: 0.5s linear;
}

.main_body {
    position: relative;
    z-index: 2;
    background: #fff;
}

.main_banner_wrp {
    position: relative;
    width: 100%;
    border-bottom: var(--oneunit) solid var(--border-color);
}

.banner_cursor_download {
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

.cell_box_banner {
    position: relative;
    z-index: 1;
}

.cell_box_banner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(#bebcbd80 var(--oneunit), transparent var(--oneunit)), linear-gradient(90deg, #bebcbd80 var(--oneunit), transparent var(--oneunit));
    background-size: calc(100% / 15) var(--gridcell);
    background-position: -1px -1px;
    z-index: 1;
}

.cell_border_black:after {
    background-image: linear-gradient(#70707080 var(--oneunit), transparent var(--oneunit)), linear-gradient(90deg, #70707080 var(--oneunit), transparent var(--oneunit));
}

.cell_border_black {
    border-bottom: var(--oneunit) solid #70707080;
}

.main_banner_inner,
.main_banner_inner img.banner_img {
    width: 100%;
}

.howweteach_lottie_banner {
    position: absolute;
    z-index: 2;
    top: calc(var(--gridcell) * 1.7);
    left: 0;
    right: 0;
    margin: 0 auto;
}

.howweteach_lottie_banner lottie-player {
    margin: var(--zerounit) auto;
    width: 43.584187vw;
}

.banner_image_hided {
    max-width: 100%;
    height: auto; 
}

.banner_caption {
    position: absolute;
    top: 30.8%;
    left: 0;
    right: 0;
    z-index: 3;
    width: calc(100vw - 13.3vw);
    margin: var(--zerounit) auto;
}

.caption_lifeiiad {
    left: 0.6588579795021963vw;
}

.banner_caption h2 {
    font-size: 6.588579795021962vw;
    text-transform: uppercase;
    color: #fff;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    display: inline-block;
    line-height: 6.661786237188873vw;
    margin-left: -0.3125vw;
    margin-bottom: 0;
}
.banner_caption h1 {
    font-size: 6.588579795021962vw;
    text-transform: uppercase;
    color: #fff;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    display: inline-block;
    line-height: 6.661786237188873vw;
    margin-left: -0.3125vw;
    margin-bottom: 0;
}

span.commondash {
    content: "";
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    height: 0.6578947368421052vw;
    margin: -1.0980966325036603vw 0.36603221083455345vw var(--zerounit);
}

span.commondash_small {
    width: 2.635431918008785vw;
}

span.commondash_average {
    width: 7.540263543191801vw;
}

span.commondash_medium {
    width: 13.396778916544655vw;
}

span.commondash_normal {
    width: 5.847953216374268vw;
}

span.commondash_abt_1 {
    width: 37.335285505124446vw;
    margin: -1.0980966325036603vw 0.36603221083455345vw 0;
}

span.commondash_abt_2,
span.commondash_abt_3,
span.commondash_abt_4 {
    width: 1.4641288433382138vw;
    margin: -1.0980966325036603vw 0.36603221083455345vw 0;
}

span.commondash_abt_3,
span.commondash_abt_4 {
    width: 23.060029282576867vw;
}

span.commondash_abt_4 {
    width: 19.39970717423133vw;
}

.about_banner_caption h2 span:nth-child(1) {
    display: none;
}

.about_banner_caption h2 span:nth-child(2) {
    width: 37.335285505124446vw;
    margin: -1.0980966325036603vw 0.36603221083455345vw 0;
}

.about_banner_caption h2 span:nth-child(3) {
    width: 14%;
    opacity: 0;
}

.about_banner_caption h2 span:nth-child(4),
.about_banner_caption h2 span:nth-child(5) {
    width: 1.4641288433382138vw;
    margin: -1.0980966325036603vw 0.36603221083455345vw 0;
}

.about_banner_caption h2 span:nth-child(5) {
    width: 23.060029282576867vw;
}

.about_banner_caption h2 span:nth-child(6) {
    width: 25%;
    opacity: 0;
}

.about_banner_caption h2 span:nth-child(7) {
    width: 19.39970717423133vw;
    margin: -1.0980966325036603vw 0.36603221083455345vw 0;
}
.about_banner_caption h1 span:nth-child(1) {
    display: none;
}

.about_banner_caption h1 span:nth-child(2) {
    width: 37.335285505124446vw;
    margin: -1.0980966325036603vw 0.36603221083455345vw 0;
}

.about_banner_caption h1 span:nth-child(3) {
    width: 14%;
    opacity: 0;
}

.about_banner_caption h1 span:nth-child(4),
.about_banner_caption h1 span:nth-child(5) {
    width: 1.4641288433382138vw;
    margin: -1.0980966325036603vw 0.36603221083455345vw 0;
}

.about_banner_caption h1 span:nth-child(5) {
    width: 23.060029282576867vw;
}

.about_banner_caption h1 span:nth-child(6) {
    width: 25%;
    opacity: 0;
}

.about_banner_caption h1 span:nth-child(7) {
    width: 19.39970717423133vw;
    margin: -1.0980966325036603vw 0.36603221083455345vw 0;
}

.prg_overview_banner_caption h2 span:nth-child(2) {
    width: 60%;
    opacity: 0;
}

.prg_overview_banner_caption h2 span:nth-child(3) {
    width: 50%;
    opacity: 0;
}

.prg_overview_banner_caption h2 span:nth-child(4) {
    width: 5.847953216374268vw;
}

.fd_caption h2 span:nth-child(1) {
    width: 70%;
    opacity: 0;
}

.fd_caption h2 span:nth-child(2) {
    display: none;
}

.fd_caption h2 span:nth-child(3) {
    width: 2.635431918008785vw;
}

.fd_caption h2 span:nth-child(4) {
    width: 45%;
    opacity: 0;
}

.fd_caption h2 span:nth-child(5) {
    width: 5.847953216374268vw;
}

.lifeiiad_banner_caption h2 span:nth-child(1) {
    width: 58%;
    opacity: 0;
}

.lifeiiad_banner_caption h2 span:nth-child(2) {
    width: 2.781844802342606vw;
}

.lifeiiad_banner_caption h2 span:nth-child(3) {
    width: 7.46705710102489vw;
}

.iiadindusty_banner_caption h1 span:nth-child(1),
.iiadindusty_banner_caption h2 span:nth-child(1),
.iiadindusty_banner_caption h1 span:nth-child(2),
.iiadindusty_banner_caption h2 span:nth-child(2) {
    width: 2.635431918008785vw;
}

.iiadindusty_banner_caption h1 span:nth-child(3) {
    width: 34%;
    opacity: 0;
}
.iiadindusty_banner_caption h2 span:nth-child(3) {
    width: 34%;
    opacity: 0;
}

.iiadindusty_banner_caption h1 span:nth-child(4) {
    width: 2.635431918008785vw;
}
.iiadindusty_banner_caption h2 span:nth-child(4) {
    width: 2.635431918008785vw;
}

.iiadindusty_banner_caption h1 span:nth-child(5) {
    width: 50%;
    opacity: 0;
}
.iiadindusty_banner_caption h2 span:nth-child(5) {
    width: 50%;
    opacity: 0;
}

.iiadindusty_banner_caption h1 span:nth-child(6) {
    width: 7.540263543191801vw;
}
.iiadindusty_banner_caption h2 span:nth-child(6) {
    width: 7.540263543191801vw;
}

.admission_caption h2 span:nth-child(1),
.admission_caption h2 span:nth-child(2) {
    width: 2.635431918008785vw;
}

.admission_caption h2 span:nth-child(3) {
    width: 49%;
    opacity: 0;
}

.admission_caption h2 span:nth-child(4) {
    width: 2.635431918008785vw;
}

.admission_caption h2 span:nth-child(5) {
    width: 5.847953216374268vw;
}

.admission_caption h2 span:nth-child(6) {
    width: 20%;
    opacity: 0;
}

.admission_caption h2 span:nth-child(7) {
    width: 13.396778916544655vw;
}

.admission_caption h1 span:nth-child(1),
.admission_caption h1 span:nth-child(2) {
    width: 2.635431918008785vw;
}

.admission_caption h1 span:nth-child(3) {
    width: 49%;
    opacity: 0;
}

.admission_caption h1 span:nth-child(4) {
    width: 2.635431918008785vw;
}

.admission_caption h1 span:nth-child(5) {
    width: 5.847953216374268vw;
}

.admission_caption h1 span:nth-child(6) {
    width: 20%;
    opacity: 0;
}

.admission_caption h1 span:nth-child(7) {
    width: 13.396778916544655vw;
}

.fc_caption h2 span:nth-child(1) {
    width: 62%;
    opacity: 0;
}

.fc_caption h2 span:nth-child(2) {
    display: none;
}

.fc_caption h2 span:nth-child(3) {
    width: 2.562225475841874vw;
}

.fc_caption h2 span:nth-child(4) {
    width: 64%;
    opacity: 0;
}

.fc_caption h2 span:nth-child(5) {
    width: 9.882869692532942vw;
}

.cd_caption h2 span:nth-child(1) {
    width: 72%;
    opacity: 0;
}

.cd_caption h2 span:nth-child(2) {
    display: none;
}

.cd_caption h2 span:nth-child(3) {
    width: 10px;
    opacity: 0;
}

.cd_caption h2 span:nth-child(4) {
    width: 2.562225475841874vw;
}

.cd_caption h2 span:nth-child(5) {
    width: 15%;
    opacity: 0;
}

.cd_caption h2 span:nth-child(6) {
    width: 9.882869692532942vw;
}

.iad_caption h2 span:nth-child(1) {
    width: 70%;
    opacity: 0;
}

.iad_caption h2 span:nth-child(2) {
    display: none;
}

.iad_caption h2 span:nth-child(3) {
    width: 2.562225475841874vw;
}

.iad_caption h2 span:nth-child(4) {
    display: none;
}

.iad_caption h2 span:nth-child(5) {
    width: 55%;
    opacity: 0;
}

.iad_caption h2 span:nth-child(6) {
    width: 9.882869692532942vw;
}

.fbm_caption h2 span:nth-child(1) {
    width: 70%;
    opacity: 0;
}

.fbm_caption h2 span:nth-child(2) {
    display: none;
}

.fbm_caption h2 span:nth-child(3) {
    width: 2.562225475841874vw;
}

.fbm_caption h2 span:nth-child(4) {
    display: none;
}

.fbm_caption h2 span:nth-child(5) {
    width: 58%;
    opacity: 0;
}

.fbm_caption h2 span:nth-child(6) {
    width: 9.882869692532942vw;
}

.fbm_caption h2 span:nth-child(7) {
    width: 0.7320644216691069vw;
    opacity: 0;
}

.fcom_caption h2 span:nth-child(1) {
    width: 70%;
    opacity: 0;
}

.fcom_caption h2 span:nth-child(2) {
    display: none;
}

.fcom_caption h2 span:nth-child(3) {
    width: 2.562225475841874vw;
}

.fcom_caption h2 span:nth-child(4) {
    display: none;
}

.fcom_caption h2 span:nth-child(5) {
    width: 58%;
    opacity: 0;
}

.fcom_caption h2 span:nth-child(6) {
    width: 9.882869692532942vw;
}

.fcom_caption h2 span:nth-child(7) {
    width: 0.7320644216691069vw;
    opacity: 0;
}

span.commondash_desktop_hide {
    display: none;
}

.dbl_bg,
.round_bg {
    position: absolute;
    left: 0;
}

.dbl_bg {
    top: 0;
    background: var(--blue);
    background-image: linear-gradient(var(--blue) 55.5%, #000 45%);
    width: 100%;
    height: 100%;
    -webkit-transition: all ease-out 2s;
    transition: all ease-out 2s;
}

.round_bg {
    width: 49.780380673499266vw;
    height: 49.780380673499266vw;
    background: red;
    top: 8.41874084919473vw;
    border-radius: 50%;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}

.lottie_banner_ladder {
    position: absolute;
    top: 6.661786237188873vw;
    right: 0;
    width: 100%;
    z-index: 2;
}

.lottie_banner_ladder lottie-player {
    margin-top: 0;
}

.notice_section_wrp,
.sidebarheading h2 label span.title_dashline.white_dash,
.sidebarheading h4 label span.title_dashline.white_dash {
    background: #fff;
}
.sidebarheading h2 label span.title_dashline.white_dash {
    background: #fff;
}


.bgcolor_darkblue {
    background: var(--blue);
}

.overlapon_banner {
    margin-top: -6.69vw;
}

.notice_section_inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: calc(100vw - 13.39vw);
    margin: var(--zerounit) auto;
    background: #050807;
    position: relative;
    z-index: 1;
    height: calc(var(--gridcell) * 4);
}

.notice_loop {
    align-self: flex-start;
    display: flex;
    height: 100%;
}

.notice_item {
    display: flex;
    justify-content: space-between;
}

.leftside_desc_info {
    width: calc(var(--gridcell) * 9);
    padding: 1.3888888888888888vw 5%0 2.1198830409356724vw;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}

.leftside_desc_contactinfo {
    width: calc(var(--gridcell) * 8);
}

.blackbox_left_top_content {
    align-self: flex-start;
}

.blackbox_left_top_content>p {
    font-family: acumin-pro, acumin-pro, sans-serif;
    font-weight: 200;
    color: #fff;
    font-size: 2.1961932650073206vw;
    line-height: 3.1478770131771596vw;
    margin: 2.9282576866764276vw 0 0;
}

.leftside_desc_info :first-child {
    margin-top: 0;
}

.leftside_desc_info p a {
    color: #fff;
    text-decoration: none;
}

.leftside_desc_info p a.underlinelink {
    border-bottom: var(--oneunit) solid #fff;
}

.leftside_desc_info p.smalltext {
    font-size: 1.4vw;
}

.bottom_edge_text {
    align-self: flex-end;
    padding: 0 0 0.07320644216691069vw;
}

.bottom_edge_text h1,
.bottom_edge_text h2,
.bottom_edge_text h4,
.bottom_edge_text p.p1 {
    color: #fff;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 6.808199121522694vw;
    font-weight: 700;
    line-height: 5.572916666666667vw;
    white-space: nowrap;
    margin: 0 0-1px;
}

.bottom_edge_text_mbl {
    display: none;
}

.rightside_info {
    width: calc(var(--gridcell) * 4);
    height: 100%;
}

.rightside_contactinfo {
    width: calc(var(--gridcell) * 5);
}

.small_text_wrp {
    padding: 1.610541727672035vw 1.9005847953216373vw 0 0;
}

.small_text_wrp p {
    font-size: 1.3177159590043925vw;
    color: #fff;
    line-height: 2.049780380673499vw;
    font-family: acumin-pro, acumin-pro, sans-serif;
    font-weight: 200;
}

.rightside_date_info {
    background-color: var(--lightyellow);
}

.rightsidedate_item {
    padding: 0.7320644216691069vw 1.4641288433382138vw 1.4641288433382138vw;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 50%;
}

.rightside_date_info .rightsidedate_item:last-child {
    border-top: var(--oneunit) solid #000;
    height: 100%;
}

.rightside_common_content .rightside_inner_item+.rightside_inner_item:last-child,
.rightside_date_info .rightsidedate_item+.rightsidedate_item:last-child {
    height: 50%;
}

.rightside_date_info .rightsidedate_item:first-child {
    border-top: 0;
}

.rightsidedate_item p {
    margin: 0 0 0.36603221083455345vw;
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    font-size: 2.049780380673499vw;
    color: #000;
    line-height: 2.4890190336749636vw;
}

.rightsidedate_item h6 {
    margin: 0;
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.903367496339678vw;
    line-height: 2.4890190336749636vw;
    color: #000;
}

.separator_line {
    padding: var(--zerounit) 0.951683748169839vw;
}

.rightside_inner_item a,
.rightsidedate_item a {
    font-weight: 500;
    font-size: 1.171303074670571vw;
    margin-top: auto;
}

.rightsidedate_item a svg {
    margin-left: 0.7320644216691069vw;
}

.rightside_common_content {
    background-color: var(--lightyellow);
}

.rightside_inner_item {
    padding: 1.6837481698389458vw 1.390922401171303vw 0.8052708638360175vw;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 50%;
}

.rightside_common_content .rightside_inner_item:last-child {
    border-top: var(--oneunit) solid #000;
    height: 100%;
}

.rightside_common_content .rightside_inner_item:first-child {
    border: 0;
}

.rightside_inner_item div h4 {
    margin: 0 0 0.951683748169839vw;
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    font-size: 2.049780380673499vw;
    color: #000;
    line-height: 2.4890190336749636vw;
}

.borderbase_align h4,
.rightside_inner_item div h5 {
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 1.903367496339678vw;
    font-weight: 600;
    margin: 0;
}

.borderbase_align {
    padding: 0 0 0 2.1198830409356724vw;
}

.borderbase_align h4 {
    color: #fff;
    font-size: 6.808199121522694vw;
    font-weight: 700;
    line-height: 5.572916666666667vw;
}

.notice_cross_arrow_wrp {
    text-align: center;
    padding: 2.4890190336749636vw 0;
}

.download_cross_arrow a {
    font-family: acumin-pro, acumin-pro, sans-serif;
    font-size: 2.635431918008785vw;
    font-weight: 400;
    line-height: 2.562225475841874vw;
    fill: #fff;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    display: block;
}

.download_cross_arrow a span {
    margin: 0 0 0 0.8784773060029283vw;
}

.download_cross_arrow a span svg {
    width: 1.8301610541727673vw;
    height: 1.8301610541727673vw;
}

.download_cross_arrow a:hover span {
    border-color: #fff;
}

.download_cross_arrow a:hover span svg {
    fill: #fff;
    animation: slide-diagonal 0.4s forwards;
}

.overviewtext_leftright {
    padding: 10.380116959064328vw var(--zerounit) 6.213450292397661vw;
    background-color: #fff;
    z-index: 1;
}

.grid_vertical_lines {
    position: relative;
    overflow: hidden;
}

.grid_vertical_lines .grid-row {
    position: absolute;
    width: 100%;
    max-width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    top: 0;
    z-index: 0;
    margin: var(--zerounit) auto;
    bottom: 0;
}

.grid_vertical_lines .grid-row .col {
    border-right: var(--oneunit) solid var(--border-color);
}

.grid_vertical_lines .grid-row .col:first-child {
    border-right: none;
}

.grid_vertical_lines .grid-row .col:last-child {
    border-right: none;
}

.grid_vertical_lines_full {
    position: relative;
    margin: -1px 0 0;
}

.grid_vertical_lines_full .grid-row {
    position: absolute;
    width: 100%;
    max-width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    top: 0;
    z-index: -1;
    margin: var(--zerounit) auto;
    bottom: 0;
}

.grid_vertical_lines_full .zindex_control {
    z-index: 0;
}

.grid_vertical_lines .zindex_control {
    z-index: -1;
}

.grid_vertical_lines_full .grid-row .col {
    border-right: var(--oneunit) solid #e0e0e0;
}

.yellowbg_line_color .grid-row .col {
    border-color: #caa900;
}

.blackbg_line_color .grid-row .col {
    border-color: rgba(112, 112, 112, 0.5);
}

.grid_vertical_lines .bdr_onblack_bg .col,
.grid_vertical_lines_full .bdr_onblack_bg .col {
    border-color: #70707080;
}

.grid_vertical_lines_full .bdr_onred_bg .col {
    border-color: #a5250d;
}

.line_align_section {
    width: calc(100vw - 13.39vw);
    margin: var(--zerounit) auto;
    position: relative;
    z-index: 1;
}

.line_align_item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 5.116959064327485vw;
    flex-wrap: wrap;
}

.line_align_item:last-child {
    padding-bottom: 0;
}

.left_heading_line {
    width: 38.4%;
    padding-top: 0.78125vw;
}

.left_heading_line h4 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2.631578947368421vw;
    line-height: 2.635431918008785vw;
    letter-spacing: normal;
    display: inline-block;
    margin: 0;
    color: #000;
    text-transform: uppercase;
}

.left_heading_line h4 span.dash_line,
.left_heading_line h5 span.dash_line {
    content: "";
    height: var(--threeunit);
    width: 2.635431918008785vw;
    display: inline-block;
    vertical-align: middle;
    margin: -0.36603221083455345vw 0.5856515373352855vw 0 0;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
}

.left_heading_line h4 span.dash_line {
    background: #000;
}

.left_heading_line h5,
.leftspace_item_left h5,
.sidebarheading h5, .sidebarheading h4.h5 {
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 1.608187134502924vw;
    line-height: 2.7777777777777777vw;
    letter-spacing: normal;
    display: block;
    margin: 0; text-transform:lowercase;
}

.left_heading_line h5 span.dash_line {
    background: #fff;
}

.right_content_box {
    width: 61.6%;
}

.common_section p,
.underline_link_list li a {
    font-size: 2.1929824561403506vw;
    color: var(--black);
}

.common_section p {
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    line-height: 3.143274853801169vw;
    margin: 0;
}

.underline_link_list {
    padding: 2.850877192982456vw 0 0;
    margin: 0;
}

.underline_link_list li {
    list-style: none;
    margin: 0 0 0.5856515373352855vw;
}

.underline_link_list li a {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 3.070175438596491vw;
    letter-spacing: normal;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.3s linear;
    position: relative;
    overflow: hidden;
}

.underline_link_list li a:after,
.underline_link_list li a:before {
    content: "";
    height: var(--twounit);
    width: 0%;
    bottom: 0;
    left: 0;
    position: absolute;
    background: currentColor;
    transform: translateX(0) translateY(var(--oneunit));
    transition: all ease-out 0.3s;
}

.underline_link_list li a:before {
    margin: 0 auto;
}

.underline_link_list li:nth-child(3) a:after {
    transition-delay: 0.9s;
}

.underline_link_list li:nth-child(4) a:after {
    transition-delay: 1.2s;
}

.section_activated .underline_link_list li a:after {
    width: 100%;
}

.ftr_heading h4 a:hover,
.underline_link_list li a:hover,
a.hoverme_svg:hover {
    text-decoration: none;
}
.ftr_heading p a:hover {
    text-decoration: none;
}

.underline_link_list li a:hover:before {
    transform: translateY(0);
    width: 100%;
}

.course_overview_wrp {
    padding-top: 10.248901903367496vw;
}

.course_overview_wrp+.course_overview_wrp {
    padding: 5.124450951683748vw 0 6.149341142020498vw;
}

.courseoverview_gap,
.master_course_desk {
    padding-bottom: 6.149341142020498vw;
}

.cell_box_syncslider {
    position: relative;
    background: #fff;
    z-index: 1;
}

.cell_box_syncslider:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(#bebcbd80 var(--oneunit), #00000000 var(--oneunit)), linear-gradient(90deg, #bebcbd80 var(--oneunit), #00000000 var(--oneunit));
    background-position: -1px var(--zerounit);
    z-index: 0;
}

.grid_cell_box {
    position: relative;
    z-index: 0;
    border-top: var(--oneunit) solid #bebcbd80;
    border-bottom: var(--oneunit) solid #bebcbd80;
}

@media only screen and (min-width: 300px) {
    .slider_grid_hide_desk:after {
        display: none;
    }
}

.grid_cell_box:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(#bebcbd80 var(--oneunit), transparent var(--oneunit)), linear-gradient(90deg, #bebcbd80 var(--oneunit), transparent var(--oneunit));
    background-position: -1px -1px;
    z-index: -1;
}

.grid_cell_item:after {
    background-size: calc(100% / 15) var(--gridcell);
}

.cell_line_red:after {
    background-image: linear-gradient(#e0e0e04d var(--oneunit), transparent var(--oneunit)), linear-gradient(90deg, #e0e0e04d var(--oneunit), transparent var(--oneunit));
}

.blackbg_rowline_clr:after {
    background-image: linear-gradient(#cbcbcb66 var(--oneunit), transparent var(--oneunit)), linear-gradient(90deg, #cbcbcb66 var(--oneunit), transparent var(--oneunit));
}

.grid_rowline_one:after {
    background-size: 100% var(--gridcell);
    background-repeat: no-repeat;
    background-position: -1px var(--gridcell);
}

.cellbox_15_11:after,
.cellbox_15_4:after {
    background-size: calc(100% / 15) var(--gridcell);
}

.cellbox_15_11:after {
    background-size: calc(100% / 15) calc(100% / 11);
    background-size: calc(100% / 15) 5.46vw;
}

.cellbox_15_4:after {
    background-size: calc(100% / 15) calc(100% / 4);
}

.cellbox_1_0:after {
    background-size: 100% var(--gridcell);
    background-repeat: no-repeat;
    background-position: -1px var(--gridcell);
}

.syncslider_iiadindusty {
    padding-bottom: 8.052708638360176vw;
}

.syncslider_wrp {
    background-color: #fff;
    border-bottom: 0;
    overflow: hidden;
}

.syncslider_inner {
    padding: 6.65vw var(--zerounit) 13.34vw 0;
    position: relative;
}

.syncslider_top {
    position: absolute;
    z-index: 2;
    top: 14.8%;
    width: 60.5vw;
    margin: var(--zerounit) auto;
    right: 0;
    left: 0;
}

.syncslidertext_box_container {
    overflow: inherit;
}

.no_content_slide {
    overflow: hidden;
}

.syncslidertext_box_container .swiper-pagination {
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 2.1929824561403506vw;
    line-height: 3.143274853801169vw;
    letter-spacing: normal;
    position: relative;
    top: 0;
    width: 100%;
    text-align: left;
    padding-left: 0.21961932650073207vw;
}

.syncslidertext_box_container .swiper-pagination span {
    color: #000;
}

.syncslidertext_box_wrapper {
    padding: 0;
    clear: both;
}

.syncslider_caption {
    padding-top: 0.78125vw;
}

.sync_centerthumb_txt p,
.syncslider_caption h4 {
    font-style: normal;
    letter-spacing: normal;
    margin: 0;
}

.syncslider_caption h4 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 600;
    line-height: 6.652046783625732vw;
    font-size: 4.751461988304094vw;
    padding: 0;
    color: #ccc;
    margin-left: 2vw;
    padding-left: 4.1vw;
    position: relative;
}

.syncslider_caption h4:after {
    content: "";
    width: 2.6vw;
    height: 0.43923865300146414vw;
    background: #bebcbd;
    position: absolute;
    left: 0;
    top: 3.4vw;
}

.swiper-slide-active .syncslider_caption h4 {
    color: #000;
    position: relative;
    margin-left: 0;
    padding-left: 0;
}

.syncslider_bottom {
    padding-top: 0;
}

.syncsliderthumb_box_container {
    width: 73.38vw;
    margin: var(--zerounit) auto;
}

.syncslider_thumb_item.swiper-slide-duplicate,
.syncslider_thumb_item.swiper-slide-next,
.syncslider_thumb_item.swiper-slide-prev {
    opacity: 0 !important;
}

.syncslider_thumb_item.swiper-slide-active,
.syncslider_thumb_item.swiper-slide-duplicate-active {
    opacity: 1 !important;
}

.syncslider_thumb_caption {
    display: flex;
    justify-content: space-between;
}

.sync_leftthumb {
    width: 13.3vw;
    padding-top: 26.666666666666668vw;
}

.sync_centerthumb_txt {
    width: 33.33vw;
}

.sync_centerthumb_txt img {
    width: 100%;
    object-fit: cover;
    height: auto;
}

.sync_centerthumb_txt .thumb_caption_inner {
    width: 100%;
    height: 13.3vw;
    display: flex;
    padding: 1.5vw 0;
}

.sync_centerthumb_txt .caption_onthestage {
    padding: 2.8vw 0 1.5vw;
}

.sync_centerthumb_txt p {
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    line-height: 2.046783625730994vw;
    font-size: 1.3157894736842104vw;
    box-sizing: border-box;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sync_centerthumb_txt .caption_onthestage p {
    font-family: acumin-pro;
    font-size: 1.610541727672035vw;
    font-weight: 200;
}

.sync_rightthumb {
    width: 13.3vw;
    padding-top: 33.35vw;
}

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

.syns_slider_arrow {
    display: flex;
    align-items: center;
    width: 6.6vw;
    float: right;
    clear: both;
    justify-content: space-between;
    margin-right: 0.3vw;
    padding-top: 2.9vw;
}

.syns_slider_arrow .swiper-button-next,
.syns_slider_arrow .swiper-button-prev {
    width: 2.5vw;
    height: 2.5vw;
    position: static;
    margin: 0;
    padding: 0;
    display: flex;
    transition: 0.1s linear;
}

.syns_slider_arrow .swiper-button-prev {
    width: 2.3391812865497075vw;
    height: 2.3391812865497075vw;
}

.syns_slider_arrow .swiper-button-next:after,
.syns_slider_arrow .swiper-button-prev:after {
    color: transparent;
}

.syns_slider_arrow .swiper-button-next:not(.swiper-button-disabled):hover,
.syns_slider_arrow .swiper-button-prev:not(.swiper-button-disabled):hover,
.textrail_bottom_js .slick-arrow:not(.slick-disabled):hover,
.textrail_bottom_js .slick-next:not(.slick-disabled):hover {
    background: #f2f2f2;
    border-radius: 50%;
}

.syns_slider_arrow .swiper-button-next:after,
.syns_slider_arrow .swiper-button-prev:after {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.5' height='31.5' viewBox='0 0 31.5 31.5'%3E%3Cg id='Icon_feather-arrow-right-circle' data-name='Icon feather-arrow-right-circle' transform='translate(-2.25 -2.25)'%3E%3Cpath id='Path_1262' data-name='Path 1262' d='M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_1263' data-name='Path 1263' d='M18,24l6-6-6-6' transform='translate(2)' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3Cpath id='Path_1264' data-name='Path 1264' d='M12,18H27.576' transform='translate(-1.576)' fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    width: 2.3391812865497075vw;
    height: 2.3391812865497075vw;
}

.syns_slider_arrow .swiper-button-prev:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.5' height='31.5' viewBox='0 0 31.5 31.5'%3E%3Cg id='Icon_feather-arrow-right-circle' data-name='Icon feather-arrow-right-circle' transform='translate(33.75 33.75) rotate(180)'%3E%3Cpath id='Path_1262' data-name='Path 1262' d='M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_1263' data-name='Path 1263' d='M18,24l6-6-6-6' transform='translate(2)' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3Cpath id='Path_1264' data-name='Path 1264' d='M12,18H27.576' transform='translate(-1.576)' fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

.syns_slider_arrow .swiper-button-next:focus,
.syns_slider_arrow .swiper-button-prev:focus {
    outline: #ffdead;
}

.pedagogy_section {
    background: var(--lightyellow);
    padding: 0;
    margin-top: -1px;
}

.pedagogy_wrp {
    width: calc(100vw - 13.2vw);
    margin: var(--zerounit) auto var(--zerounit);
    position: relative;
    z-index: 1;
}

.ftr_heading h4,
.pedagogy_wrp h4 {
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.ftr_heading p {
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.pedagogy_wrp h4 {
    font-family: acumin-pro-extra-condensed, acumin-pro, sans-serif;
    font-size: 10.526315789473683vw;
    line-height: 4.45vw;
    letter-spacing: -0.29px;
    padding: 0;
    margin-left: -0.5856515373352855vw;
    height: var(--gridcell);
}

.pedagogy_inner {
    display: flex;
    width: 84.6%;
    justify-content: space-between;
}

.pedagogy_left {
    width: 45.4%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3.6875vw;
}

.pedagogy_left p {
    color: var(--black);
    font-family: acumin-pro, acumin-pro, sans-serif;
    font-size: 1.608187134502924vw;
    font-weight: 200;
    line-height: 2.4853801169590644vw;
}

.pedagogy_right {
    width: 27.25%;
}

.pedagogy_right lottie-player {
    width: 100%;
    height: 100%;
    margin-top: 0;
}

.ftr_heading h4 a,
.ftr_menu_list li a:hover,
a.hoverme_svg:hover h4 {
    color: #fff;
}
.ftr_heading p a {
    color: #fff;
}

.mouse_cursor {
    cursor: url(../images/cursor-how-we-teach.png) 36 45, auto;
    background-position: center;
    background-repeat: no-repeat;
}

.default_cursor {
    cursor: default;
}

.footer_wrp {
    background-color: var(--black);
    padding-top: 2.1961932650073206vw;
    position: fixed;
    bottom: 0;
    z-index: 1;
    width: 100%;
}

.ftr_inner {
    width: calc(100% - 5.856515373352855vw);
    margin: var(--zerounit) 0 0 auto;
    z-index: 2;
    padding-bottom: 2.9282576866764276vw;
}

.ftr_heading {
    z-index: 1;
}

.ftr_heading>a.mdl_ftr_logo {
    display: none;
}

.ftr_heading h4 {
    font-family: acumin-pro-extra-condensed, sans-serif !important;
    font-style: normal;
    letter-spacing: normal;
    font-size: 5.124450951683748vw;
    line-height: 5.124450951683748vw;
    position: relative;
}
.ftr_heading p {
    font-family: acumin-pro-extra-condensed, sans-serif !important;
    font-style: normal;
    letter-spacing: normal;
    font-size: 5.124450951683748vw;
    line-height: 5.124450951683748vw;
    position: relative;
}

.ftr_heading h4 span.dash_line_ftr {
    background-color: #fff;
    height: 0.43923865300146414vw;
    display: inline-block;
    vertical-align: middle;
}
.ftr_heading p span.dash_line_ftr {
    background-color: #fff;
    height: 0.43923865300146414vw;
    display: inline-block;
    vertical-align: middle;
}

.ftr_heading h4 span.dashline_ftr1 {
    width: 5.263157894736842vw;
}
.ftr_heading p span.dashline_ftr1 {
    width: 5.263157894736842vw;
}

.ftr_heading h4 span.dashline_ftr2 {
    width: 6.652046783625732vw;
}
.ftr_heading p span.dashline_ftr2 {
    width: 6.652046783625732vw;
}

.ftr_top_lnks {
    display: flex;
    justify-content: space-between;
    padding-top: 2.1961932650073206vw;
}

.home_ftr_top_lnks {
    padding-top: 15px;
}

.ftr_logo {
    display: flex;
    align-items: flex-end;
}

.ftr_logo a {
    display: block;
}

.ftr_logo a img {
    width: 11.257309941520468vw;
    max-width: 100%;
    height: auto; 
}

.ftr_top_right {
    width: 63.7%;
    margin-left: 0.5124450951683748vw;
}

.ftr_menu_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.ftr_menu_list li {
    list-style: none;
    width: 33.33%;
    padding: 0 0 0.5856515373352855vw;
}

.ftr_menu_list li a {
    color: #fff;
    font-weight: 200;
    font-size: 1.1vw;
    text-transform: capitalize;
}

.ftr_contact_info {
    padding-top: 4.605263157894736vw;
}

.ftr_contact_info p {
    color: #fff;
    margin: 1.3157894736842104vw 0 0;
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    font-size: 1.3888888888888888vw;
    line-height: 2.3391812865497075vw;
}

.ftr_contact_info> :first-child {
    margin-top: 0;
}

.ftr_contact_info p a,
.sidebarheading.text_white h4 {
    color: #fff;
}

.ftr_contact_info p a:hover {
    border-bottom: none;
    text-decoration: none;
}

.ftr_balls {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 32.942898975109806vw;
    display: flex;
    flex-wrap: wrap;
}

.ftr_balls img {
    width: calc(32.8696925329429vw - 5.856515373352855vw);
    max-width: 100%;
    height: auto; 
}

.red_ball,
.red_ball_small {
    background: #ee4036;
    bottom: 0;
}

.red_ball {
    width: 8.991228070175438vw;
    height: 8.991228070175438vw;
    border-radius: 50%;
    position: absolute;
}

.red_ball_small {
    width: 5.7748538011695905vw;
    height: 5.7748538011695905vw;
    left: 29.4%;
}

.blue_ball,
.gray_ball,
.red_ball_small {
    border-radius: 50%;
    position: absolute;
}

.gray_ball {
    width: 5.7748538011695905vw;
    height: 5.7748538011695905vw;
    background: #dcdcdc;
    left: 24.6%;
    top: 8%;
}

.blue_ball {
    width: 16.83748169838946vw;
    height: 16.83748169838946vw;
    background-color: var(--blue);
    right: 0;
    bottom: 0;
}

.gototop {
    background-color: var(--lightyellow);
    width: 5.921052631578947vw;
    height: 5.921052631578947vw;
    display: flex;
    align-items: center;
    align-self: flex-end;
}

.cta_arrow_animation span,
.gototop a {
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gototop a {
    width: 100%;
    text-align: center;
}

.gototop a svg {
    background: var(--lightyellow);
    width: 2.2660818713450293vw;
    height: 2.631578947368421vw;
    padding: 0;
}

.blackbox_mdl_page {
    border-top: 0;
    border-bottom: 0;
}

.cta_cell_group {
    width: calc(var(--gridcell) * 4);
}

.cta_arrow_animation {
    font-family: acumin-pro, Sans-serif;
    font-size: 1.608187134502924vw;
    font-weight: 200;
    line-height: 1.9005847953216373vw;
    fill: var(--black);
    color: var(--black);
    background-color: #fff;
    border-style: solid;
    border-width: var(--oneunit) var(--oneunit) var(--oneunit) var(--oneunit);
    border-color: var(--black);
    height: var(--gridcell);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 2vw;
    position: relative;
}

.cta_arrow_animation>div {
    position: absolute;
    left: 0.9065739385065886vw;
    opacity: 0;
    transition: 0.2s linear;
    z-index: 99;
    line-height: 2.046783625730994vw;
    font-size: 1.3157894736842104vw;
}

.cta_arrow_animation:hover {
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

.cta_arrow_animation>p {
    transition: 10ms linear;
}

.cta_arrow_animation:hover>p {
    opacity: 0;
}

.cta_arrow_animation:hover>div {
    opacity: 1;
    left: 1.9065739385065886vw;
}

.cta_arrow_animation:hover span {
    border-color: #fff;
}

.cta_arrow_animation:hover span svg {
    fill: #fff;
    animation: slide-diagonal 0.3s forwards;
}

.cta_arrow_animation span {
    width: var(--gridcell);
    border-left: var(--oneunit) solid var(--black);
    transition: 0.3s;
}

.cta_arrow_animation span svg {
    width: 3.294289897510981vw;
    height: 3.294289897510981vw;
}

.progromme_textrail_gap {
    padding: 3.1478770131771596vw var(--zerounit) 0 0;
}

.leftspace_section_wrp {
    width: 100%;
    padding: var(--zerounit) 0 0 6.71875vw;
    position: relative;
    z-index: 1;
}

.leftspace_item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0;
    flex-wrap: wrap;
    overflow: hidden;
}

.leftspace_item_left {
    width: 35.6%;
    padding-top: 0.43923865300146414vw;
}

.tabs_leftheading_center {
    padding-top: 1.9765739385065886vw;
}

.rightspace_item_right {
    width: 64.3%;
    margin-left: auto;
}

.section_edge {
    width: 100%;
    position: relative;
    z-index: 1;
}

.section_edge_left {
    padding: var(--zerounit) 0 0 6.71875vw;
}

.sidebar_spacebar_wrp {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0;
    flex-wrap: wrap;
    align-items: flex-start;
}

.sidebar_loop_bottom {
    padding: 1.4641288433382138vw 0 0;
}

.vert_align_initial {
    align-items: initial;
}

.left_sidebar {
    width: 35.6%;
}

.left_sidebar.sticky_left_sidebar {
    position: sticky;
    top: 5.124450951683748vw;
}

.left_sidebar_flex {
    display: flex;
    flex-wrap: wrap;
}

.right_spacebar {
    width: 64.3%;
    margin-left: auto;
}

.left_sidebar_small {
    width: 14.2%;
}

.sidebarheading h1,
.sidebarheading h2,
.sidebarheading h4 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2.635431918008785vw;
    line-height: 2.635431918008785vw;
    letter-spacing: normal;
    display: inline-block;
    margin: 0;
    color: #000;
    text-transform: uppercase;
    word-break: inherit;
    width: 90%;
} 
.sidebarheading p {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2.635431918008785vw;
    line-height: 2.635431918008785vw;
    letter-spacing: normal;
    display: inline-block;
    margin: 0;
    color: #000;
    text-transform: uppercase;
    word-break: inherit;
    width: 90%;
}

.homeh4-width h1 {
    width: auto !important;
}
.homeh4-width h4 {
    width: auto !important;
}
.homeh4-width p {
    width: auto !important;
}

.sidebarheading.text_red h4 {
    color: #ee4036;
}

.leftbar_heading_small h4 {
    font-size: 1.610541727672035vw;
}

.sidebarheading h2 label,
.sidebarheading h4 label {
    width: 100%;
}
 
.sidebarheading p label {
    width: 100%;
}

.sidebarheading h1 label span.title_dashline,
.sidebarheading h2 label span.title_dashline,
.sidebarheading h4 label span.title_dashline {
    content: "";
    height: var(--threeunit);
    background: #000;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    margin: 0.29282576866764276vw 0.5856515373352855vw 0 0;
    min-width: 3.3674963396778916vw;
}
.sidebarheading h2 label span.title_dashline {
    content: "";
    height: var(--threeunit);
    background: #000;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    margin: 0.29282576866764276vw 0.5856515373352855vw 0 0;
    min-width: 3.3674963396778916vw;
}

 
.sidebarheading p label span.title_dashline {
    content: "";
    height: var(--threeunit);
    background: #000;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    margin: 0.29282576866764276vw 0.5856515373352855vw 0 0;
    min-width: 3.3674963396778916vw;
}

span.ttl_dblxl_longer {
    width: 13.346999vw;
}

span.ttl_xl_longer {
    width: 11.346998535871156vw;
}

span.ttl_morethen_longer {
    width: 130px;
}

span.ttl_longer {
    width: 8.052708638360176vw;
}

span.title_dashline_xl_medium {
    width: 5.856515373352855vw;
}

span.title_dashline_medium {
    width: 4.758418740849195vw;
}

span.title_dashline_normal {
    width: 3.806734992679356vw;
}

span.title_dashline_small {
    width: 2.4890190336749636vw;
    min-width: 3.3674963396778916vw;
}

.sidebarheading h2 label.active span,
.sidebarheading h4 label.active span {
    width: 100%;
    min-width: 3.3674963396778916vw;
} 
.sidebarheading h1 label.active span {
    width: 100%;
    min-width: 3.3674963396778916vw;
} 
.sidebarheading p label.active span {
    width: 100%;
    min-width: 3.3674963396778916vw;
}

.leftspace_item_left h4 span.dash_line,
.leftspace_item_left h4 span.dash_line_longer,
.sidebarheading h5 span.sub_title_dashline {
    content: "";
    height: var(--threeunit);
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
} 
.sidebarheading h4.h5 span.sub_title_dashline {
    content: "";
    height: var(--threeunit);
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
}

.sidebarheading h5 span.sub_title_dashline {
    background: 0 0;
    margin: 0.29282576866764276vw 0.5856515373352855vw 0 0;
}
.sidebarheading h4.h5 span.sub_title_dashline {
    background: 0 0;
    margin: 0.29282576866764276vw 0.5856515373352855vw 0 0;
}

.right_spacebar_large {
    width: 85.8%;
    margin-left: auto;
}

.left_subtitle {
    padding: 1.010541727672035vw 0 0;
}

.left_subtitle h6,
.leftspace_item_left h4 {
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 2.562225475841874vw;
    font-weight: 700;
    margin: 0;
}

.left_subtitle h2
{
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 2.562225475841874vw;
    font-weight: 700;
    margin: 0;
color: var(--red)
}
.left_subtitle h2, .leftspace_item_left h4 {
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 1.999225475841874vw;
    font-weight: 700;
    margin: 0;
    }
.left_subtitle h2.textwhite {color: white;}
.left_subtitle h2.textred {color: red;}
.left_subtitle h1 {
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 2.562225475841874vw;
    font-weight: 700;
    margin: 0;
}


i.and_font:after {
    content: "";
    display: inline-block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 0.7320644216691069vw;
}

i.and_size_hometitle:after {
    width: 1.903367496339678vw;
    height: 1.8301610541727673vw;
    margin: 0 0.13vw -1.5px 0;
}

i.and_size_homeslider:after {
    width: 4.978038067349927vw;
    height: 4.978038067349927vw;
    margin: 0 1.4641288433382138vw;
}

i.red_and:after {
    background-image: url(../svg/%26text-red.svg);
}

i.white_and:after {
    background-image: url(../svg/%26text.svg);
}

.leftspace_item_left h4 {
    font-family: acumin-pro-condensed, sans-serif;
    font-style: normal;
    font-size: 2.635431918008785vw;
    line-height: 2.635431918008785vw;
    letter-spacing: normal;
    display: inline-block;
    color: #000;
    text-transform: uppercase;
    width: 64%;
}

.leftspace_item_left h4 span.dash_line,
.leftspace_item_left h4 span.dash_line_longer {
    background: #000;
    width: 2.631578947368421vw;
    margin: -0.36603221083455345vw 0.5856515373352855vw 0 0;
}

.leftspace_item_left h4 span.dash_line_longer {
    width: 5.856515373352855vw;
}

.leftspace_item_left h4 span.dash_line_medium {
    content: "";
    background: #000;
    width: 3.806734992679356vw;
    margin: -0.36603221083455345vw 0.5856515373352855vw 0 0;
}

.leftspace_item_left h5 .dash_line {
    content: "";
    background: #fff;
    width: 2.635431918008785vw;
    margin: -0.36603221083455345vw 0.5856515373352855vw 0 0;
}

.leftspace_item_left h4 label,
.sidebarheading h2 label,
.sidebarheading h1 label,
.sidebarheading h4 label {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin: 0;
    /* cursor: none; */
}
 
.sidebarheading p label {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin: 0;
    /* cursor: none; */
}

.leftspace_item_left h4 label span.headingleft_line,
.leftspace_item_left h4 span.dash_line_medium,
.leftspace_item_left h5 .dash_line,
.textrail_caption h4 span.textrail_dashline {
    height: var(--threeunit);
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
}

.leftspace_item_left h4 label span.headingleft_line {
    content: "";
    background: #000;
    margin: 0.29282576866764276vw 0.5856515373352855vw 0 0;
}

.leftspace_item_left h4 label span.headingleft_line_medium {
    width: 4.758418740849195vw;
}

.leftspace_item_left h4 label.active span {
    width: 100%;
}

.pagination_of {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    width: 40vw;
}

.pagination_of .course_leftside h4 {
    margin-bottom: 0;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
}
.pagination_of .course_leftside h2 {
    margin-bottom: 0;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
}

.pagination_of span {
    font-weight: 200;
    letter-spacing: normal;
    font-size: 1.610541727672035vw;
    line-height: 2.781844802342606vw;
}

.textrail_bottom_js .slick-arrow,
.textrail_bottom_js .slick-next {
    left: 0;
    bottom: 0;
    top: initial;
    z-index: 999;
    width: 2.2929824561403506vw;
    height: 2.2929824561403506vw;
    margin: 0;
    padding: 0;
    display: flex;
    transition: 0.1s linear;
}

.textrail_bottom_js .slick-next {
    left: 3.508771929824561vw;
}

.textrail_bottom_js .slick-next:before,
.textrail_bottom_js .slick-prev:before {
    content: "";
    background-size: 100%;
    background-position: center center;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.success_prev:before,
.textrail_bottom_js .slick-prev:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.5' height='31.5' viewBox='0 0 31.5 31.5'%3E%3Cg id='Icon_feather-arrow-right-circle' data-name='Icon feather-arrow-right-circle' transform='translate(33.75 33.75) rotate(180)'%3E%3Cpath id='Path_1262' data-name='Path 1262' d='M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_1263' data-name='Path 1263' d='M18,24l6-6-6-6' transform='translate(2)' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3Cpath id='Path_1264' data-name='Path 1264' d='M12,18H27.576' transform='translate(-1.576)' fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

.textrail_bottom_js .slick-next:before {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.5' height='31.5' viewBox='0 0 31.5 31.5'%3E%3Cg id='Icon_feather-arrow-right-circle' data-name='Icon feather-arrow-right-circle' transform='translate(-2.25 -2.25)'%3E%3Cpath id='Path_1262' data-name='Path 1262' d='M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_1263' data-name='Path 1263' d='M18,24l6-6-6-6' transform='translate(2)' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3Cpath id='Path_1264' data-name='Path 1264' d='M12,18H27.576' transform='translate(-1.576)' fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.navtabs_cta li a,
.pagination_of span,
.textrail_caption h4 {
    font-family: acumin-pro-condensed, sans-serif;
}

.textrail_caption h4 {
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    display: inline-block;
    font-size: 2.635431918008785vw;
    color: #999;
    vertical-align: bottom;
    margin: 0;
}

.textrail_caption h4 span.textrail_dashline {
    background: #999;
    width: 5.847953216374268vw;
    margin: 0 1.461988304093567vw;
}

.slick-active .textrail_caption h4 {
    color: #000;
}

.textrail_bottom {
    padding-bottom: 8.625730994152047vw;
}

.textrail_btm_wrp {
    padding-bottom: 5.409356725146199vw;
}

.textrail_caption_btm_item {
    padding-top: 0.43859649122807015vw;
}

.textrail_caption_btm_inner {
    width: 66.8%;
}

.textrail_caption_btm_inner p {
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    font-size: 1.3177159590043925vw;
    line-height: 2.049780380673499vw;
    color: #212529;
    margin: 0;
}

.tabssection_title {
    padding-top: 1.9765739385065886vw;
}

.navtabs_cta {
    margin: 0;
    border-top: var(--oneunit) solid #e0e0e0;
    border-bottom: var(--oneunit) solid #e0e0e0;
    flex-wrap: nowrap;
}

.navtabs_cta li {
    width: 100%;
    border-right: var(--oneunit) solid var(--border-color);
}

.navtabs_cta li a {
    font-weight: 200;
    font-size: 2.631578947368421vw;
    line-height: 2.631578947368421vw;
    color: #000;
    position: relative;
    text-decoration: none;
    height: 5.856515373352855vw;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    background: #fff;
}

.navtabs_cta li a:after {
    content: "";
    height: var(--fourunit);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: var(--zerounit);
    transform: translateX(-100%);
    background-color: #ee4036;
    transition: transform ease-out 0.3s;
}

.navtabs_cta li a.active {
    font-weight: 700;
    color: #000;
}

.navtabs_cta li a.active:after,
.navtabs_cta li a:hover:after {
    transform: translateX(0);
}

.custom_accordian_item {
    padding: 0.804093567251462vw 0 0;
    padding-right: 0;
    background: #fff;
    position: relative;
    border-bottom: 1px solid #bebcbd80;
}

.custom_accordian_item:last-child {
    border-bottom: 0;
}

.custom_accordian_item.active {
    background: #f7f7f7;
    border-bottom: var(--fourunit) solid #ee4036;
    border-top: var(--oneunit) solid transparent;
}


.accordian_heading {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    background-repeat: no-repeat;
    background-position: right 6.213450292397661vw top 0.7309941520467835vw;
    background-size: 1.7543859649122806vw 1.7543859649122806vw;
    transition: 0.3s linear;
    position: relative;
}

.accordian_heading,
.custom_accordian_item.active .accordian_heading {
    background-image: none;
}
 

.accordian_heading>div {
    padding-right: 13.88888888888889vw;
}

.accordian_heading h4 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 500;
    font-size: 2.1929824561403506vw;
    line-height: 2.7777777777777777vw;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    transition: 0.2s;
}
.accordian_heading h3 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 500;
    font-size: 2.1929824561403506vw;
    line-height: 2.7777777777777777vw;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    transition: 0.2s;
}

.accordian_heading p {
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    font-size: 1.3157894736842104vw;
    line-height: 2.046783625730994vw;
    color: #4d4d4d;
    margin: 0;
    padding-top: 0.43859649122807015vw;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box !important;
}

.accordian_heading p.capitalize {
    text-transform: capitalize;
}

.plusminus_anim {
    position: absolute;
    width: 1.7569546120058566vw;
    height: 1.7569546120058566vw;
    right: 6.002928257686676vw;
    top: 0.7320644216691069vw;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.plusminus_anim span {
    width: 100%;
    height: 1px;
    background: #000;
    display: block;
    position: absolute;
}

.plusminus_anim.nintydeg span:first-child {
    transform: rotate(90deg);
    transition: cubic-bezier(0.2, 0.01, 0.6, 0.99) 0.3s;
}

.custom_accordian_item.active .plusminus_anim span:first-child,
.profile_accordian_item.active .profile_accordian_title .plusminus_anim span:first-child {
    transform: rotate(180deg);
}


.accordian_content {
    padding: 2.1929824561403506vw 13.88888888888889vw 0 0;
    transform: translateY(20px);
    transition: all cubic-bezier(0.43, 0, 0.24, 0.99) 0.6s 50ms;
}

.accordian_content .accordian_content_inner {
    display: none;
    padding-bottom: 2.7046783625730995vw;
}

.accordian_content p {
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    font-size: 1.3157894736842104vw;
    line-height: 2.046783625730994vw;
    color: #4d4d4d;
    padding-left: 0;
    border-top: 0;
    margin: 1.171303074670571vw 0 0;
}

.custom_accordian_item.active .accordian_content {
    transform: translateY(0);
}

.accordian_content :first-child {
    margin-top: 0;
}

.accordian_content a.explore_more_cta,
.arrow_link {
    font-size: 1.3157894736842104vw;
    margin-top: 1.608187134502924vw;
}

.accordian_content a.explore_more_cta {
    text-transform: capitalize;
}

.arrow_link {
    font-family: acumin-pro, sans-serif;
    display: block;
}

.arrow_link,
.arrow_link:hover {
    text-decoration: none;
    color: #444;
}

.arrow_link img {
    margin-left: 0.8052708638360175vw;
    width: 1.6837481698389458vw;
    transition: 0.1s linear;
}

.arrow_link:hover img {
    margin-left: 1.0980966325036603vw;
}

.leftspace_heading_gap {
    padding-top: 7.320644216691069vw;
}

.bottomline_animation_wrp {
    border-top: var(--oneunit) solid var(--border-color);
    padding: 6.076134699853587vw 0 0;
}

.bottomline_gap {
    padding: 6.954612005856515vw var(--zerounit) 3.513909224011713vw;
}

.bottomline_animation_inner {
    width: 77.8%;
    width: calc(100% - 6.588579795021962vw);
}

.bottomline_animation_inner span {
    color: var(--black);
    font-family: acumin-pro, acumin-pro, sans-serif;
    font-size: 2.049780380673499vw;
    font-weight: 200;
    line-height: 3.806734992679356vw;
}

.bottomline_animation_inner span.lineanimation_text {
    padding-bottom: 0.29282576866764276vw;
    background-image: linear-gradient(#ee4036, #ee4036);
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 2s cubic-bezier(0.54, -0.01, 0.3, 1);
    background-size: 0 5px;
}

.section_activated .bottomline_animation_inner span.lineanimation_text {
    background-size: 100% 5px;
}

.centermega_slider_wrp {
    position: relative;
}

.centermega_container {
    width: 60%;
    margin: var(--zerounit) auto;
    overflow: initial;
    position: static;
}

.centermega_caption img {
    width: 100%;
    transition: 0.3s linear;
    opacity: 0.2;
}

.swiper-slide-active .centermega_caption img,
.swiper-slide-active .centermega_caption p,
.swiper-slide-active.quotes_slide_text span.author_txt {
    opacity: 1;
}

.centermega_caption p {
    transition: 0.2s linear;
    opacity: 0;
    font-family: acumin-pro, Sans-serif;
    margin: 0;
    font-size: 1.610541727672035vw;
    font-weight: 200;
    line-height: 2.781844802342606vw;
    padding: 1.3177159590043925vw 0 0;
    color: #000;
}

.centermega_slider_wrp .centermega_slide_style {
    background: 0 0;
    width: 20.02vw;
    top: 0;
    height: 36.6vw;
    margin: 0;
}

.centermega_slider_wrp .centermega_slide_style:after {
    display: none;
}

.centermega_slider_wrp .centermega_slide_style:focus {
    outline: 0;
}

.centermega_slider_wrp .swiper-button-prev {
    left: 0;
    cursor: url(../images/arrow-big-left.svg), auto;
}

.centermega_slider_wrp .swiper-button-next {
    right: 0;
    cursor: url(../images/arrow-big-right.svg), auto;
}

.success_story_inner {
    padding: 10.17716vw 0 8.8vw 19.912152vw;
    overflow: hidden;
}

.success_section_heading {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.success_section_heading img {
    width: 7.979502196193265vw;
    max-width: 100%;
    height: auto; 
}

.success_section_heading h4 {
    margin: 0;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 4.856515373352855vw;
    font-weight: 700;
    line-height: 6.222547584187408vw;
    -webkit-text-stroke: var(--oneunit) #9b9b9b;
    -webkit-text-fill-color: #fff;
    padding: 0 0 0 12.005856515373353vw;
}

.story_slider_inner {
    overflow: hidden;
    padding: 4.831625183016105vw 0 0;
    width: 90.043924vw;
    width: 100%;
}

.section_activated a.anchor_line_anim.active:before,
.stories_sld_container,
marquee {
    width: 100%;
}

.stories_slide_item a:hover {
    text-decoration: none;
}

.stories_slide_item_hold {
    border: var(--oneunit) solid #dcdcdc;
    background: #fff;
}

.dotsslider_item picture,
.stories_slide_item_hold a,
body.desktop #cursor {
    display: block;
}

.success_inside_top {
    padding: 0.8784773060029283vw 1.3177159590043925vw var(--zerounit) 1.3177159590043925vw;
    height: 6.44216691068814vw;
}

.success_inside_top h5 {
    font-weight: 300;
    font-size: 1.4641288433382138vw;
    line-height: 1.8301610541727673vw;
    color: var(--blue);
    margin: 0;
}
.success_inside_top h3 {
    font-weight: 300;
    font-size: 1.4641288433382138vw;
    line-height: 1.8301610541727673vw;
    color: var(--blue);
    margin: 0;
}

.success_inside_info_part span,
.success_inside_top span {
    font-weight: 200;
    line-height: 1.4641288433382138vw;
    margin: 0;
}

.success_inside_top h5,
.success_inside_top span {
    font-family: acumin-pro, sans-serif;
    font-style: normal;
}
.success_inside_top h3 {
    font-family: acumin-pro, sans-serif;
    font-style: normal;
}

.success_inside_top span {
    font-size: 1.171303074670571vw;
    color: #000;
}

.success_inside_info {
    padding: var(--zerounit) 1.3177159590043925vw var(--zerounit) 1.3177159590043925vw;
    display: flex;
    justify-content: space-between;
    height: 9.66325036603221vw;
}

.success_inside_info_part {
    width: 50%;
}

.success_inside_info_part span {
    font-size: 0.951683748169839vw;
    color: #4d4d4d;
}

.success_inside_info_part p,
.success_inside_info_part span,
.success_inside_year {
    font-family: acumin-pro, sans-serif;
    font-style: normal;
}

.success_inside_info_part p {
    font-size: 1.191303074670571vw;
    line-height: 1.4641288433382138vw;
    color: #000;
    font-weight: 300;
    margin: 0;
}

.success_inside_year {
    font-weight: 200;
    font-size: 0.951683748169839vw;
    color: #4d4d4d;
    padding: var(--zerounit) 1.3177159590043925vw 0.7320644216691069vw;
}

.success_profile_img {
    background-color: var(--light);
}

.success_profile_img img {
    width: 100%;
    max-width: 27.96486090775988vw;
    height: auto; 
}

.cta_pagination_nav,
.profile_pagination_nav {
    padding-top: 2.9282576866764276vw;
    display: flex;
    justify-content: space-between;
}

.cta_pagination_nav {
    width: 66.6vw;
    flex-direction: row-reverse;
}

.profile_pagination_nav {
    width: 66.15vw;
}

.success_leftright_nav {
    display: flex;
    width: 6.588579795021962vw;
    justify-content: space-between;
    margin-left: auto;
}

.success_pagination {
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    letter-spacing: normal;
    font-size: 1.610541727672035vw;
    line-height: 2.781844802342606vw;
}

.success_next,
.success_prev {
    right: initial;
    top: initial;
    bottom: 0.36603221083455345vw;
    width: 2.2929824561403506vw;
    height: 2.2929824561403506vw;
    margin: 0;
    padding: 0;
    display: flex;
    position: static;
    opacity: 0.7;
    transition: 0.1s linear;
}

.success_next:hover,
.success_prev:hover {
    opacity: 1;
    background: #f2f2f2;
    border-radius: 50%;
}

.success_next {
    left: 71.6%;
}

.success_prev {
    left: 66.8%;
}

.success_next:after,
.success_prev:after {
    content: "";
    background-size: 100%;
    background-position: center center;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.success_prev:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.5' height='31.5' viewBox='0 0 31.5 31.5'%3E%3Cg id='Icon_feather-arrow-right-circle' data-name='Icon feather-arrow-right-circle' transform='translate(33.75 33.75) rotate(180)'%3E%3Cpath id='Path_1262' data-name='Path 1262' d='M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_1263' data-name='Path 1263' d='M18,24l6-6-6-6' transform='translate(2)' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3Cpath id='Path_1264' data-name='Path 1264' d='M12,18H27.576' transform='translate(-1.576)' fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

.success_next:after {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.5' height='31.5' viewBox='0 0 31.5 31.5'%3E%3Cg id='Icon_feather-arrow-right-circle' data-name='Icon feather-arrow-right-circle' transform='translate(-2.25 -2.25)'%3E%3Cpath id='Path_1262' data-name='Path 1262' d='M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_1263' data-name='Path 1263' d='M18,24l6-6-6-6' transform='translate(2)' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3Cpath id='Path_1264' data-name='Path 1264' d='M12,18H27.576' transform='translate(-1.576)' fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.post_category {
    display: block;
    padding: 0.8784773060029283vw 1.3177159590043925vw 0;
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    font-size: 0.951683748169839vw;
    line-height: 1.4641288433382138vw;
    color: #4d4d4d;
    text-transform: uppercase;
}

.blog_post_heading,
.post_sort_desc {
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.blog_post_heading {
    font-family: acumin-pro, sans-serif;
    font-weight: 300;
    letter-spacing: normal;
    font-size: 1.4641288433382138vw;
    line-height: 1.8301610541727673vw;
    color: var(--blue);
    padding: 0.5856515373352855vw 1.3177159590043925vw var(--zerounit);
    height: 6.222547584187408vw;
    margin: 0 0 0.7320644216691069vw var(--zerounit);
    -webkit-line-clamp: 3;
    display: -webkit-box;
}

.post_sort_desc {
    font-size: 1.3177159590043925vw;
    line-height: 2.049780380673499vw;
    color: #000;
    margin: 0 0 2.12298682284041vw; 
    height: 4.392386530014641vw;
    padding: var(--zerounit) 1.3177159590043925vw;
    -webkit-line-clamp: 2;
    display: -webkit-box !important;
}

.post_sort_desc,
.postdate,
.quotes_slide h4 {
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
}
.quotes_slide p {
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
}

.postdate {
    display: block;
    font-size: 13px;
    line-height: 1.3177159590043925vw;
    color: #4d4d4d;
    text-transform: capitalize;
    padding: 0 1.3177159590043925vw 1.3177159590043925vw;
}

.postfigure {
    margin: 0;
}

.postfigure img,
.postfigure_page img {
        width: 366px;
    height: 250px;
    object-fit: cover;
	aspect-ratio: 183 / 125;
}

.home-desi-cat,
.postfigure,
.postfigure_page {
    height: 18.272327964860906vw;
}

iframe.slider_frame {
    width: 100%;
    height: 17.93557833089312vw;
}

.postfigure_page {
    margin: 0;
}

.prog-detail-figr figure {
    height: 100%;
}

.indus-iframe .slider_frame_page,
.prog-detail-figr figure img {
    height: 100% !important;
}

/*.postfigure_page img {
    max-width: 100%;
    height: auto; 
}*/

.slider_frame_page {
    background-color: var(--light);
}

.indus-iframe,
iframe.slider_frame_page {
    height: 17.93557833089312vw;
    width: 100%;
}

.quotes_slider_wpr {
    position: relative;
    padding: 5.124450951683748vw 0;
}

.quotes_slider_wpr:after,
.quotes_slider_wpr:before {
    content: "";
    width: 19.95215226939971vw;
    height: 5.124450951683748vw;
    background: var(--blue);
    position: absolute;
    transition: 0.3s linear;
}

.quotes_slider_wpr:before {
    top: 5.124450951683748vw;
    left: 0;
}

.quotes_slider_wpr:after {
    bottom: 5.124450951683748vw;
    right: 0;
}

.quotes_slider_wpr.section_activated:before {
    top: 0;
}

.quotes_slider_wpr.section_activated:after {
    bottom: 0;
}

.quotes_slider_gap {
    background: var(--blue);
    padding: 8.392387vw 0 6.588579795021962vw;
    position: relative;
    background-image: url(../images/quotes.webp);
    background-repeat: no-repeat;
    background-position: right -7.320644216691069vw top 5.124450951683748vw;
    background-size: 19.98535871156662vw 21.669106881405565vw;
}

.quotes_slider_gap:before {
    content: "";
    width: 20vw;
    height: 5.124450951683748vw;
    background: #fff;
    position: absolute;
    transition: 0.3s linear;
    bottom: -5.124450951683748vw;
}

.quotes_slider_container {
    width: 60%;
    position: static;
}

.quotes_slider_wrapper {
    margin: 0 auto;
}

.quotes_text_container {
    width: 71.5%;
    position: static;
    display: flex;
    flex-wrap: wrap;
    overflow: initial;
    padding: 3.22108345534407vw 0 0 5.710102489019034vw;
}

.quotes_text_wrapper {
    width: 70%;
}

.quotes_slide h4 {
    margin: 0;
    font-size: 2.9282576866764276vw;
    line-height: 3.6603221083455346vw;
    color: #fff;
}
.quotes_slide p {
    margin: 0;
    font-size: 2.9282576866764276vw;
    line-height: 3.6603221083455346vw;
    color: #fff;
}

.quotes_pagination,
.quotes_slide_text span.author_txt {
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    font-size: 1.610541727672035vw;
    color: #fff;
}

.quotes_slide_text span.author_txt {
    line-height: 2.781844802342606vw;
    opacity: 0;
    transition: opacity ease-out 0.2s;
    display: block;
}

.quotes_pagination {
    width: 2.562225475841874vw;
    text-align: center;
    margin-left: auto;
    margin-right: 3.294289897510981vw;
}

.quotes_btn_wrp {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    width: 5.636896046852123vw;
    justify-content: space-between;
}

.quotes_btn_next,
.quotes_btn_prev {
    margin: 0;
    position: static;
    width: 2.1929824561403506vw;
    height: 2.1929824561403506vw;
}

.quotes_btn_prev:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.5' height='31.5' viewBox='0 0 31.5 31.5'%3E%3Cg id='Icon_feather-arrow-right-circle' data-name='Icon feather-arrow-right-circle' transform='translate(33.75 33.75) rotate(180)'%3E%3Cpath id='Path_1262' data-name='Path 1262' d='M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_1263' data-name='Path 1263' d='M18,24l6-6-6-6' transform='translate(2)' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3Cpath id='Path_1264' data-name='Path 1264' d='M12,18H27.576' transform='translate(-1.576)' fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

.quotes_btn_next:after,
.quotes_btn_prev:after {
    content: "";
    background-size: 100%;
    background-position: center center;
    width: 2.1929824561403506vw;
    height: 2.1929824561403506vw;
    background-repeat: no-repeat;
}

.quotes_btn_prev:after {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.5' height='31.5' viewBox='0 0 31.5 31.5'%3E%3Cg id='Icon_feather-arrow-right-circle' data-name='Icon feather-arrow-right-circle' transform='translate(33.75 33.75) rotate(180)'%3E%3Cpath id='Path_1262' data-name='Path 1262' d='M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_1263' data-name='Path 1263' d='M18,24l6-6-6-6' transform='translate(2)' fill='none' stroke='%23fff' stroke-width='1.5'/%3E%3Cpath id='Path_1264' data-name='Path 1264' d='M12,18H27.576' transform='translate(-1.576)' fill='none' stroke='%23fff' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.quotes_btn_next:after {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.5' height='31.5' viewBox='0 0 31.5 31.5'%3E%3Cg id='Icon_feather-arrow-right-circle' data-name='Icon feather-arrow-right-circle' transform='translate(-2.25 -2.25)'%3E%3Cpath id='Path_1262' data-name='Path 1262' d='M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_1263' data-name='Path 1263' d='M18,24l6-6-6-6' transform='translate(2)' fill='none' stroke='%23fff' stroke-width='1.5'/%3E%3Cpath id='Path_1264' data-name='Path 1264' d='M12,18H27.576' transform='translate(-1.576)' fill='none' stroke='%23fff' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.sidebar_title_gap {
    padding-top: 0.63923865300146414vw;
    width: 100%;
}

.sec_common_wrp {
    padding: 6.076134699853587vw 0 6.954612005856515vw;
}

.studio_section {
    padding: 12.076135vw 0 4.954612vw;
}

.common_caption {
    width: calc(100% - 6.588579795021962vw);
}

.common_caption_max {
    width: calc(var(--gridcell) * 8);
}

.common_caption_fullwidth {
    width: 100%;
    width: calc(100% - 6.588579795021962vw);
}

.common_caption h2,
.common_caption h4,
.common_caption p {
    color: var(--black);
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    margin: 0;
}



.common_caption p {
    color: var(--black);
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    margin: 0;
}

.common_caption h2,
.common_caption h4 {
    font-size: 3.3674963396778916vw;
    line-height: 4.24597364568082vw;
    /* font-size: 3.0vw;
    line-height: 4.0vw; */
}


.common_caption p {
    font-size: 3.3674963396778916vw;
    line-height: 4.24597364568082vw;
    /* font-size: 3.0vw;
    line-height: 4.0vw; */
}

.blg_dtl_content h4 {
    font-size: 1.89vw;
    line-height: 2.1vw;
	font-weight: 300;
}

.common_caption h4.smalltext {
    font-size: 2.1929824561403506vw;
    line-height: 3.143274853801169vw;
}

.common_caption p.smalltext {
    font-size: 2.1929824561403506vw;
    line-height: 3.143274853801169vw;
}
.common_caption p {
    font-size: 3.3674963396778916vw;
    line-height: 4.24597364568082vw;
}
.common_caption h5+h4 {
    padding-top: 1.903367496339678vw;
}

.common_caption h4 a.section_ttl_link {
    text-decoration: none;
    border-bottom: 1px solid var(--black);
    color: var(--black);
}
.common_caption p a.section_ttl_link {
    text-decoration: none;
    border-bottom: 1px solid var(--black);
    color: var(--black);
}

.common_caption p+h4 {
    /* padding-top: 3.22108345534407vw; 
    padding-top: 2.221083vw;*/
    padding-bottom: 0vw;
}
.common_caption h4 {
    /* padding-top: 3.22108345534407vw; */
    padding-top: 2.221083vw; 
}
 
.blogpage .common_caption ul {
    margin-left: 3vw !important;
}

.textred {
    color: var(--red);
}


/* .common_caption h4 {
    font-size: 3vw;
} */

.abt_common_text h4 {
    font-size: 2.635431918008785vw;
    line-height: 3.806734992679356vw;
}

#cursor.white,
.common_caption.white_clr h4,
.common_caption.white_clr p,
.sidebarheading.text_white h6 {
    color: #fff;
}

 
.common_caption h5 {
    font-family: acumin-pro, sans-serif;
    font-weight: 400;
    font-size: 2.1961932650073206vw;
    line-height: 2.781844802342606vw; 
    margin: 0;
	text-transform:uppercase !important;
} 
.blogpage .common_caption h5 {
    font-family: acumin-pro, sans-serif;
    font-weight: 400;
    font-size: 1.3961932650073206vw;
    line-height: 2.781844802342606vw; 
    margin: 0;
	text-transform: capitalize !important;
}

.common_caption h4+h5 {
    padding: 30px 0 0;
}

.common_caption p {
    padding-top: 1.2641288433382138vw;
}

.common_caption>img {
    max-width: 100%;
    margin: 0 0 0 auto;
    display: block;
}

.common_caption>p+img {
    margin-top: 2.9282576866764276vw;
    margin-bottom: 1.4641288433382138vw;
} 
.common_caption p+h5 {
    padding: 3.001464128843338vw 0 0;
}
.abt_common_text p,
.common_caption p {
    font-size: 1.610541727672035vw;
    line-height: 2.581844802342606vw;


}

.common_caption p.evolve_txt {
    font-size: 3.3674963396778916vw;
    line-height: 4.24597364568082vw;

}

.kingston_stokeline_heading h2 {
        font-size: 10.583333333333334vw;
    }
@media only screen and (max-width: 520px) {
    .kingston_stokeline_heading h2 {
        font-size: 9.9vw;
    }
}

.kingston_stokeline_heading h2 {
    -webkit-text-stroke: 1px #9b9b9b;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 5.856515373352855vw;
    line-height: 6.222547584187408vw;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-weight: 700;
    margin: 0;
}
.by_year_heading h2 {
    font-size: 10.54172767203514vw;
    font-weight: 600;
    line-height: 4.758418740849195vw;
    letter-spacing: -0.29px;
    font-family: acumin-pro-extra-condensed, Sans-serif;
    margin: 0;
}


.sidebarheading.text_white h3 {
    color: #fff;
}

.sidebarheading h3 label {
        white-space: initial;
        position: relative;
    } 


.sidebarheading h3 label {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin: 0;
    /* cursor: none; */
}
.sidebarheading h3 label {
    width: 100%;
}



.sidebarheading h2 label span.title_dashline,.sidebarheading h3 label span.title_dashline {
    content: "";
    height: var(--threeunit);
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    margin: 0.29282576866764276vw 0.5856515373352855vw 0 0;
    min-width: 3.3674963396778916vw;
}




.leftbar_heading_small h3 {
    font-size: 1.610541727672035vw;
}
a.line_link {
    border-bottom: 0;
    color: #000;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    padding-bottom: 0;
}

a.line_link:before {
    content: "";
    height: 2px;
    width: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    background: currentColor;
    transform: translateX(-100%) translateY(1px);
    transition: all ease-out 0.7s 0.3s;
}

a.line_link.active:before {
    transform: translateX(0) translateY(1px);
    transition: all ease-out 0.3s;
}

.popup_short_view.active p,
a.line_link:hover:before {
    transform: translateY(0);
}

a.anchor_line_anim.active:before {
    width: 0;
}

.common_caption.white_clr p.abt_incep_btw_line {
    padding: 0;
}

.common_caption.white_clr p.abt_incep_top_spc {
    padding: 9.736456808199122vw 0 0;
}

.common_caption h5+p {
    padding-top: 0.8784773060029283vw;
}

.common_caption> :first-child {
    padding-top: 0;
    margin-top: 0;
}

.marquee_wrp {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.marquee_border {
    border-bottom: 1px solid;
}

@media only screen and (min-width: 768px) {
    .marquee_thin .marquee_track li a {
        font-size: 3.3674963396778916vw;
        font-weight: 100;
    }
    .mbl_syncslider_lifeiiad {
        display: none;
    }
}

.marquee_thin .marquee_track li span {
    font-size: 3.3674963396778916vw;
    font-weight: 100;
}

.marquee_wrp.bgblue {
    border-bottom: var(--oneunit) solid #411c90;
    border-right: 0;
    border-left: 0;
}

.marquee_style {
    height: 5.856515373352855vw;
    width: 100%;
}

.marquee_track {
    width: 100%;
    display: flex;
    padding: 0;
    list-style: none;
    margin: 0;
    height: 100%;
}

.marquee_track li img {
    width: 1.610541727672035vw;
    margin: 0;
}

.marquee_track li+li {
    margin: 0 0 0 1.5069546120058566vw;
}

.marquee_track li a,
.marquee_track li+li:before {
    color: #fff;
    font-size: 2.12298682284041vw;
    font-family: acumin-pro, sans-serif;
    font-style: normal;
    pointer-events: none;
    display: inline-block;
}

.marquee_track li+li:before {
    padding: var(--zerounit) 0.7320644216691069vw;
    font-weight: 400;
    line-height: 3.074670571010249vw;
    background-image: url(../svg/%26text.svg);
    background-size: 1.4641288433382138vw;
    background-repeat: no-repeat;
    align-items: center;
    background-position: center center;
    width: 1.4641288433382138vw;
    height: 1.4641288433382138vw;
    margin: var(--zerounit) 0.8784773060029283vw;
}

.marquee_track li a {
    white-space: nowrap;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    margin: -0.36603221083455345vw 0 0;
}

.marqueeline {
    width: 2.562225475841874vw;
    height: 1px;
    background: #fff;
    display: block;
    margin: 0.43923865300146414vw 0 0;
}

.state_marq_wrp {
    display: flex;
}

.marq_state_wrp {
    width: 13.76281112737921vw;
    border-right: 1px solid #fff;
    height: 5.856515373352855vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marq_state_wrp div {
    font-size: 1.5373352855051245vw;
    line-height: 1;
    color: #fff;
    font-family: Roboto, acumin-pro, sans-serif;
    font-weight: 600;
    display: flex;
    justify-content: center;
}

.marq_state_wrp div img {
    margin-right: 1.0248901903367496vw;
    width: 2.12298682284041vw;
    max-width: 100%;
    height: auto; 
}

.marq_state_wrp div i {
    margin: 0 0.29282576866764276vw 0 0;
}

.explore_more_cta:hover .explore_txt:after,
.profilecard_tabs_wp {
    width: 100%;
}

.profilecard_space {
    padding-bottom: 6.588579795021962vw;
}

.profilecard_inner {
    padding: 0 0 6.66vw;
}

.profilecard_hold {
    padding: 0 0 0 var(--gridcell);
}

.profilecard_sec_heading {
    padding: 10.8527vw 0 0;
}

.profilecard_sec_heading h2,
.profilecard_sec_heading h4 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2.635431918008785vw;
    line-height: 2.635431918008785vw;
    letter-spacing: normal;
    display: inline-block;
    margin: 0;
    color: #000;
    text-transform: uppercase;
}

.profilecard_sec_heading span.dash_line_medium {
    content: "";
    height: var(--threeunit);
    background: #000;
    width: 5.636896046852123vw;
    display: inline-block;
    vertical-align: middle;
    margin: -0.36603221083455345vw 0.951683748169839vw 0 0;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
}

.profilecard_wrp {
    display: flex;
    justify-content: space-between;
}

.profilecard_alignment {
    padding: 6.4vw 0 0 6.588579795021962vw;
}

.profilecard_mdl_people {
    width: calc(100% - 13.177159590043924vw);
    margin: 0 auto;
}

.profilecard_item {
    width: 30.83%;
    border: var(--oneunit) solid var(--border-color);
}

.profilecard_inside_tab:after {
    content: "";
    width: 30.83%;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.profilecard_item_inner {
    position: relative;
    background: #fff;
}

.profilecard_top {
    height: 13.250366032210833vw;
    background: #fff;
}

.profilecard_top_heading {
    padding: 1.171303074670571vw 1.3177159590043925vw;
    display: flex;
    justify-content: space-between;
}

.profilecard_title h5 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 600;
    font-size: 1.903367496339678vw;
    color: var(--blue);
    margin: 0 0 0.5856515373352855vw;
    line-height: 2.342606149341142vw;
}
.profilecard_title h3 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 600;
    font-size: 1.903367496339678vw;
    color: var(--blue);
    margin: 0 0 0.5856515373352855vw;
    line-height: 2.342606149341142vw;
}

.popup_short_view a,
.profilecard_title span {
    font-family: acumin-pro, sans-serif;
    color: #4d4d4d;
}

.profilecard_title span {
    font-weight: 200;
    margin: 0;
    font-size: 1.3177159590043925vw;
    text-transform: capitalize;
    display: block;
    line-height: 1.7569546120058566vw;
}

.open_popup {
    width: 1.4641288433382138vw;
    height: 1.4641288433382138vw;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    margin-top: 0.5856515373352855vw;
    transition: cubic-bezier(0.2, 0.01, 0.6, 0.99) 0.3s;
}

.open_popup.active {
    transform: rotate(45deg) !important;
}

.open_popup span.line_horizontal,
.open_popup span.line_vertical {
    display: block;
    width: 100%;
    height: 0.5px;
    background: #000;
    position: absolute;
}

.open_popup span.line_horizontal {
    width: 0.5px;
    height: 100%;
}

.popup_short_view {
    display: none;
    position: relative;
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    font-size: 1.171303074670571vw;
    line-height: 1.903367496339678vw;
    width: 100%;
    padding: 1.3177159590043925vw 1.3177159590043925vw 0.8784773060029283vw;
    padding-top: 0;
    background: #fff;
    height: 24.52415812591508vw;
    z-index: 2;
}

.popup_short_view p {
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    display: -webkit-box !important;
    margin: 0;
    transform: translateY(20px);
    transition: all cubic-bezier(0.43, 0, 0.24, 0.99) 0.6s 50ms;
}

.popup_short_view a {
    display: inline-block;
    font-weight: 500;
    font-size: 1.0248901903367496vw;
    text-transform: uppercase;
    transition: 0.2s linear;
    position: absolute;
    bottom: 6px;
    opacity: 0;
    visibility: hidden;
}

.popup_short_view.active a {
    opacity: 1;
    visibility: initial;
}

.popup_short_view a:hover {
    text-decoration: none;
    color: #000;
}

profilecard_profile_img {
    display: inline-block;
    overflow: hidden;
}

.profilecard_profile_img picture img {
    display: block;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: calc(100%);
    height: 26.57393850658858vw;
    object-fit: cover;
    max-width: 100%;
    aspect-ratio: auto 284 / 284;
}

.profilecard_item_inner:hover .profilecard_profile_img img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.profilecard_profile_img {
    overflow: hidden;
}

.course_leader {
    width: 23%;
    padding-top: 10.761346998535872vw;
}

.course_leader h4 {
    color: #fff;
    -webkit-text-stroke: var(--oneunit) #9b9b9b;
    -webkit-text-fill-color: #fff;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 5.856515373352855vw;
    font-weight: 700;
    line-height: 6.661786237188873vw;
    margin: 0 0 0-0.29282576866764276vw;
}
.course_leader p {
    color: #fff;
    -webkit-text-stroke: var(--oneunit) #9b9b9b;
    -webkit-text-fill-color: #fff;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 5.856515373352855vw;
    font-weight: 700;
    line-height: 6.661786237188873vw;
    margin: 0 0 0-0.29282576866764276vw;
}

.profile_accordian_wrp {
    padding: 6.825vw 0 0 6.63vw;
}

.profile_accordian_inner {
    width: 73.35285505124452vw;
}

.profile_accordian_item {
    position: relative;
    overflow: hidden;
    border: var(--oneunit) solid #bebcbd80;
    background: #fff;
    border-top: 0;
    height: 6.66vw;
    transition: all ease-in 0.3s;
}

.profile_accordian_item.active {
    background: #f2f2f2;
    height: calc(var(--gridcell) * 4 - 1px);
    overflow: hidden;
}

.profile_accordian_item:hover {
    background: #f2f2f2;
}

.clickaccordian {
    width: 100%;
    height: 6.588579795021962vw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

.profile_accordian_box {
    display: flex;
    justify-content: space-between;
}

.profile_accordian_img {
    width: 26.79355783308931vw;
}

.profile_image_holding {
    opacity: 0;
    transition: 0.3s;
}

.gridcell_slide_item picture img,
.profile_accordian_img img {
    width: 100%;
    object-fit: cover;
    max-width: 100%; 
	 
}

.profile_accordian_img img,
.profile_accordian_info p {
    transform: translateY(1.4641288433382138vw);
    transition: all cubic-bezier(0.43, 0, 0.24, 0.99) 0.6s 50ms;
}

.profile_accordian_img img {
    height: 26.57393850658858vw;
}

.more_tags_item:hover:after,
.profile_accordian_item.active .profile_accordian_img img,
.profile_accordian_item.active .profile_accordian_info p {
    transform: translateY(0);
}

.filter_tabs_btn li.nav-item a.active:after,
.profile_accordian_item.active .profile_image_holding {
    opacity: 1;
}

.profile_accordian_descrition {
    padding-left: 1.4641288433382138vw;
    padding-right: 1.4641288433382138vw;
    float: right;
    width: 46.705710102489014vw;
}

.profile_accordian_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6.588579795021962vw;
}

.profile_accordian_title>div {
    display: flex;
    width: 100%;
    align-items: center;
}

.pedagogy_mdl_page h4,
.profile_accordian_title h5 {
    font-family: acumin-pro-condensed, sans-serif;
    margin: 0;
} 
.profile_accordian_title h3 {
    font-family: acumin-pro-condensed, sans-serif;
    margin: 0;
}

.profile_accordian_title h5 {
    font-weight: 300;
    font-size: 1.903367496339678vw;
    color: var(--blue);
    line-height: 2.342606149341142vw;
    width: 40%;
}
.profile_accordian_title h3 {
    font-weight: 300;
    font-size: 1.903367496339678vw;
    color: var(--blue);
    line-height: 2.342606149341142vw;
    width: 40%;
}

.profile_accordian_title span.faculty_profile,
.profile_accordian_title>div>span {
    font-family: "acumin-pro", sans-serif;
    font-weight: 200;
    font-size: 1.410541727672035vw;
    color: #4d4d4d;
    margin: 0;
    display: block;
    width: 50%;
}

.profile_accordian_title span.faculty_profile {
    font-family: acumin-pro, sans-serif;
    font-size: 1.610541727672035vw;
}

.profile_accordian_title span.slideicon {
    width: 1.4641288433382138vw;
    height: 1.4641288433382138vw;
    background-image: url(../images/accordion-plus.svg);
    background-position: center center;
    margin-right: 1.0980966325036603vw;
    display: none;
}

.profile_accordian_item.active .profile_accordian_title span.slideicon {
    background-image: url(../images/accordion-minus.svg);
}

.profile_accordian_item .profile_accordian_title .plusminus_anim {
    position: relative;
    right: 1.0980966325036603vw;
    top: initial;
}

.profile_accordian_info {
    padding: 2.9282576866764276vw 0 0;
}

.profile_accordian_info p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    font-size: 1.3177159590043925vw;
    line-height: 2.049780380673499vw;
    color: #4d4d4d;
    margin: 0;
}

.profile_accordian_info a.explore_more_cta {
    font-size: 1.3177159590043925vw;
    margin-top: 2.1961932650073206vw;
    color: #4d4d4d;
    opacity: 0;
    transform: translateY(1.8301610541727673vw);
    transition: all cubic-bezier(0.43, 0, 0.24, 0.99) 0.7s 60ms;
}

.profile_accordian_item.active .profile_accordian_info a.explore_more_cta {
    transform: translateY(0);
    opacity: 1;
}

.gridcell_slider_wrp {
    overflow: hidden;
}

.gridcell_slider_size {
    width: 73.5%;
    margin: var(--zerounit) auto;
    padding: 6.695vw 0 var(--zerounit);
    position: relative;
}

.gridcell_size_blgdetail {
    width: 100%;
    margin: 0;
}

.gridcell_slider_container {
    overflow: initial;
}

.gridcell_slider_image {
    background: #f2f2f2;
}

.gridcell_slider_text {
    position: relative;
}

.gridcell_slide_item {
    background: #fff;
    position: relative;
    border-top: 1px solid #deddde;
    border-bottom: 1px solid #deddde;
}

.gridcell_slide_item:before {
    content: "";
    width: 1px;
    height: 100%;
    background: #bbb;
    left: 0;
}

.gridcell_slide_item picture img {
    opacity: 0.6;
    transition: 0.3s;
    height: auto;
}

.swiper-slide-active.gridcell_slide_item picture img {
    opacity: 1;
    transition-delay: 0.3s;
    max-width: 100%;
     
    object-fit: cover;
    object-position: top;
}

.play-btn {
    height: 100px;
    width: 100px;
    background: url(../images/play-icon.svg) no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: 0 auto;
    cursor: pointer;
    z-index: 1;
    transform: translate(0, -50%);
}

.gridcell_slide_item:before,
.gridslider_video {
    position: absolute;
    top: 0;
    z-index: 1;
}

.gridslider_video,
.gridslider_video iframe {
    width: 100%;
    height: 100%;
}

.gridcell_slide_text_item {
    padding-top: 1.92vw;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box !important;
    height: 12.518301610541727vw;
}

.gridcell_slide_text_item p {
    font-family: acumin-pro, Sans-serif;
    margin: 0;
    font-size: 1.610541727672035vw;
    font-weight: 200;
    line-height: 2.781844802342606vw;
    color: #000;
    width: 87.5%;
}

.grid_sldr_pagination_wrp {
    display: flex;
    width: 6.588579795021962vw;
    height: 2.562225475841874vw;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    right: 0.14641288433382138vw;
    top: 2.1961932650073206vw;
}

.grid_sldr_mblbar {
    display: none;
}

.gridcell_btn_next {
    top: 2.562225475841874vw;
    padding: 0;
    display: flex;
    opacity: 0.7;
    transition: 0.1s linear;
}

.gridcell_btn_next:hover,
.gridcell_btn_prev:hover {
    opacity: 1;
    background: #f2f2f2;
    border-radius: 50%;
}

.gridcell_btn_next,
.gridcell_btn_prev {
    position: static;
    width: 2.342606149341142vw;
    height: 2.342606149341142vw;
    margin: 0;
}

.gridcell_btn_prev:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.5' height='31.5' viewBox='0 0 31.5 31.5'%3E%3Cg id='Icon_feather-arrow-right-circle' data-name='Icon feather-arrow-right-circle' transform='translate(33.75 33.75) rotate(180)'%3E%3Cpath id='Path_1262' data-name='Path 1262' d='M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_1263' data-name='Path 1263' d='M18,24l6-6-6-6' transform='translate(2)' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3Cpath id='Path_1264' data-name='Path 1264' d='M12,18H27.576' transform='translate(-1.576)' fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

.gridcell_btn_next:after,
.gridcell_btn_prev:after {
    content: "";
    background-size: 100%;
    background-position: center center;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.gridcell_btn_prev:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.5' height='31.5' viewBox='0 0 31.5 31.5'%3E%3Cg id='Icon_feather-arrow-right-circle' data-name='Icon feather-arrow-right-circle' transform='translate(33.75 33.75) rotate(180)'%3E%3Cpath id='Path_1262' data-name='Path 1262' d='M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_1263' data-name='Path 1263' d='M18,24l6-6-6-6' transform='translate(2)' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3Cpath id='Path_1264' data-name='Path 1264' d='M12,18H27.576' transform='translate(-1.576)' fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

.gridcell_btn_next:after {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.5' height='31.5' viewBox='0 0 31.5 31.5'%3E%3Cg id='Icon_feather-arrow-right-circle' data-name='Icon feather-arrow-right-circle' transform='translate(-2.25 -2.25)'%3E%3Cpath id='Path_1262' data-name='Path 1262' d='M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_1263' data-name='Path 1263' d='M18,24l6-6-6-6' transform='translate(2)' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3Cpath id='Path_1264' data-name='Path 1264' d='M12,18H27.576' transform='translate(-1.576)' fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.gridcell_megaarrow_next,
.gridcell_megaarrow_prev {
    background: 0 0;
    width: 13.323572474377746vw;
    height: 100%;
    margin: 0;
    position: absolute;
    z-index: 1;
    bottom: 0;
    top: 0;
}

.gridcell_megaarrow_next {
    right: -13.323572474377746vw;
    cursor: url(../images/arrow-big-right.svg), auto;
}

.gridcell_megaarrow_prev {
    left: -13.323572474377746vw;
    cursor: url(../images/arrow-big-left.svg), auto;
}

.blog_slider_wrp {
    padding: 11.932650073206442vw 0 9.51683748169839vw;
    overflow: hidden;
}

.blg_slider_gap {
    padding: 0 20px 0 0;
}

.blog_pagination {
    display: none;
}

.explore_more_cta {
    display: flex;
    align-items: center;
    font-size: 1.4641288433382138vw;
    line-height: 18px;
    /*line-height: 1.7569546120058566vw;*/
    color: #000;
    font-family: acumin-pro, sans-serif;
    text-transform: uppercase;
    font-weight: 400;
}

.explore_txt {
    transition: all ease-out 0.2s;
    position: relative;
    padding: 0 0 0.21961932650073207vw;
}

.explore_txt:after {
    content: "";
    height: var(--oneunit);
    width: 0;
    position: absolute;
    bottom: 0;
    transition: all ease-out 0.3s;
    background-color: #000;
    left: 0;
}

.explore_arrow {
    position: relative;
    width: 1.5373352855051245vw;
    height: var(--oneunit);
    display: block;
    transition: 0.3s;
    margin: 0.14641288433382138vw 0 0 1.0980966325036603vw;
}

.explore_arrow:after,
.explore_arrow:before {
    content: "";
    position: absolute;
    transform: translateY(-50%);
}

.explore_arrow:before {
    height: 0.5856515373352855vw;
    width: 0.5856515373352855vw;
    border-top: 1.5px solid #000;
    border-right: 1.5px solid #000;
    margin-top: -0.29282576866764276vw;
    transform: rotate(45deg);
    right: 0;
    transition: 0.3s;
}

.explore_arrow:after {
    height: 1px;
    width: 100%;
    background-color: #000;
    right: 0;
    transition: 0.3s;
}

.explore_more_cta:hover {
    text-decoration: none;
    color: #000;
}

.explore_more_cta:hover .explore_txt {
    letter-spacing: 0.2px;
}

.explore_more_cta:hover .explore_arrow {
    width: 2.1961932650073206vw;
}

.pi_sec_wrp {
    padding: 10.54172767203514vw 0 5.856515373352855vw;
}

.pi_text_wrp {
    display: flex;
    padding: var(--zerounit) 0 2.1961932650073206vw 4.392386530014641vw;
    align-items: center;
}

.pi_text_wrp lottie-player {
    width: 9.150805270863836vw;
}

.pi_text_wrp p,
.pi_text_wrp span {
    font-size: 4.099560761346998vw;
    font-weight: 700;
    white-space: nowrap;
    font-family: acumin-pro, sans-serif;
    margin: 0 0 1.4641288433382138vw;
    display: block;
}

.pi_text_wrp span {
    font-family: revert;
    margin: 0 0 1.4641288433382138vw 0.21961932650073207vw;
}

.pi_text_wrp .stroketext {
    color: #fff;
    -webkit-text-stroke: var(--oneunit) #9b9b9b;
    -webkit-text-fill-color: #fff;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
}

.marquee_right_mdltext {
    padding: 8.272327964860908vw 0 5.124450951683748vw;
}

.pedagogy_mdl_wrp {
    padding: 14.348462664714495vw 0 0;
}

.pedagogy_mdl_page {
    width: calc(var(--gridcell) * 7);
}

.pedagogy_mdl_page h4 {
    font-weight: 700;
    font-size: 6.588579795021962vw;
    line-height: 4.392386530014641vw;
    color: var(--red);
    padding: 0 0 3.6603221083455346vw;
}

.pedagogy_mdl_page p {
    font-family: acumin-pro, sans-serif !important;
    font-weight: 200 !important;
    font-style: normal;
    letter-spacing: normal;
    color: #999;
    font-size: 1.610541727672035vw;
    line-height: 2.781844802342606vw;
    float: right;
    width: calc(var(--gridcell) * 4);
}

.pedagogy_mdl_page h4,
.pedagogy_mdl_page p:first-letter {
    text-transform: uppercase;
}

.pedagogy_readmore_sec {
    padding: 3.5871156661786237vw 0 6.222547584187408vw;
}

.pedagogy_howwetech {
    overflow: initial;
}

.slidebar_lottie {
    width: 21.96193265007321vw;
    padding-top: 0.8052708638360175vw;
}

.readmore_gap {
    padding: 9.51683748169839vw 0 0;
}

.readmore_inner {
    width: calc(var(--gridcell) * 7);
    width: calc(100% - 6.588579795021962vw);
}

.readmore_item {
    position: relative;
    padding: 0 0 5.417276720351391vw;
}

.readmore_item_border {
    border-top: var(--oneunit) solid var(--border-color);
}

.blg_dtl_content ul li:last-child,
.readmore_item:last-child,
ul.disc li:last-child {
    padding-bottom: 0;
}

.readmore_item h4,
.readmore_item p {
    font-family: acumin-pro, acumin-pro, sans-serif;
    font-weight: 200;
}

.readmore_item h4 {
    color: var(--red);
    font-size: 3.3674963396778916vw;
    line-height: 2.049780380673499vw;
    text-transform: none;
    margin: 0;
    padding-bottom: 3.806734992679356vw;
}

.readmore_item p {
    color: var(--black);
    font-size: 1.610541727672035vw;
    line-height: 2.781844802342606vw;
    margin: 0 0 1.3177159590043925vw;
}

.readmore_item p~p {
    display: none;
}

a.readmore_text_cta {
    font-family: acumin-pro, sans-serif;
    font-size: 1.4641288433382138vw;
    line-height: 1.7569546120058566vw;
    color: var(--black);
    text-transform: uppercase;
    padding: 0;
    text-decoration: none;
    transition: 0.3s linear;
}

a.readmore_text_cta:after {
    content: "More +";
    margin-left: 0.7320644216691069vw;
}

a.readmore_text_cta.readless:after {
    content: "Less -";
    margin-left: 0.7320644216691069vw;
}

.continuous_Learning_wrp {
    padding: 5.929721815519766vw 0 6.954612005856515vw;
}

.main_thecircle_banner {
    background-color: var(--lightyellow);
}

.main_thecircle_banner:after {
    background-image: linear-gradient(#caa900 var(--oneunit), transparent var(--oneunit)), linear-gradient(90deg, #caa900 var(--oneunit), transparent var(--oneunit));
}

.activated_viewmore img,
.lottie_banner_press {
    position: absolute;
    left: 0;
    right: 0;
    margin: var(--zerounit) auto;
}

.lottie_banner_press {
    top: calc(var(--gridcell) * 1.4);
    z-index: 2;
}

.svg_shape_size {
    width: calc(var(--gridcell) * 7);
    height: calc(var(--gridcell) * 7);
    z-index: 2;
    margin: 0 auto;
    justify-content: center;
}

.press_hold p,
.svg_shape_size h1 {
    text-align: center;
    z-index: 1;
    text-transform: uppercase;
    margin: 0;
}

.svg_shape_size,
.svg_shape_size h1 {
    display: flex;
    align-items: center;
    position: relative;
}

.svg_shape_size h1 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-size: 8.052708638360176vw;
    color: var(--lightyellow);
}

.circle_banner_dashline {
    height: 0.8052708638360175vw;
    background: var(--lightyellow);
    margin: 1.0980966325036603vw 0.8784773060029283vw 0;
    width: 15.00732064421669vw;
}

.svg_small_pusle {
    position: absolute;
    width: 4.392386530014641vw;
    height: 4.392386530014641vw;
    background: #fff;
    border-radius: 50%;
    z-index: 0;
    left: 0;
    right: 0;
    margin: 1.2445095168374818vw auto 0;
    display: block;
    animation: circle_pulse 1s ease-in-out infinite 0.6s;
}

.svg_large_pusle {
    transform: scale3d(var(--scale-value), var(--scale-value), 1);
    width: calc(var(--gridcell) * 7);
    height: calc(var(--gridcell) * 7);
    transition: transform ease-out 1s;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    top: 0.32942898975109813vw;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.press_hold {
    position: absolute;
    right: 16.83748169838946vw;
    bottom: 12.95754026354319vw;
}

.press_hold p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.0248901903367496vw;
    line-height: 1.171303074670571vw;
    font-family: acumin-pro, sans-serif;
    color: #fff;
    width: 4.026354319180088vw;
    font-weight: 600;
}

.press_hold,
.press_hold svg {
    width: 6.295754026354319vw;
    height: 6.295754026354319vw;
}

.the-circle-btn.wheel-active svg {
    transition: transform ease-in 3s;
    transform: rotate(360deg) !important;
}

.the-circle-btn.wheel-free svg {
    animation: free-rotate linear 2s forwards infinite;
}

.shape-container.shape1 {
    background-image: url(../svg/large-shape1.svg);
    background-size: 100%;
}

.shape-container.shape2 {
    background-image: url(../svg/large-shape2.svg);
    background-size: 120%;
}

.shape-container.shape3 {
    background-image: url(../svg/large-shape3.svg);
}

.shape-container.shape4 {
    background-image: url(../svg/large-shape4.svg);
}

.animate-loop {
    animation: pulse2 1s ease-in-out infinite 1s;
}

.animate-loop.animate-loop-end {
    animation: zeroPos 1s linear infinite;
}

.overview_circle_wpr {
    padding: 6.076134699853587vw 0 10.61493411420205vw;
}

.story_cell_wrp {
    padding-bottom: calc(var(--gridcell) * 2);
}

.story_cell_container {
    height: 100%;
    padding: var(--zerounit) 6.661786237188873vw;
}

.filter_tabs_btn li.nav-item a,
.filter_top_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tags_category_heading h4,
.tags_heading h4,
h4.filter_heading {
    color: #fff;
    -webkit-text-stroke: var(--oneunit) #9b9b9b;
    -webkit-text-fill-color: #fff;
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
}

h4.filter_heading {
    font-size: 5.856515373352855vw;
    margin: 0 0 0-0.29282576866764276vw;
    line-height: 6.222547584187408vw;
    position: relative;
    bottom: -0.8052708638360175vw;
}

.filter_tabs_btn {
    width: 69.23%;
}

.filter_tabs_btn li.nav-item {
    width: 33.33%;
}

.filter_tabs_btn li.nav-item a {
    border-radius: 0;
    position: relative;
    text-align: center;
    font-family: acumin-pro-condensed;
    color: var(--black);
    font-size: 1.903367496339678vw;
    text-transform: uppercase;
    background-color: #fff;
    border-right: var(--oneunit) solid #e0e0e0;
    display: block;
    font-weight: 500;
    height: calc(var(--gridcell) * 0.99);
    justify-content: center;
    line-height: calc(var(--gridcell) * 0.85);
}

.filter_tabs_btn li.nav-item a:after {
    content: "";
    width: 100%;
    height: 0.36603221083455345vw;
    background: var(--red);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: 0.3s;
}

.filter_tabs_btn li.nav-item a.active {
    background-color: #fff;
    color: #000;
}

.tabs_result_wrp {
    padding: 6.734992679355783vw 0 0;
}

.tabs_result_inner,
.wrap_all_result footer {
    display: flex;
    justify-content: space-between;
}

.tags_wrp {
    width: 23%;
}

.tags_heading {
    display: flex;
    align-items: center;
    height: 6.588579795021962vw;
}

.tags_category_heading h4,
.tags_heading h4 {
    font-size: 5.490483162518302vw;
}

.tags_heading h4 {
    margin: -3.8799414348462666vw 4.538799414348463vw 0 0;
}

.tags_heading span {
    font-size: 1.0248901903367496vw;
    text-transform: capitalize;
    color: #9b9b9b;
    display: block;
}

.circle_svg_tag {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 6.661786237188873vw;
}

.svg_tags_item {
    width: 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6.691068814055637vw;
    position: relative;
}

.svg_tags_item svg {
    width: 96.9%;
    transition: 0.2s;
}

.svg_tags_item svg.active circle,
.svg_tags_item svg.active path,
.svg_tags_item svg.active rect,
.svg_tags_item svg.active:hover circle,
.svg_tags_item svg.active:hover path,
.svg_tags_item svg.active:hover rect {
    fill: var(--lightyellow);
}

.svg_tags_item svg:hover circle,
.svg_tags_item svg:hover path,
.svg_tags_item svg:hover rect {
    fill: var(--light);
}

.svg_tags_item svg text {
    font-family: acumin-pro, sans-serif;
    font-weight: 300;
    font-size: 0.8784773060029283vw;
}

.more_tags_wrp {
    padding: 1.0980966325036603vw 0 1.4641288433382138vw;
    flex-wrap: wrap;
    background: #fff;
    margin: 0;
    min-height: 13.250366032210833vw;
    align-items: flex-start;
    display: none;
}

.more_tags_item {
    font-size: 1.0248901903367496vw;
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    color: var(--black);
    padding: var(--zerounit) var(--zerounit) 0.21961932650073207vw;
    margin: 0 0.36603221083455345vw 0.21961932650073207vw;
    list-style: none;
    border-bottom: var(--oneunit) solid transparent;
    float: left;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.more_tags_item:after {
    content: "";
    height: 0.14641288433382138vw;
    width: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    background: currentColor;
    transform: translateX(0) translateY(1px);
    transition: all ease-out 0.3s;
}

.activated_viewmore {
    display: none;
    position: absolute;
    width: calc(100% - var(--twounit));
    height: 100%;
    background: #fff;
    top: var(--twounit);
    cursor: pointer;
}

.activated_viewmore img {
    top: 45%;
    transform: translate(var(--zerounit), -50%);
}

.story_rst_container {
    width: 69.35%;
}

.tags_category_heading.hideheading {
    visibility: hidden;
    opacity: 0;
}

.tags_category_heading h4 {
    margin: 0;
    position: relative;
    top: -1.610541727672035vw;
    text-transform: lowercase;
}

.story_card_wpr {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.story_card_item_hold {
    background: #fff;
    width: 48.6%;
    border: var(--oneunit) solid var(--border-color);
    margin: 0 0 calc(var(--gridcell) * 1);
    height: calc(var(--gridcell) * 6);
}

.story_card_item_hold a {
    text-decoration: none;
    display: block;
}

.story_post_category {
    display: block;
    padding: 0.8784773060029283vw 1.3177159590043925vw 0;
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    font-size: 0.951683748169839vw;
    line-height: 1.4641288433382138vw;
    color: #4d4d4d;
    text-transform: uppercase;
}

.story_post_heading {
    font-family: acumin-pro, sans-serif;
    font-weight: 300;
    letter-spacing: normal;
    font-size: 1.4641288433382138vw;
    line-height: 1.8301610541727673vw;
    color: var(--blue);
    padding: 0.5856515373352855vw 1.3177159590043925vw var(--zerounit);
    height: 6.222547584187408vw;
    overflow: hidden;
    margin: 0 0 0.7320644216691069vw var(--zerounit);
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.story_postdate,
.story_sort_desc {
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
}

.story_sort_desc {
    font-size: 1.3177159590043925vw;
    line-height: 2.049780380673499vw;
    color: #000;
    margin: 0 0 3.4407027818448026vw;
    height: 4.596vw;
    padding: var(--zerounit) 1.3177159590043925vw;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box !important;
}

.story_postdate {
    display: block;
    font-size: 0.951683748169839vw;
    line-height: 1.3177159590043925vw;
    color: #4d4d4d;
    text-transform: capitalize;
    padding: 0 1.3177159590043925vw 1.3177159590043925vw;
}

.story_postfigure {
    margin: 0;
}

.story_postfigure iframe.thecircle_video,
.story_postfigure img {
    width: 100%;
    height: calc(var(--gridcell) * 3);
    object-fit: cover;
    max-width: 100%; 
}

.loadmore_cta:hover {
    background: var(--light);
}

.custom_table thead tr td select:focus,
.loadmore_cta:focus,
.select_dropdown_hold select:focus {
    outline: 0;
}

.loadmore_cta {
    background: #fff;
    border: var(--oneunit) solid var(--border-color);
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 6.734992679355783vw;
    align-items: center;
    padding: var(--zerounit) 0 var(--zerounit) 1.8301610541727673vw;
    /* cursor: none; */
}

.loadmore_cta span {
    font-family: acumin-pro, Sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.4641288433382138vw;
}

.loadmore_cta .svg_border {
    height: 100%;
    width: 6.661786237188873vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: var(--oneunit) solid var(--border-color);
}

.faculty_tabs_button li.nav-item.active:after,
.faculty_tabs_button li.nav-item:hover:after,
.loadmore_cta_people {
    width: calc(100% - 1px);
}

.loadmore_cta_people .svg_border {
    width: 6.661786237188873vw;
}

.inception_wrp {
    padding: 6.44216691068814vw 0 7.906295754026354vw;
    height: 53.14787701317716vw;
}

.our_pursuip_wrp {
    height: 57.10102489019033vw;
    padding: 4.612005856515373vw 0 var(--zerounit);
}

.lottie_inception,
.lottie_inception lottie-player {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    margin: var(--zerounit) auto;
}

.pillars_wrp {
    padding: 6.076134699853587vw 0 7.247437774524158vw;
    background: var(--blue);
}

.pillars_inner {
    position: relative;
}

.Pillter_top_title h4,
.Pillter_top_title h5 {
    font-family: acumin-pro, sans-serif;
    font-style: normal;
    letter-spacing: normal;
    padding: 0 0 0 5.856515373352855vw;
}

.Pillter_top_title h4 {
    font-weight: 200;
    font-size: 2.635431918008785vw;
    line-height: 3.806734992679356vw;
    color: #fff;
    margin-bottom: 1.4641288433382138vw;
}

.Pillter_top_title h5 {
    font-weight: 600;
    font-size: 3.3674963396778916vw;
    line-height: 3.074670571010249vw;
    color: var(--lightyellow);
    margin-bottom: 1.8301610541727673vw;
    border-bottom: var(--oneunit) solid rgba(33, 26, 81, 0.4);
}

.flower_lottie {
    position: absolute;
    width: 38.06734992679356vw;
    right: 0;
    top: 1.4641288433382138vw;
}

.pillars_info_wrp {
    padding: 3.464129vw 0 0 20.622255vw;
    width: 59vw;
}

.pillars_info_item {
    padding: 2.4890190336749636vw 0 var(--zerounit) 0;
}

.pillars_info_item h5,
.sticky_heading_star h4 {
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
}

.pillars_info_item h5,
.pillars_info_item p {
    font-family: acumin-pro, sans-serif;
    color: #fff;
    margin: 0;
}

.pillars_info_item h5 {
    font-size: 2.049780380673499vw;
    line-height: initial;
}

.pillars_info_item p {
    font-weight: 200;
    font-style: normal;
    letter-spacing: normal;
    font-size: 1.610541727672035vw;
    line-height: 2.1961932650073206vw;
}

.five_point_wrp {
    padding: 8.199121522693996vw 0 0;
}

.five_point_wrp.section_activated .section_edge {
    z-index: 0;
}

.sticky_heading_star {
    position: sticky;
    display: flex;
    top: 0;
    padding-top: 3.6603221083455346vw;
    transition: 0.2s;
}

.sticky_heading_star h4 {
    font-family: acumin-pro-condensed, sans-serif;
    font-size: 6.588579795021962vw;
    line-height: 6.954612005856515vw;
    color: var(--red);
    align-self: baseline;
    transition: 0.3s;
}

.five_lottie {
    width: 10.54172767203514vw;
    align-self: baseline;
    float: right;
    position: absolute;
    right: 3.6603221083455346vw;
    top: 0;
}

.five_lottie lottie-player {
    transition: 0.2s;
}

@media only screen and (min-width: 1024px) {
    .section_activated .sticky_sidebar {
        position: sticky;
        top: 2.5vw;
    }
    .section_activated .sticky_heading_star {
        padding-top: 1.4641288433382138vw;
        position: fixed;
        top: 2.562225475841874vw;
        left: 6.734992679355783vw;
    }
    .section_activated .five_lottie {
        opacity: 0;
        visibility: hidden;
    }
    .annual_evnt_lifeiiad,
    .hidedesktop_border {
        border: 0;
    }
}

@media only screen and (min-width: 1200px) {
    .section_activated .sticky_heading_star h4 {
        font-size: 3.6603221083455346vw;
        line-height: 3.6603221083455346vw;
    }
}

.commoncaption_fivepoint {
    padding: 12.445095168374817vw 0 0;
}

.commoncaption_fivepoint p,
.zigzag_item p {
    font-size: 1.610541727672035vw;
    line-height: 2.781844802342606vw;
}

.commoncaption_fivepoint p+img {
    padding: 1.8301610541727673vw 0 0;
}

.commoncaption_fivepoint img {
    width: 100%;
}

.fivestar_bottmline_animation {
    padding: 5.710102489019034vw 0 10.395314787701318vw var(--zerounit);
}

.bottomtxt_anima_abt_spc {
    padding: var(--zerounit) 0 0 19.98535871156662vw;
}

.zigzag_wrp {
    padding: 9.297218155197658vw 0 0;
}

.zigzag_flex {
    display: flex;
    justify-content: flex-end;
    padding: 7.320644216691069vw 0 0;
}

.inline_contact div,
.zigzag_flex .zigzag_item {
    width: 33.33%;
}

.zigzag_item p {
    color: #fff;
    font-family: acumin-pro, sans-serif;
    line-height: 2.342606149341142vw;
    font-weight: 200;
    margin: 0;
    padding: 0;
}

.zigzag_single {
    justify-content: center;
}

.zigzag_updown .zigzag_item:nth-child(1) {
    padding-top: 7.906295754026354vw;
}

.zigzag_updown .zigzag_item:nth-child(3) {
    padding-top: 10.980966325036604vw;
}

.mega_accor_wrp {
    background: #f7f7f7;
    border-bottom: var(--oneunit) solid var(--border-color);
}

.mega_accor_item {
    padding: 2.7086383601756956vw 0 2.1961932650073206vw;
    border-top: var(--oneunit) solid var(--border-color);
}

.mega_accor_heading {
    padding: 0 0 0 19.765739385065885vw;
}

.mega_accor_heading h4 {
    font-size: 4.758418740849195vw;
    line-height: 4.758418740849195vw;
}

.mega_accor_heading h4 span {
    font-weight: 100;
}

.mega_accor_heading p {
    line-height: 1.7569546120058566vw;
    padding-right: 6.222547584187408vw;
}

.mega_accor_content {
    padding: 2.1929824561403506vw 20.13177159590044vw 0 19.765739385065885vw;
}

.mega_accor_content p+.embed-responsive {
    margin: 1.610541727672035vw 0 0;
}

.core_philosophy_wrp {
    padding: 6.881405563689605vw 0 10.834553440702782vw;
}

.fullwith_sec_title h6 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    font-size: 2.635431918008785vw;
    line-height: 2.635431918008785vw;
    margin: 0;
    padding: 0 0 1.8301610541727673vw;
    color: #000;
}

.people_career_heading h4,
.people_career_heading h6 {
    font-size: 6.295754026354319vw;
    line-height: 6.295754026354319vw;
}

.sidebarheading.text_red h6 {
    color: #ee4036;
}

.fullwith_bottom_gap {
    padding: 0 0 9.66325036603221vw;
}

.career_anim_space {
    padding: 0 0 4.612005856515373vw;
}

.fullwith_sec_title h4 {
    font-size: 6.588579795021962vw;
    line-height: 6.661786237188873vw;
}

.fullwith_sec_title h4 label {
    display: flex;
    align-items: center;
}

h4.title_line_anim .animate_title,
h4.title_line_anim .fix_title_dash {
    content: "";
    height: 0.6588579795021963vw;
    display: inline-block;
    vertical-align: middle;
    margin: -1.2445095168374818vw 0.43923865300146414vw 0;
    -webkit-transition: 0.6s linear;
    transition: 0.6s linear;
    background: #000;
}

h4.title_line_anim .animate_title {
    width: 2.9282576866764276vw;
    max-width: 18.594436310395317vw;
    min-width: 2.9282576866764276vw;
}

h4.title_line_anim .fix_title_dash {
    width: 3.6603221083455346vw;
}

h4.title_line_anim .bg_white {
    background: #fff;
}

h4.title_line_anim .bg_red {
    background: #ee4036;
}

h4.title_line_anim .animate_title1 {
    width: 13.9vw;
}

@media only screen and (min-width: 768px) {
    h4.title_line_anim.line_anim_width1 .animate_title1 {
        width: 13.9vw;
    }
    h4.title_line_anim.line_anim_width1 .animate_title2 {
        width: 3.9vw;
    }
    h4.title_line_anim.line_anim_width2 .animate_title1 {
        width: 13.45vw;
    }
    h4.title_line_anim.line_anim_width2 .animate_title2 {
        width: 4.35vw;
    }
    h4.title_line_anim.line_anim_width3 .animate_title1 {
        width: 13vw;
    }
    h4.title_line_anim.line_anim_width3 .animate_title2 {
        width: 4.7vw;
    }
    h4.title_line_anim.line_anim_width4 .animate_title1 {
        width: 12.55vw;
    }
    h4.title_line_anim.line_anim_width4 .animate_title2 {
        width: 5.15vw;
    }
    h4.title_line_anim.line_anim_width5 .animate_title1 {
        width: 12.1vw;
    }
    h4.title_line_anim.line_anim_width5 .animate_title2 {
        width: 5.5vw;
    }
    h4.title_line_anim.line_anim_width6 .animate_title1 {
        width: 11.65vw;
    }
    h4.title_line_anim.line_anim_width6 .animate_title2 {
        width: 5.95vw;
    }
    h4.title_line_anim.line_anim_width7 .animate_title1 {
        width: 11.2vw;
    }
    h4.title_line_anim.line_anim_width7 .animate_title2 {
        width: 6.4vw;
    }
    h4.title_line_anim.line_anim_width8 .animate_title1 {
        width: 10.75vw;
    }
    h4.title_line_anim.line_anim_width8 .animate_title2 {
        width: 6.85vw;
    }
    h4.title_line_anim.line_anim_width9 .animate_title1 {
        width: 10.3vw;
    }
    h4.title_line_anim.line_anim_width9 .animate_title2 {
        width: 7.25vw;
    }
    h4.title_line_anim.line_anim_width10 .animate_title1 {
        width: 9.85vw;
    }
    h4.title_line_anim.line_anim_width10 .animate_title2 {
        width: 7.6vw;
    }
    h4.title_line_anim.line_anim_width11 .animate_title1 {
        width: 9.4vw;
    }
    h4.title_line_anim.line_anim_width11 .animate_title2 {
        width: 8.05vw;
    }
    h4.title_line_anim.line_anim_width12 .animate_title1 {
        width: 8.95vw;
    }
    h4.title_line_anim.line_anim_width12 .animate_title2,
    h4.title_line_anim.line_anim_width13 .animate_title1 {
        width: 8.5vw;
    }
    h4.title_line_anim.line_anim_width13 .animate_title2 {
        width: 8.95vw;
    }
    h4.title_line_anim.line_anim_width14 .animate_title1 {
        width: 8.05vw;
    }
    h4.title_line_anim.line_anim_width14 .animate_title2 {
        width: 9.4vw;
    }
    h4.title_line_anim.line_anim_width15 .animate_title1 {
        width: 7.6vw;
    }
    h4.title_line_anim.line_anim_width15 .animate_title2 {
        width: 9.85vw;
    }
    h4.title_line_anim.line_anim_width16 .animate_title1 {
        width: 7.25vw;
    }
    h4.title_line_anim.line_anim_width16 .animate_title2 {
        width: 10.3vw;
    }
    h4.title_line_anim.line_anim_width17 .animate_title1 {
        width: 6.85vw;
    }
    h4.title_line_anim.line_anim_width17 .animate_title2 {
        width: 10.75vw;
    }
    h4.title_line_anim.line_anim_width18 .animate_title1 {
        width: 6.4vw;
    }
    h4.title_line_anim.line_anim_width18 .animate_title2 {
        width: 11.2vw;
    }
    h4.title_line_anim.line_anim_width19 .animate_title1 {
        width: 5.95vw;
    }
    h4.title_line_anim.line_anim_width19 .animate_title2 {
        width: 11.65vw;
    }
    h4.title_line_anim.line_anim_width20 .animate_title1 {
        width: 5.5vw;
    }
    h4.title_line_anim.line_anim_width20 .animate_title2 {
        width: 12.1vw;
    }
    h4.title_line_anim.line_anim_width21 .animate_title1 {
        width: 5.15vw;
    }
    h4.title_line_anim.line_anim_width21 .animate_title2 {
        width: 12.55vw;
    }
    h4.title_line_anim.line_anim_width22 .animate_title1 {
        width: 4.7vw;
    }
    h4.title_line_anim.line_anim_width22 .animate_title2 {
        width: 13vw;
    }
    h4.title_line_anim.line_anim_width23 .animate_title1 {
        width: 4.35vw;
    }
    h4.title_line_anim.line_anim_width23 .animate_title2 {
        width: 13.45vw;
    }
    h4.title_line_anim.line_anim_width24 .animate_title1 {
        width: 3.9vw;
    }
    h4.title_line_anim.line_anim_width24 .animate_title2 {
        width: 13.9vw;
    }
}

.vertical_textslider_wrp {
    height: calc(var(--gridcell) * 7);
}

.vertical_textslider_wrp:after {
    background-image: linear-gradient(#a5250d var(--oneunit), transparent var(--oneunit)), linear-gradient(90deg, #a5250d var(--oneunit), transparent var(--oneunit));
}

.vertical_textslider_inner {
    width: 100%;
    padding: 0 7.540263543191801vw 0 6.661786237188873vw;
}

.textslider_center {
    padding: calc(var(--gridcell) * 3 - 1.8301610541727673vw) 0;
}

.textslider_center h6 {
    font-family: acumin-pro-semi-condensed, sans-serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    font-size: 1.9765739385065886vw;
    line-height: 1.9765739385065886vw;
    color: #fff;
    margin: 0;
}

.textslider_hold {
    display: flex;
}

.vert_txtslider_container {
    margin: 0;
    height: 8.052708638360176vw;
}

.vert_txtslider_item h4 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-size: 6.954612005856515vw;
    line-height: 1;
    margin: 0;
    color: #fff;
}

.and_text {
    display: flex;
    align-items: flex-end;
    margin: 0 4.392386530014641vw 0 8.052708638360176vw;
    height: 6.588579795021962vw;
}

.and_text img {
    width: 3.6603221083455346vw;
}

.partnership_wrp {
    padding: 4.831625183016105vw 0 7.320644216691069vw;
    background: #fff;
}

.partnership_sidebar_spacebar {
    align-items: center;
    padding: 5.562225vw 0 0;
    width: 80.01464128843338vw;
    margin: 0 0 0 auto;
}

.brand_text_wrp {
    padding: 0;
}

.brandlogo_partnership {
    float: right;
    width: 19.838945827232795vw;
    padding: 1.3177159590043925vw 0 0;
}

.commoncaption_partnership h5 {
    font-size: 2.1961932650073206vw;
    line-height: 2.781844802342606vw;
    text-transform: initial;
    margin: 0 0 0 auto;
    width: 72.8%;
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 500;
}

.commoncaption_partnership p {
    font-size: 1.610541727672035vw;
    line-height: 2.781844802342606vw;
}

.logo_and_content {
    display: flex;
    padding-top: 1.4641288433382138vw;
    flex-wrap: wrap;
}

.logo_and_content div.left_logo {
    width: 19.91215226939971vw;
    padding: 0.951683748169839vw 0 0;
    padding-left: 0.14641288433382138vw;
}

.and_text img,
.logo_and_content div.left_logo img {
    max-width: 100%;
    height: auto; 
}

.right_txt_copy {
    width: 53.5vw;
    margin-left: auto;
}

.right_txt_copy :first-child {
    padding-top: 0;
}

.abt_common_aliiances .abtus_cta_group {
    padding: 30px 0 0;
}

.abtus_cta_group+h5 {
    margin-top: 50px;
}

.applicants_prc_wrp,
.content_page {
    padding: 10.248901903367496vw 0 10.54172767203514vw;
}

.cta_group {
    padding: 6.076134699853587vw 0 0;
}

.custom_cta_btn,
.custom_cta_btn span {
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.custom_cta_btn {
    font-family: acumin-pro, Sans-serif;
    font-size: 1.608187134502924vw;
    font-weight: 200;
    line-height: 1.9005847953216373vw;
    fill: var(--black);
    color: var(--black);
    background-color: #fff;
    border-style: solid;
    border-width: var(--oneunit) var(--oneunit) var(--oneunit) var(--oneunit);
    border-color: var(--black);
    width: fit-content;
    min-width: 27.452415812591507vw;
    height: 4.392386530014641vw;
    justify-content: space-between;
    padding-left: 1.4641288433382138vw;
    overflow: hidden;
}

.custom_cta_btn:hover {
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

.custom_cta_btn:hover span {
    border-color: #fff;
}

.icon_arrow_animate:hover span svg {
    fill: #fff;
    animation: link_arrow_animation 0.4s forwards;
}

.icon_download_animate:hover span svg {
    fill: #fff;
    animation: download_animation 0.4s forwards;
}

.custom_cta_btn span {
    width: 4.392386530014641vw;
    border-left: var(--oneunit) solid var(--black);
    height: 100%;
    justify-content: center;
    margin-left: 1.4641288433382138vw;
}

.custom_cta_btn span svg {
    width: 2.4890190336749636vw;
    height: 2.4890190336749636vw;
    transition: 0.3s;
}

.icon_download_animate span svg {
    width: 1.7569546120058566vw;
    height: 1.7569546120058566vw;
    transition: 0.3s;
}

.yellowbg_line_color:after {
    background-image: linear-gradient(#caa900 var(--oneunit), transparent var(--oneunit)), linear-gradient(90deg, #caa900 var(--oneunit), transparent var(--oneunit));
}

a.full_section_lnk {
    text-decoration: none;
}

a.cursor_admission {
    cursor: url(../images/admission-cursor.svg) 3 0, auto;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

.admission_by_year {
    display: flex;
    padding: 0 0 6.881405563689605vw 0.14641288433382138vw;
    width: 100%;
}

.by_year_heading,
.by_year_sortinfo {
    width: 53.07467057101025vw;
    height: 6.661786237188873vw;
}

.by_year_heading h4 {
    font-size: 10.54172767203514vw;
    font-weight: 600;
    line-height: 4.758418740849195vw;
    letter-spacing: -0.29px;
    font-family: acumin-pro-extra-condensed, Sans-serif;
    margin: 0;
}

.by_year_sortinfo {
    width: 20.05856515373353vw;
    display: flex;
    align-items: flex-end;
}

.by_year_sortinfo_inner {
    width: 100%;
}

.by_year_sortinfo_inner p {
    margin: 0 0 0.5856515373352855vw;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 1.610541727672035vw;
    font-weight: 200;
    line-height: 1.390922401171303vw;
}

.by_year_sortinfo_inner.textyellow p {
    color: var(--textyellow);
    border-style: solid;
    border-width: 0 0 1px;
    border-color: rgba(203, 203, 203, 0.4);
}

.by_year_sortinfo_inner p:last-child {
    border: 0;
    margin-bottom: 0;
}

.date_announcement {
    display: flex;
    flex-wrap: wrap;
}

.date_announcement_item {
    width: 33.33%;
    padding: 0 0 3.1478770131771596vw;
}

.date_announcement_item h5,
.date_announcement_item p {
    font-size: 1.610541727672035vw;
    line-height: 2.049780380673499vw;
    margin: 0 0 1.43923865300146414vw;
    color: #fff;
    font-family: acumin-pro-condensed, Sans-serif;
    font-weight: 500;
}

.date_announcement_item p {
    margin: 0.14641288433382138vw 0 0;
    font-weight: 300;
}

.tabs_adms_pro_elig {
    padding: 10.834553440702782vw 0 4.392386530014641vw;
}

.tabs_body {
    padding: 4.978038067349927vw 0 0;
}

ul.dashleft {
    padding: 1.8301610541727673vw 0 0;
    margin: 0;
}

ul.dashleft+h5 {
    padding: 4.24597364568082vw 0 0;
}

.blg_dtl_content ol li,
.blg_dtl_content ul li,
ul.dashleft li,
ul.disc li {
    color: #000;
    font-family: acumin-pro, acumin-pro, sans-serif;
    position: relative;
}

ul.dashleft li {
    font-size: 2.635431918008785vw;
    font-weight: 300;
    list-style: none;
    padding: 0 0 0 3.074670571010249vw;
}

.blg_dtl_content ul li:before,
ul.dashleft li:before,
ul.disc li:before {
    content: "";
    position: absolute;
    width: 2.1961932650073206vw;
    height: 0.14641288433382138vw;
    background: #000;
    left: 0;
    top: 2.1961932650073206vw;
}

.blg_dtl_content ul,
ul.disc {
    padding: 0 7.320644216691069vw 0 0;
    list-style: none;
    margin: 0;
}

.blg_dtl_content ol {
    padding: 0 0 0 1.4vw;
    margin: 0;
    padding-top: 1.4641288433382138vw;
}

.blg_dtl_content ul,
 ul.disc {
    padding-top: 1.4641288433382138vw;
}

.blg_dtl_content ul+h5,
p+ul.disc {
    /* padding-top: 20px; */
    padding: 3.001464128843338vw 0 0;
}

.blg_dtl_content h5+ul,
h5+ul.disc {
    padding: 0.8784773060029283vw 0 0;
}

.blg_dtl_content ol li,
.blg_dtl_content ul li,
ul.disc li {
    font-size: 1.610541727672035vw;
    font-weight: 200;
    line-height: 2.781844802342606vw;
    padding: 0 0 0.0248901903367496vw 1.8301610541727673vw;
}

.blg_dtl_content ol li {
    padding-left: 0 !important;
}

.blg_dtl_content ul li:before,
ul.disc li:before {
    width: 0.5856515373352855vw;
    height: 0.5856515373352855vw;
    border-radius: 50%;
    top: 1.2445095168374818vw;
}

.entrance_exm_sec {
    padding: 4.831625183016105vw 0 5.856515373352855vw;
    border-top: var(--oneunit) solid var(--border-color);
}

.grid_vert_line_entrance>div:nth-child(3) {
    opacity: 0;
}

.blg_dtl_content>p:empty {
    display: none;
}

.common_caption figure {
    margin: 18px 0;
    text-align: center;
}

.common_caption figure img,
.logo_grid_wrp div.logo_grid_item img {
    max-width: 100%;
}

.table_wrp_cell_item:after {
    background-size: calc(100% / 15) 5.929721815519766vw;
}

.table_inner {
    width: 100%;
    margin: 0 auto;
    background: #fff;
}

.custom_table {
    width: 100%;
}

.custom_table thead tr td {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 500;
    font-size: 1.903367496339678vw;
    text-transform: uppercase;
    word-wrap: break-word;
    vertical-align: middle;
    height: 5.856515373352855vw;
    color: var(--red);
    text-align: center;
    line-height: 1.2;
    padding: 0.36603221083455345vw 1.171303074670571vw;
}

.custom_table thead tr td:nth-child(2) {
    min-width: 33.30893118594436vw;
}

.custom_table thead tr td:nth-child(2)~td {
    min-width: 13.324304538799414vw;
}

.custom_table thead tr td:first-child,
.custom_table thead tr td:last-child {
    min-width: 6.588579795021962vw !important;
}

.custom_table thead tr td:nth-child(5) {
    width: 13.396778916544655vw;
}

.custom_table thead tr td select {
    border: 0;
    width: 100%;
    color: #000;
    font-weight: 500;
    font-family: acumin-pro-condensed, sans-serif !important;
    background-image: url(../images/downarrow.png);
    background-repeat: no-repeat;
    background-position: right center;
}

.custom_table tbody tr:hover td {
    background-color: var(--blue);
    color: #fff;
}

.custom_table tbody tr:hover td:first-child,
.custom_table tbody tr:hover td:last-child {
    background-color: #fff;
}

.custom_table tbody tr:hover td:empty {
    background: #fff;
}

.custom_table tbody tr:hover td svg path {
    fill: #fff;
    opacity: 1;
}

.custom_table tbody tr td {
    font-family: acumin-pro-condensed, sans-serif !important;
    font-weight: 200;
    font-size: 1.903367496339678vw;
    color: #000;
    height: 4.758418740849195vw;
    padding: 0.36603221083455345vw 1.171303074670571vw;
}

.custom_table tbody tr td:nth-child(2)~td {
    text-align: center;
}

.custom_table td {
    border: 1px solid #bebcbd80;
}

.grid_content_wrp {
    padding: 5.124450951683748vw 0 0;
}

.grid_content_inner {
    display: flex;
    flex-wrap: wrap;
    padding: 0 6.588579795021962vw;
}

.grid_content_item {
    width: 50%;
    padding: 0 6.588579795021962vw 2.1961932650073206vw 0;
}

.grid_content_item h5 {
    color: #ee4036;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 2.1961932650073206vw;
    font-weight: 500;
    line-height: 2.781844802342606vw;
}

.grid_content_item p {
    color: #000;
    font-family: acumin-pro, sans-serif;
    font-size: 1.3177159590043925vw;
    font-weight: 200;
    line-height: 2.4890190336749636vw;
}

.custom_table thead tr td.dropdown_td {
    padding: 0;
}

.admissions_btm_lottie lottie-player,
.custom_dropdown,
.inline_contact p {
    width: 100%;
}

.custom_dropdown button {
    width: 100%;
    text-align: left;
    background: 0 0;
    font-size: 1.903367496339678vw;
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    word-wrap: break-word;
    vertical-align: middle;
    height: 5.856515373352855vw;
    line-height: 1.2;
    padding: 0.36603221083455345vw 1.171303074670571vw;
    position: relative;
}

.custom_dropdown button:focus {
    box-shadow: none;
}

.custom_dropdown button:after {
    background-image: url(../images/downarrow.png);
    border: 0;
    content: "";
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    right: 1.171303074670571vw;
    position: absolute;
    margin: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.custom_dropdown.show button:after {
    transform: translate(0, -50%) rotate(-180deg);
}

.custom_dropdown .dropdown-menu {
    width: 100%;
    border-radius: 0;
    margin: 1px 0 0;
    padding: 0;
}

.custom_dropdown .dropdown-menu a {
    font-family: acumin-pro-condensed, sans-serif !important;
    font-weight: 200;
    font-size: 1.903367496339678vw;
    color: #000;
    padding: 0.5em;
    line-height: 1.4;
}

.custom_dropdown .dropdown-menu a.active,
.custom_dropdown .dropdown-menu a:hover {
    background: #f7f7f7;
}

.scholarship_wrp {
    border-top: var(--oneunit) solid var(--border-color);
    padding: 6.588579795021962vw 0;
}

.fee_str_group {
    padding-top: 0.7320644216691069vw;
}

.fee_str_group+h5 {
    padding: 5.124450951683748vw 0 0;
}

.fee_str_group a {
    margin-top: 2.1961932650073206vw;
}

.inline_contact {
    display: flex;
    flex-wrap: wrap;
    padding: 1.171303074670571vw 0 0;
}

.fixslide_content div,
.inline_contact p {
    font-size: 1.610541727672035vw;
    font-weight: 200;
}

.inline_contact p {
    color: var(--black);
    font-family: acumin-pro, sans-serif;
    line-height: 2.781844802342606vw;
    margin: 0;
    padding-top: 0.36603221083455345vw;
}

p.bold_txt {
    font-weight: 500;
}

.transfer_wrp {
    padding: 0 0 6.588579795021962vw;
    position: relative;
}

.tranferiiad_lotte_border,
.transfer_leftbar_admsn {
    padding: 6.588579795021962vw 0 0;
}

.leftbar_line_text h5 {
    -webkit-text-stroke: 1px #9b9b9b;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 5.856515373352855vw;
    line-height: 6.222547584187408vw;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-weight: 700;
    margin: 0;
}

.tranferiiad_lotte_border {
    border-top: var(--oneunit) solid var(--border-color);
    border-bottom: 0;
}

.transfer_rightbar_admsn {
    border-top: 0;
    border-bottom: var(--oneunit) solid var(--border-color);
    padding: 1.35vw 0 12.88vw;
}

.admissions_btm_lottie {
    width: 100%;
    position: absolute;
    top: -1.2445095168374818vw;
}

.life_iiad_overview {
    padding: 6.222547584187408vw 0 5.710102489019034vw;
}

.campus_wrp,
.off_campus_wrp {
    padding: 5vw 0 0;
}

.campus_wrp .section_edge .dotsslider_wrp .swiper-wrapper {
    max-height: 29vw;
}

.alimni_campus_wrp {
    padding: 5vw 0 80px;
}

.accommodation_wrp {
    padding: 4.904831625183016vw 0 6.222547584187408vw;
}

.coho_kit_group {
    padding-top: 3.3674963396778916vw;
}

.student_srv_wrp {
    padding: 10.395314787701318vw 0 0;
}

.dotsslider_wrp {
    padding: 3.6603221083455346vw 0 0;
}

.dotsslider_inner {
    z-index: 0;
}

.dotsslider_item picture img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 593 / 333);
}

.dotsslider_inner .dots_pagination {
    width: fit-content;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.dotsslider_inner .dots_pagination span.swiper-pagination-bullet-active {
    background: #000;
}

.dotsslider_inner .swiper-button-next,
.dotsslider_inner .swiper-button-prev {
    opacity: 0;
}

.dot_slider_next,
.dot_slider_prev {
    background: 0 0;
    width: 50%;
    height: 100%;
    margin: 0;
    position: absolute;
    z-index: 1;
    bottom: 0;
    top: 0;
}

.dot_slider_next {
    right: 0;
}

.dot_slider_prev {
    left: initial;
}

.brand_success_next:after,
.brand_success_prev:after,
.dot_slider_next:after,
.dot_slider_prev:after {
    content: "";
    background-size: 100%;
    background-position: center center;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.dot_slider_next {
    cursor: url(../images/arrow-big-right.svg) 36 45, auto;
}

.dot_slider_prev {
    cursor: url(../images/arrow-big-left.svg) 36 45, auto;
}

.annual_evt_wrp {
    padding: 5.563689604685212vw 0 0;
    border-top: var(--oneunit) solid var(--border-color);
}

.curriculars_wrp {
    padding: 3.22108345534407vw 0 5.856515373352855vw;
}

.corecouncil_wrp {
    padding: 4.978038067349927vw 0 6.36896046852123vw;
}

.corecouncil_linetext {
    padding: 0;
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.syncslider_event_wrp {
    background-color: #fff;
    border-bottom: 0;
}

.syncslide_top_wrp {
    width: 73.7%;
    margin: 0 auto;
    padding: 11.71303074670571vw 0 0;
}

.syncslide_top_title h4 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 6.588579795021962vw;
    letter-spacing: normal;
    color: #e13212;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin: 0;
    line-height: 1;
}

span.linewidth {
    background: #e13212;
    height: 0.6588579795021963vw;
    display: inline-block;
    margin: 0.951683748169839vw 0.5856515373352855vw 0;
}

.linewidth_small,
span.linewidth {
    min-width: 2.635431918008785vw;
}

.linewidth_full {
    width: 100%;
}

.lifeiiad_syncslider_inner {
    padding: 8.36vw var(--zerounit) 13.34vw 0;
    position: relative;
}

.syncslider_large_size {
    width: 80.1vw;
    margin: 0 0 0 auto;
    position: absolute;
    z-index: 2;
    top: 14.8%;
    right: 0;
    left: 0;
}

.fixslide_content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
    padding: 1.903367496339678vw 0 0;
    height: 17.642752562225475vw;
}

.fixslide_content div {
    font-family: acumin-pro;
    color: #212529;
}

.fixslide_content div:nth-child(1) {
    width: 12.445095168374817vw;
}

.fixslide_content div:nth-child(2) {
    width: 26.647144948755493vw;
    align-self: flex-end;
}

.lifeiiad_sync_backnext_cta {
    display: flex;
    align-items: center;
    width: 6.6vw;
    float: right;
    clear: both;
    justify-content: space-between;
    margin: 0 20.05856515373353vw 0 0;
    padding-top: 3.75vw;
}

.lifeiiad_sync_backnext_cta .swiper-button-prev {
    width: 2.3391812865497075vw;
    height: 2.3391812865497075vw;
    position: static;
    margin: 0;
    padding: 0;
    display: flex;
}

.lifeiiad_sync_backnext_cta .swiper-button-next {
    width: 2.5vw;
    height: 2.5vw;
    position: static;
    margin: 0;
    padding: 0;
    display: flex;
}

.lifeiiad_sync_backnext_cta .swiper-button-next:after,
.lifeiiad_sync_backnext_cta .swiper-button-prev:after {
    color: transparent;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.5' height='31.5' viewBox='0 0 31.5 31.5'%3E%3Cg id='Icon_feather-arrow-right-circle' data-name='Icon feather-arrow-right-circle' transform='translate(-2.25 -2.25)'%3E%3Cpath id='Path_1262' data-name='Path 1262' d='M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_1263' data-name='Path 1263' d='M18,24l6-6-6-6' transform='translate(2)' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3Cpath id='Path_1264' data-name='Path 1264' d='M12,18H27.576' transform='translate(-1.576)' fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    width: 2.3391812865497075vw;
    height: 2.3391812865497075vw;
}

.lifeiiad_sync_backnext_cta .swiper-button-prev:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.5' height='31.5' viewBox='0 0 31.5 31.5'%3E%3Cg id='Icon_feather-arrow-right-circle' data-name='Icon feather-arrow-right-circle' transform='translate(33.75 33.75) rotate(180)'%3E%3Cpath id='Path_1262' data-name='Path 1262' d='M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_1263' data-name='Path 1263' d='M18,24l6-6-6-6' transform='translate(2)' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3Cpath id='Path_1264' data-name='Path 1264' d='M12,18H27.576' transform='translate(-1.576)' fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

.youtubeslide,
.youtubeslide iframe {
    height: calc(var(--gridcell) * 6);
}

.youtubeslide iframe {
    width: 100%;
}

.marquee_top_sortview {
    padding: 3.806734992679356vw 0 6.588579795021962vw;
}

.logo_grid_wrp {
    display: flex;
    flex-wrap: wrap;
    width: 85.7%;
    margin: 0 0 0 auto;
    justify-content: space-between;
}

.logo_grid_wrp div.logo_grid_item {
    width: 24%;
    padding: 5.490483162518302vw 0 0;
}

.strokeline_people_space1 {
    padding: 2.049780380673499vw 0 0;
}

.stroketext_anim_inner {
    position: relative;
    z-index: 1;
}

.stroketext_anim_inner h4 {
    color: #fff;
    -webkit-text-stroke: 1px #9b9b9b;
    -webkit-text-fill-color: #fff;
    font-size: 5.856515373352855vw;
    line-height: initial;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-weight: 700;
    margin: 0;
    position: relative;
    transform: translateX(97%);
    white-space: nowrap;
}

.top_faculty_wrp {
    padding: 4.24597364568082vw 0 4.978038067349927vw;
}

.peoper_overview {
    padding: 7.320644216691069vw 0 0;
}

.faculty_tabs_wrp {
    width: calc(100% - 13.250366032210833vw);
    margin: 0 auto;
}

.faculty_tabs_button li.nav-item {
    width: 23.05%;
    padding: 0 0.21961932650073207vw;
    position: relative;
    overflow: hidden;
}

.faculty_tabs_button li.nav-item a {
    font-family: acumin-pro-condensed;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.903367496339678vw;
    color: #000;
    position: relative;
    text-decoration: none;
    height: 6.588579795021962vw;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #fff;
    overflow: hidden;
}

.faculty_tabs_button li.nav-item:after {
    content: "";
    height: var(--fourunit);
    width: 0;
    position: absolute;
    left: 0;
    bottom: var(--zerounit);
    background-color: #ee4036;
    transition: width ease-out 0.3s;
}

.faculty_tabs_button li.nav-item a.active {
    background: #fff;
    color: #000;
}

.career_poeple_wrp {
    padding: 9.370424597364568vw 0 8.41874084919473vw;
}

.profilecard_inside_tab {
    flex-wrap: wrap;
    padding-bottom: 6.661786237188873vw;
}

.profilecard_inside_tab .profilecard_item {
    margin: 6.661786237188873vw 0 0;
    opacity: 0;
}

.profilecard_inside_tab .profilecard_profile_img picture img {
    height: 26.61vw;
}

.faculty_tabs_content .tab-pane.show .profilecard_inside_tab .profilecard_item {
    transition: 0.5s linear;
    opacity: 1;
}

.faculty_tabs_content .tab-pane.show .profilecard_inside_tab .profilecard_item:nth-child(1) {
    transition-delay: 0s;
}

.faculty_tabs_content .tab-pane.show .profilecard_inside_tab .profilecard_item:nth-child(2) {
    transition-delay: 0.2s;
}

.faculty_tabs_content .tab-pane.show .profilecard_inside_tab .profilecard_item:nth-child(3) {
    transition-delay: 0.4s;
}

.faculty_tabs_content .tab-pane.show .profilecard_inside_tab .profilecard_item:nth-child(4) {
    transition-delay: 0.6s;
}

.faculty_tabs_content .tab-pane.show .profilecard_inside_tab .profilecard_item:nth-child(5) {
    transition-delay: 0.8s;
}

.faculty_tabs_content .tab-pane.show .profilecard_inside_tab .profilecard_item:nth-child(6) {
    transition-delay: 1s;
}

.iiad_industry_overview {
    padding: 9.882869692532942vw 0 0;
}

.strokeline_iiadindustry_space1 {
    padding: 7.759882869692533vw 0 2.4890190336749636vw;
}

.strokeline_iiadindustry_space2 {
    padding: 0.6588579795021963vw 0 10.395314787701318vw;
}

.gridslider_first_gap_inds {
    padding: 0 0 10.834553440702782vw;
}

.redtouch_cellline_first,
.redtouch_cellline_second {
    padding: 0;
    border-top: var(--oneunit) solid var(--border-color);
}

.ctaarrow_gap_inds {
    padding: 2.12298682284041vw 0 0;
}

.pi_indus_wrp {
    padding: 6.295754026354319vw 0 0;
    border-top: var(--oneunit) solid var(--border-color);
}

.leftbar_pi_icon {
    padding: 1.0980966325036603vw 0 0;
}

.brandlogo_item_inner img,
.leftbar_pi_icon img {
    max-width: 100%;
    height: auto; 
}

.leftbar_pi_icon img {
    width: 7.979502196193265vw;
}

.select_dropdown_gap {
    padding: 7.833089311859444vw 0 0.5856515373352855vw;
    display: none;
}

.select_dropdown_hold select {
    font-size: 1.610541727672035vw;
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    text-transform: capitalize;
    height: 4.392386530014641vw;
    border: 1px solid #000;
    padding: 0 5.563689604685212vw 0.21961932650073207vw 0.8784773060029283vw;
    position: relative;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url(../images/downarrow-thin.png), linear-gradient(to right, #000, #000);
    background-position: right 1.4641288433382138vw center, calc(100% - 4.2vw) 0;
    background-size: 1.390922401171303vw 0.8052708638360175vw, 0.07320644216691069vw 100%;
    background-repeat: no-repeat;
}

.success_story_slider_inds {
    padding: 1.903367496339678vw 0 3.6603221083455346vw 19.912152vw;
    overflow: hidden;
}

.career_cell_wrp {
    padding: 10.102489019033674vw 0 0;
}

.industry_speak_wrp {
    padding: 9.809663250366032vw 0 10.322108345534406vw;
    border-top: var(--oneunit) solid var(--border-color);
}

.speak_indus_edge_space {
    padding: 0 0 3.22108345534407vw;
}

.brandlogo_content_wrp {
    padding: 9.150805270863836vw 0 0;
}

.brandlogo_grid_wrp {
    width: 85.7%;
    margin: 0 0 0 auto;
    padding: 8.272327964860908vw 0 0;
    overflow-x: hidden;
}

.brandlogo_container .brandlogo_wrapper {
    height: 45.387994143484626vw;
}

.brandlogo_container .brandlogo_wrapper .brandlogo_item_slider {
    display: flex;
    align-items: center;
    height: 10.761346998535872vw;
}

.brandlogo_item_inner img {
    width: 75%;
}

.nav_pagination_brandlog {
    padding-top: 0;
    width: 65.75vw;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 9999;
    align-items: flex-end;
}

.brandlogo_pagination {
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    letter-spacing: normal;
    font-size: 1.610541727672035vw;
    position: static;
    z-index: 9999;
    padding: 0 0 0 30.4%;
    line-height: 1;
}

.brand_leftright_nav {
    display: flex;
    width: 6.588579795021962vw;
    justify-content: space-between;
    position: relative;
    z-index: 999;
}

.brand_success_next,
.brand_success_prev {
    right: initial;
    top: initial;
    bottom: 0.36603221083455345vw;
    width: 2.2929824561403506vw;
    height: 2.2929824561403506vw;
    margin: 0;
    padding: 0;
    display: flex;
    position: static;
    opacity: 0.7;
    transition: 0.1s linear;
}

.brand_success_prev {
    left: 66.8%;
}

.brand_success_next {
    left: 71.6%;
}

.brand_success_prev:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.5' height='31.5' viewBox='0 0 31.5 31.5'%3E%3Cg id='Icon_feather-arrow-right-circle' data-name='Icon feather-arrow-right-circle' transform='translate(33.75 33.75) rotate(180)'%3E%3Cpath id='Path_1262' data-name='Path 1262' d='M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_1263' data-name='Path 1263' d='M18,24l6-6-6-6' transform='translate(2)' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3Cpath id='Path_1264' data-name='Path 1264' d='M12,18H27.576' transform='translate(-1.576)' fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

.brand_success_next:after {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.5' height='31.5' viewBox='0 0 31.5 31.5'%3E%3Cg id='Icon_feather-arrow-right-circle' data-name='Icon feather-arrow-right-circle' transform='translate(-2.25 -2.25)'%3E%3Cpath id='Path_1262' data-name='Path 1262' d='M33,18A15,15,0,1,1,18,3,15,15,0,0,1,33,18Z' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_1263' data-name='Path 1263' d='M18,24l6-6-6-6' transform='translate(2)' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3Cpath id='Path_1264' data-name='Path 1264' d='M12,18H27.576' transform='translate(-1.576)' fill='none' stroke='%23000' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.brand_success_next:hover,
.brand_success_prev:hover {
    opacity: 1;
    background: #f2f2f2;
    border-radius: 50%;
}

.contact_timinginfo {
    padding: 3.074670571010249vw 0 0;
}

.contact_timinginfo label,
.contact_timinginfo p {
    font-family: acumin-pro, acumin-pro, sans-serif;
    font-weight: 300;
    color: #fff;
    font-size: 1.610541727672035vw;
    margin: 0;
}

.contact_timinginfo label {
    font-weight: 200;
    display: block;
}

.contact_timinginfo label span {
    font-weight: 400;
}

.contact_numberinfo_wrap {
    padding: 2.049780380673499vw 0 0;
}

.gobal_searh_form form,
.number_social_wrap {
    display: flex;
}

.number_info,
.social_info {
    width: 50%;
}

.numberinfo_item:not(:first-child) {
    padding: 1.5373352855051245vw 0 0;
}

.numberinfo_item>a,
.numberinfo_item>p {
    font-family: acumin-pro, acumin-pro, sans-serif;
}

.numberinfo_item>p {
    color: #ccc;
    font-size: 1.0248901903367496vw;
    font-weight: 200;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.0248901903367496vw;
}

.numberinfo_item>a {
    color: #fff;
    font-size: 1.610541727672035vw;
    font-weight: 300;
    text-decoration: none;
    line-height: 2.1961932650073206vw;
    margin: -0.14641288433382138vw 0 0;
}

.numberinfo_item>a:before,
.social_list_link li a:before {
    width: 0;
}

.section_activated .numberinfo_item>a:before,
.section_activated .social_list_link li a:before {
    width: 100%;
}

.social_list_link {
    padding: 0;
}

.social_list_link li {
    list-style: none;
    padding-top: 0.29282576866764276vw;
}

.social_list_link li:first-child {
    padding-top: 0;
}

.social_list_link li a {
    color: #fff;
    font-size: 1.610541727672035vw;
    font-weight: 300;
    line-height: 2.1961932650073206vw;
}

.contact_form_inner {
    display: flex;
    width: calc(100% - 13.177159590043924vw);
    margin: 0 auto;
    justify-content: space-between;
}

.contact_form_left {
    width: 61.4%;
    padding-bottom: 50px;
}

.form_section_heading {
    padding: 6.881405563689605vw 0 3.6603221083455346vw;
}

.form_section_heading h4 {
    color: #000;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 2.635431918008785vw;
    font-weight: 700;
    line-height: 2.635431918008785vw;
    margin: 0;
    text-transform: uppercase;
}

.form_section_heading h4 span {
    content: "";
    height: 0.21961932650073207vw;
    background: #000;
    width: 2.562225475841874vw;
    display: inline-block;
    vertical-align: middle;
    margin: -0.36603221083455345vw 0.5856515373352855vw 0 0;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
}

.form_papper_wrp .npf_wgts {
    height: 43.92386530014642vw;
    width: 100%;
}

.form_papper_wrp .npf_wgts iframe {
    height: 100%;
    width: 85%;
}

.contact_form_right {
    width: 38.48%;
    border-left: 1px solid #bebcbd80;
    border-right: 1px solid #bebcbd80;
    margin-right: 1px;
}

.locateus_map {
    margin: 2.7086383601756956vw 0 0;
    overflow: hidden;
}

.locateus_map:hover img {
    animation: rightarrow_move 0.3s forwards;
}

.form_description_info p,
.locateus_map a,
.social_list_link li a {
    font-family: acumin-pro, acumin-pro, sans-serif;
}

.locateus_map a {
    color: #fff;
    font-size: 1.0248901903367496vw;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.903367496339678vw;
}

.locateus_map img {
    margin: -0.21961932650073207vw 0 0 0.5124450951683748vw;
    vertical-align: middle;
}

.contact_map_wrp {
    height: calc(var(--gridcell) * 10);
}

.location_map_inner {
    width: calc(100% - 13.177159590043924vw);
    margin: 0 auto;
    padding: calc(var(--gridcell) * 1) 0 calc(var(--gridcell) * 2);
}

.location_map_heading {
    height: 6.661786237188873vw;
    display: flex;
}

.location_map_heading h4 {
    font-family: acumin-pro-extra-condensed, acumin-pro, sans-serif;
    font-size: 6.588579795021962vw;
    font-weight: 700;
    line-height: 6.881405563689605vw;
    letter-spacing: 1.8px;
    margin: -1.5373352855051245vw 0 0;
    -webkit-text-stroke: 1px #9b9b9b;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.location_map_inner iframe {
    width: 100%;
    height: calc(var(--gridcell) * 6);
    position: relative;
    display: flex;
    border: 0;
}

.form_description_info {
    border-top: 1px solid #bebcbd80;
    padding: 1.9765739385065886vw 0 5.124450951683748vw;
}

.form_description_info h4 {
    color: red;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 2.1961932650073206vw;
    font-weight: 500;
    margin: 0;
    line-height: 2.781844802342606vw;
    text-transform: uppercase;
}

.form_description_info p {
    color: #000;
    font-size: 1.610541727672035vw;
    font-weight: 200;
    margin: 0;
    line-height: 2.781844802342606vw;
}

.form_description_info a {
    text-decoration: none;
    color: #000;
}

.form_description_info p+h4 {
    margin: 2.562225475841874vw 0 0;
}

.blogdetail_heading_wrp {
    padding: 4.172767203513909vw 0 0;
}

.profiledetail_heading_wrp {
    padding: 150px 0 80px;
}

.blogpost_detail {
    padding: 0 0 0 13.323572474377746vw;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.author_gap {
    padding-top: 0.5856515373352855vw;
}


/* .date_gap {
    padding-top: 1.903367496339678vw;
} */

.post_info_item {
    width: 100%;
}

.post_info_item:nth-child(2) {
    align-self: flex-end;
}

.post_info_item span,
.post_tags span {
    color: #4d4d4d;
    font-family: acumin-pro, Sans-serif;
    font-size: 1.171303074670571vw;
    font-weight: 200;
    line-height: 1.903367496339678vw;
    text-transform: uppercase;
}

.post_info_item p,
.post_tags a {
    font-family: acumin-pro, Sans-serif;
}

.post_info_item p {
    color: #5926c4;
    font-size: 1.610541727672035vw;
    font-weight: 200;
    line-height: 1.903367496339678vw;
}

.sidebar_dates_tags {
    padding-top: 4.026354319180088vw;
}

.blog_section_gap .dotsslider_wrp,
.post_tags {
    padding: 0;
}

.post_tags a {
    font-size: 1.3177159590043925vw;
    color: #999;
    font-weight: 300;
}

.post_tags a:after {
    content: ",";
    padding: 0 0 0 1px;
}

.post_tags a:last-child:after {
    display: none;
}

.left_slidebar_blog {
    width: 14.15%;
}

.sticky_leftbar {
    position: sticky;
    top: 82vh;
}

.right_spacebar_blog {
    width: calc(100% - 14.3%);
    margin-left: auto;
}

.share_sortdesc_wrp {
    padding: 5.710102489019034vw 0 8.784773060029282vw;
}

.share_post {
    position: sticky;
    top: 0;
    padding-bottom: 0.36603221083455345vw;
}

.share_post p {
    -webkit-text-stroke: 1px #9b9b9b;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 4.392386530014641vw;
    line-height: 1;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-weight: 700;
    margin: 0;
}

.share_post a {
    color: var(--black);
    font-family: acumin-pro, sans-serif;
    font-size: 1.4641288433382138vw;
    font-weight: 200;
    line-height: 1;
    margin: 0;
    text-decoration: none;
    text-transform: capitalize;
    padding: 0.8784773060029283vw 0 0;
    display: inline-block;
}

.share_post a:not(:first-child) {
    padding-left: 0.951683748169839vw;
}

.blog_section_gap {
    padding: 6.002928257686676vw 0 0;
}

.blog-section-bottom-gap {
    padding-bottom: 6.002928257686676vw;
}

.blog_section_gap_two {
    padding: 30px 0 0;
}

.leftside_first_cellspace {
    width: 100%;
    margin: 0 0 0 auto;
    overflow: hidden;
}

.gridcell_arrow_slider {
    margin: 0 auto 0 0;
    position: relative;
    width: 74.9%;
}

.cover_prev_slide {
    width: 20.1%;
    background: red;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    height: 100%;
}

.bottomline_blog {
    padding: 0;
}

.blog_bottom_slider {
    border-top: var(--oneunit) solid #dcdcdc;
}

.blog_lastsection_space {
    padding-bottom: 8.49194729136164vw;
}

.lineanimation_align_blog {
    width: 72.8%;
    margin: 0 0 0 auto;
}

.popup_bg_layer,
.popup_body_hold {
    padding: 0;
    top: 0;
    right: 0;
    position: fixed;
    z-index: -1;
}

.popup_bg_layer {
    pointer-events: inherit;
    width: 100%;
    height: 100%;
    background: rgba(89, 38, 196, 0.8);
    margin: 0;
    opacity: 0;
}

.popup_bg_layer.closecursor {
    cursor: url(../images/close-cursor.svg) 0 0, pointer;
}

.popup_bg_layer.active {
    opacity: 1;
    z-index: 3;
}

.popup_bg_layer.deactive {
    opacity: 0;
}

.popup_body_hold {
    width: 48.68228404099561vw;
    min-width: 500px;
    height: 100vh;
    background: #fff;
    transition: transform ease-out 0.3s 0.5s;
    transform: translateX(100%);
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    cursor: auto;
}

.popup_body_hold_form {
    width: 43.92386530014642vw;
    min-width: 500px;
}

.popup_body_hold.active {
    transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transition-delay: 0.3s;
    z-index: 3;
}

.popup_body_hold.deactive {
    transform: translateX(100%);
    transition-delay: 0.1s;
}

.header_popup {
    display: flex;
    padding: 0 2.9282576866764276vw 0.36603221083455345vw;
    align-items: start;
    justify-content: space-between;
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 4.34407vw;
    border-bottom: #e0e0e0 1px solid;
    background: #fff;
}

.homeenquiry_form_head h4,
.profile_name h5 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-size: 1.903367496339678vw;
    margin: 0;
}
.homeenquiry_form_head p {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-size: 1.903367496339678vw;
    margin: 0;
}

.homeenquiry_form_head h4 {
    font-style: normal;
    line-height: 2.635431918008785vw;
    letter-spacing: normal;
    display: inline-block;
    color: #000;
    text-transform: uppercase;
}
.homeenquiry_form_head p {
    font-style: normal;
    line-height: 2.635431918008785vw;
    letter-spacing: normal;
    display: inline-block;
    color: #000;
    text-transform: uppercase;
}

.homeenquiry_form_head span.popup_dashline,
.popupslider_sidebarheading h4 label span {
    background: #000;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
}

.homeenquiry_form_head span.popup_dashline {
    content: "";
    height: 0.21961932650073207vw;
    width: 2.9282576866764276vw;
    margin: -0.36603221083455345vw 0.5856515373352855vw 0 0;
}

.profile_name h5 {
    color: #5926c4;
    line-height: 2.1961932650073206vw;
    transition: opacity ease-in 0.3s;
}

.profile_name span {
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    color: #4d4d4d;
    font-size: 14px;
    line-height: 16px;
    transition: opacity ease-in 0.3s;
    display: block;
}

.close_popup {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.popup_description {
    padding: 2.9282576866764276vw 2.9282576866764276vw 2.1961932650073206vw;
    height: calc(100vh - 9.51683748169839vw);
    overflow-x: hidden;
}

.popup_description p a {
    word-break: break-all;
    /* cursor: url(../images/bc-svg8.svg) 3 0, auto; */
}

.popup_description ul {
    padding: 0 0 0 20px;
    margin: 0;
}

.popup_description p,
.popup_description ul li {
    font-size: 18px;
    transition: opacity ease-in 0.3s;
    color: #000;
}

.popup_description ul li {
    margin: 0;
}

.popup_description img {
    width: 23.060029282576867vw;
    margin: 0 0 0.8784773060029283vw;
}

.popup_description p {
    line-height: 28px;
}

.popup_description h6,
.popup_description img+p,
.popup_description p+p {
    margin: 1.171303074670571vw 0 0;
}

.popup_description h6 {
    font-family: acumin-pro, sans-serif;
    font-weight: 400;
    font-size: 22px;
    transition: opacity ease-in 0.3s;
    color: #000;
    line-height: 2.635431918008785vw;
}

.home_common_text h4,
.popup_description a,
.popup_description p,
.popup_description ul li {
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
}

.more_profile_link a,
.popup_description a {
    text-decoration: none;
}

.popup_description a {
    font-size: 20px;
    color: #007bff;
}

.footer_popup {
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 0.7320644216691069vw;
    padding: 0.7320644216691069vw 2.9282576866764276vw;
    border-top: #e0e0e0 1px solid;
    background: #fff;
}

.footer_popup,
.more_profile_link {
    justify-content: space-between;
    display: inline-flex;
    width: 100%;
    cursor: default;
    /* cursor: url(../images/ylwdot3.png) 36 45, auto; */
}

.more_profile_link a {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    color: #5926c4 !important;
    font-size: 1.903367496339678vw;
    line-height: 2.1961932650073206vw;
    margin: 0;
    display: block;
}

.more_profile_link a.back_faculty {
    margin-right: auto;
}

.more_profile_link a.next_faculty {
    margin-left: auto;
}

.popup_form_area {
    padding: 0 2.9282576866764276vw 0.36603221083455345vw;
    height: 100%;
    overflow-x: hidden;
}

.popup_form_area .npf_wgts {
    height: 100vh;
    padding: 20px 0 0;
}

.popup_form_area .npf_wgts iframe {
    height: 100%;
}

.popup_form_all {
    visibility: hidden;
    opacity: 0;
    position: relative;
    top: 0;
    z-index: -1;
    display: none;
}

.popup_form_all.active {
    visibility: initial;
    opacity: 1;
    z-index: 1;
    display: block;
}

.home_overview_wrp {
    padding: 7.759882869692533vw 0 0;
}

.academia_industry_wrp {
    padding: 7.759882869692533vw 0 10.54172767203514vw;
}

.home_dotslider_wrp {
    padding: 7.320644216691069vw 0 0;
}

.home_edge_space {
    width: calc(100% - 13.177159590043924vw);
    margin: 0 auto;
}

.home_common_text h4 {
    color: var(--black);
    font-size: 3.3674963396778916vw;
    line-height: 4.24597364568082vw;
    margin: 0;
}

.home_common_text.home-add-margin h4 {
    margin-left: 33.3vw;
}

.home_dotslider_inner {
    padding: 12px 0 0;
}

.home_dotslider_inner .dotsslider_inner .swiper-wrapper {
    max-height: 48vw;
}

.kingston_wrp {
    padding: 1.8301610541727673vw 0 10.61493411420205vw;
}

.left_group_logo {
    padding: 1.390922401171303vw 0 0;
}

.left_group_logo img {
    width: 22.547584187408493vw;
    max-width: 100%;
    height: auto; 
}

.kingston_stokeline_heading {
    padding: 0 0 12.005856515373353vw;
}

.kingston_stokeline_heading h4 {
    -webkit-text-stroke: 1px #9b9b9b;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 5.856515373352855vw;
    line-height: 6.222547584187408vw;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-weight: 700;
    margin: 0;
}

.cta_grp_space {
    padding: 2.1961932650073206vw 0 0;
}

.meaningful_wrp {
    padding: 7.686676427525622vw 0 10.248901903367496vw;
}

.marquee_link_wrp {
    position: relative;
}

.moving_arrow_link,
.moving_arrow_link a {
    display: flex;
    height: 100%;
    align-items: center;
}

.moving_arrow_link {
    position: absolute;
    background: #000;
    right: 0;
    top: 0;
    z-index: 1;
    width: 20.05856515373353vw;
}

.moving_arrow_link a {
    padding: 0.5856515373352855vw 2.049780380673499vw 0.5856515373352855vw 1.4641288433382138vw;
    text-decoration: none;
    overflow: hidden;
}

.moving_arrow_link a span.movinglink_text,
.yellow_box_bottom_desc div {
    font-family: acumin-pro, acumin-pro, sans-serif;
    font-size: 1.610541727672035vw;
}

.moving_arrow_link a span.movinglink_text {
    font-weight: 500;
    text-transform: uppercase;
    fill: #fff;
    color: #fff;
    background-color: #000;
    line-height: 1.903367496339678vw;
}

.moving_arrow_link a span.movinglink_svg svg {
    width: 1.9765739385065886vw;
}

.moving_arrow_link a:hover span.movinglink_svg svg {
    animation: slide-diagonal 0.4s forwards;
}

.home_yellowcircle_wrp {
    height: calc(var(--gridcell) * 8);
    position: relative;
    overflow: hidden;
    background: #e13311;
    border-top: 0;
    border-bottom: 0;
}

a.cursor_explore {
    text-decoration: none;
    cursor: url(../images/explore-curr-hov.svg) 3 0, auto;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    height: 100%;
}

.yellow_circle_inner {
    width: 56.002928257686676vw;
    height: 54.02635431918009vw;
    position: absolute;
    right: -1px;
    top: -0.6588579795021963vw;
    z-index: -1;
}

.yellow_circle_inner lottie-player {
    width: 100%;
    height: 100%;
}

.yellow_box_bottom_wrp,
.yellow_box_top_ttl {
    width: calc(100% - 13.177159590043924vw);
    margin: 0 auto;
    padding: 11.71303074670571vw 0 0;
}

.yellow_box_top_ttl h4 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-size: 6.69vw;
    line-height: 6.69vw;
    color: #fff;
    z-index: 2;
    position: relative;
    text-transform: uppercase;
    margin: 0;
}

span.yellowbox_dashline_small {
    width: 2.4158125915080526vw;
}

span.yellowbox_dashline_long,
span.yellowbox_dashline_small {
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
    height: 0.6578947368421052vw;
    margin: -1.3177159590043925vw 1.0980966325036603vw 0;
}

span.yellowbox_one {
    width: 24.890190336749633vw;
}

span.yellowbox_two {
    width: 14.641288433382138vw;
}

span.yellowbox_three {
    width: 31.478770131771594vw;
    margin: -1.3177159590043925vw 1.0980966325036603vw 0 0;
}

.section_activated span.yellowbox_one {
    width: 28.18448023426062vw;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
}

.section_activated span.yellowbox_two {
    width: 17.93557833089312vw;
    -webkit-transition: 0.8s ease-out;
    transition: 0.8s ease-out;
}

.section_activated span.yellowbox_three {
    width: 34.40702781844802vw;
    -webkit-transition: 1.2s ease-out;
    transition: 1.2s ease-out;
}

.yellow_box_bottom_wrp {
    justify-content: flex-end;
    display: flex;
    padding: 6.881405563689605vw 6.954612005856515vw 0 0;
}

.yellow_box_bottom_desc {
    display: flex;
    width: 26.500732064421666vw;
}

.yellow_box_bottom_desc div {
    color: #000;
    font-weight: 200;
    line-height: 2.7086383601756956vw;
}

.yellow_box_bottom_desc svg {
    display: none;
}

.home_blackbox_tags {
    height: calc(var(--gridcell) * 10);
    border-top: 0;
    border-bottom: 0;
    padding: 6.588579795021962vw;
}

.cell_line_black:after {
    background-image: linear-gradient(#70707080 var(--oneunit), transparent var(--oneunit)), linear-gradient(90deg, #70707080 var(--oneunit), transparent var(--oneunit));
}

.home_blackbox_inner {
    width: 100%;
    margin: 0 auto;
    position: relative;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.home_svgtags_item,
.home_tags_heading {
    height: 13.323572474377746vw;
    display: flex;
    align-items: center;
    position: absolute;
}

.home_tags_heading {
    top: 13.396778916544655vw;
    left: 0.14641288433382138vw;
}

.home_tags_heading h4 {
    color: #fff;
    font-family: acumin-pro-condensed, Sans-serif;
    font-size: 5.27086383601757vw;
    font-weight: 700;
    margin: -0.5124450951683748vw 0 0;
}

.home_svgtags_item {
    width: 13.323572474377746vw;
    justify-content: center;
}

.home_svgtags_item a,
.home_svgtags_item a svg {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.home_svgtags_item a {
    display: block;
}

.home_svgtags_item a:hover svg {
    fill: #fff;
}

.home_svgtags_item a:hover svg text {
    fill: #000;
}

.home_svgtags_item a svg {
    width: 11.749633967789165vw;
    height: 11.749633967789165vw;
}

.home_svgtags_item a svg text {
    font-family: acumin-pro, sans-serif;
    font-weight: 300;
    font-style: normal;
    letter-spacing: normal;
}

.home_svgtags_1 {
    left: 0;
    top: 0;
}

.home_svgtags_2 {
    left: 13.323572474377746vw;
}

.home_svgtags_3 {
    right: 0.14641288433382138vw;
    top: 0.29282576866764276vw;
}

.home_svgtags_4,
.home_svgtags_5 {
    right: 13.396778916544655vw;
    top: 13.543191800878477vw;
}

.home_svgtags_5 {
    right: 0.14641288433382138vw;
}

.home_svgtags_6 {
    left: -0.07320644216691069vw;
    top: 26.939970717423133vw;
}

.home_svgtags_7,
.home_svgtags_8 {
    left: 33.30893118594436vw;
    top: 26.939970717423133vw;
}

.home_svgtags_8 {
    left: 46.705710102489014vw;
}

.home_svgtags_9 {
    right: 0.14641288433382138vw;
    top: 26.939970717423133vw;
}

.home_svgtags_10 {
    left: 13.323572474377746vw;
    top: 40.26354319180088vw;
}

.home_svgtags_11 {
    left: 0;
    top: 40.26354319180088vw;
}

.home_svgtags_12 {
    right: 13.433382137628112vw;
    top: 26.939970717423133vw;
}

.home_svgtags_13 {
    right: 0.10980966325036604vw;
    top: 40.26354319180088vw;
}

.home_empower_wrp {
    padding: 9.809663250366032vw 0 0;
}

.home_bridging_wrp {
    padding: 5.27086383601757vw 0 0;
}

.home_bridging_inner h4 {
    color: #ffd815;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 4.978038067349927vw;
    font-weight: 700;
    line-height: 5.563689604685212vw;
    text-transform: uppercase;
    margin: 0 0 0-0.29282576866764276vw;
}

.home_story_dashline {
    background: #ffd815;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
    height: 0.6578947368421052vw;
    margin: -0.8784773060029283vw 0.7174231332357248vw 0;
}

.story_linewidth_one {
    width: 4.758418740849195vw;
}

.story_linewidth_two {
    width: 1.7569546120058566vw;
}

.section_activated .story_linewidth_one {
    width: 1.8667642752562226vw;
}

.section_activated .story_linewidth_two {
    width: 7.540263543191801vw;
}

.home_blogslider_wrp {
    padding: 3.294289897510981vw 0 10.248901903367496vw;
    transition: popup_slider_item;
}

.chatbot_icon {
    position: fixed;
    right: 1.3177159590043925vw;
    bottom: 1.0980966325036603vw;
    z-index: 9;
    width: 3.513909224011713vw;
    height: 3.513909224011713vw;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #b0b0b033;
    text-decoration: none;
}

.chatbot_scroll {
    position: absolute;
    bottom: -80px;
}

.chatbot_icon svg {
    width: 1.9765739385065886vw;
    margin-top: 0.36603221083455345vw;
}

.chatbot_icon img {
    width: 3.5871156661786237vw;
    min-width: 40px;
}

.fixed_right_cta {
    position: absolute;
    right: 0;
    top: 15vw;
    z-index: 2;
}

.fixed_right_cta a {
    display: block;
    padding: 0.7320644216691069vw;
    font-family: acumin-pro, sans-serif;
    font-weight: 400;
    font-size: 1.0248901903367496vw;
    text-transform: uppercase;
    width: 7.661786vw;
    line-height: 1.390922401171303vw;
    transition: 0.3s;
}

.fixed_right_cta a:hover {
    letter-spacing: 0.4px;
    text-decoration: none;
}

.fixed_right_cta a.fix_black_cta {
    height: calc(var(--gridcell) * 2);
    background: #000;
    color: #fff;
}

.fixed_right_cta a.fix_yellow_cta {
    height: var(--gridcell);
    background: #ffd815;
    color: #000;
}
.fixed_right_cta a.fix_purple_cta {
    height: var(--gridcell);
        background: #5926c4;
    color: #fff;
}

.popup_bg_whitelayer {
    position: fixed;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: #fff;
    z-index: -1;
    margin: 0;
    padding: 0;
    opacity: 0;
}

.showbg_layer_popslider {
    width: 100%;
    z-index: 3;
    opacity: 1;
    transition: width 0.3s linear;
}

.popup_bg_whitelayer>div {
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: 0.2s;
}

.popup_slider_hold {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    opacity: 0;
    visibility: hidden;
}

.popup_slider_show {
    opacity: 1;
    visibility: initial;
    z-index: 3;
    transition: opacity 0.3s linear;
    transition-delay: 0.2s;
}

.left_sidebar_popup {
    width: 18.301610541727673vw;
}

.right_spacebar_popup {
    width: calc(100% - 18.301610541727673vw);
    margin-left: auto;
}

.popupslider_sidebarheading h4 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2.635431918008785vw;
    line-height: 2.635431918008785vw;
    letter-spacing: normal;
    display: inline-block;
    margin: 0;
    color: #000;
    text-transform: uppercase;
}

.popupslider_sidebarheading h4 label {
    white-space: initial;
    flex-wrap: wrap;
    margin: 0;
}

.popupslider_sidebarheading h4 label span {
    height: 0.29282576866764276vw;
    width: 3.294289897510981vw;
    margin: -0.43923865300146414vw 0.5856515373352855vw 0 0;
}

.popup_slider_nav {
    padding-top: 2.9282576866764276vw;
    width: 62.2vw;
    display: flex;
    justify-content: space-between;
}

.popup_slider_close {
    position: fixed;
    right: 30px;
    top: 8px;
    /* cursor: url(../images/bc-svg8.svg) 3 0, auto; */
}

.popup_blogslider_wrp {
    opacity: 0;
    visibility: hidden;
    padding: 45px 0 0;
}

.popup_slider_show .popup_blogslider_wrp {
    opacity: 1;
    visibility: initial;
    transition: 0.7s linear;
}

.popup_slider_item {
    opacity: 0;
    visibility: hidden;
    transition: 0.4s linear;
}

.popup_slider_show .popup_slider_item {
    visibility: initial;
    opacity: 1;
}

.popup_slider_show .popup_slider_item:nth-child(4) {
    transition-delay: 0.7s;
}

.popup_slider_show .popup_slider_item:nth-child(5) {
    transition-delay: 0.9s;
}

.popup_slider_show .popup_slider_item:nth-child(6) {
    transition-delay: 1s;
}

.search_bg_layer {
    pointer-events: inherit;
    position: fixed;
    cursor: pointer;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    padding: 0;
    opacity: 0;
    transition: opacity ease-in 0.3s;
}

.search_bg_layer.active {
    opacity: 1;
    z-index: 3;
}

.search_bg_color {
    background-color: #00000033;
}

.global_search {
    position: fixed;
    top: 0;
    transform: translateY(-100%);
    z-index: 3;
    background: #fff;
    width: 100%;
    height: 6.661786237188873vw;
    display: flex;
    align-items: center;
    transition: 0.2s;
}

.global_search.active {
    box-shadow: 0 0 2rem 0 rgb(0 0 0/8%);
    transform: translateY(0);
    transition: transform 0.25s ease-in-out, box-shadow 0.1s 0.25s linear;
}

.gbl_search_inner {
    width: 92%;
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.glb_srch_field {
    width: calc(100% - 14.641288433382138vw);
}

.close_search {
    width: 7.320644216691069vw;
    height: 3.513909224011713vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close_search svg {
    width: 1.7569546120058566vw;
    height: 1.7569546120058566vw;
    cursor: pointer;
    transition: 0.3s;
}

.close_search svg:hover {
    transform: scale(1.15);
}

.swiper-container-multirow-column>.swiper-wrapper {
    flex-direction: initial;
}

.fixed_btm_border {
    border-bottom: 1px solid #bebcbd80;
}

.notfound_home {
    height: calc(100vh);
}

.notfound_inner {
    border-top: 1px solid #dcdcdc;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
}

.notfound_hold {
    width: 100%;
    text-align: center;
}

.notfound_inner h2 {
    -webkit-text-stroke: 1px #9b9b9b;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 160px;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-weight: 700;
    margin: 0 0 10px;
}

.notfound_inner h3 {
    font-family: acumin-pro-condensed, Sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: #e13212;
    margin: 0 0 10px;
}

.notfound_inner p {
    color: #000;
    font-family: acumin-pro, sans-serif;
    font-size: 22px;
    font-weight: 200;
    width: 600px;
    margin: 0 auto;
}

.gobal_searh_form {
    width: 600px;
    margin: 0 auto;
    padding: 30px 0 0;
}

.gobal_searh_form form input.search_field {
    border: 1px solid #dcdcdc;
    width: 100%;
    font-family: acumin-pro-condensed, Sans-serif;
    padding: 12px 12px 12px 15px;
    border-right: 0;
    font-size: 20px;
    font-weight: 300;
}

.gobal_searh_form form input.search_field:focus {
    outline: 0;
    border-right: 0;
}

.gobal_searh_form form input.search_submit {
    font-size: 20px;
    font-family: acumin-pro-condensed, sans-serif;
    text-align: center;
    text-transform: uppercase;
    transition: 0.2s linear;
    background: #e13212;
    color: #fff;
    border: 0;
    padding: 0;
    font-weight: 300;
    width: 150px;
    cursor: pointer;
}

.gobal_searh_form form input.search_submit:hover {
    letter-spacing: 0.8px;
}

#cursor {
    width: 10px;
    height: 10px;
    position: fixed;
    top: 0;
    left: 0;
    margin-top: -5px;
    margin-left: -5px;
    z-index: 200;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    pointer-events: none;
}

#cursor:after,
#cursor:before {
    display: block;
    content: "";
    width: 9px;
    height: 9px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
}

#cursor:before {
    opacity: 0;
    font-family: Integral, sans-serif;
    font-weight: 400;
    font-size: 0.8em;
    line-height: 100%;
    text-align: center;
    color: #232022;
    transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease;
    -moz-transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease;
    -webkit-transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease;
    -o-transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease;
    z-index: 1;
}

#cursor:after {
    background-color: #ffd815;
    border: 2px solid #ffd815;
}

#cursor.large--border--no-blend:after {
    border: 2px solid #232022;
}

#cursor.large--border--no-blend:after,
#cursor.large--border--yellow:after,
#cursor.large--border:after,
#cursor:after {
    transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease, background-color 0.15s ease;
    -moz-transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease, background-color 0.15s ease;
    -webkit-transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease, background-color 0.15s ease;
    -o-transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease, background-color 0.15s ease;
}

#cursor.large--border--no-blend:after,
#cursor.large--border--yellow:after,
#cursor.large--border:after {
    width: 70px;
    height: 70px;
    background-color: transparent;
}

#cursor.hide {
    display: none !important;
}

#cursor.large--drag:before {
    content: "drag";
    width: 70px;
    height: 70px;
    line-height: 65px;
    opacity: 1;
    transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease;
    -moz-transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease;
    -webkit-transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease;
    -o-transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease;
}

#cursor.large--drag:after {
    width: 70px;
    height: 70px;
    transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease, background-color 0.15s ease;
    -moz-transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease, background-color 0.15s ease;
    -webkit-transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease, background-color 0.15s ease;
    -o-transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease, background-color 0.15s ease;
}

#cursor,
.wtai {
    display: none;
}

@media only screen and (max-width: 1680px) {
    .gridcell_slide_text_item {
        padding-top: 1.76vw;
    }
}

@media only screen and (max-width: 1600px) {
    .gridcell_slide_text_item {
        padding-top: 1.75vw;
    }
}

@media only screen and (max-width: 1440px) {
    .gridcell_slide_text_item {
        padding-top: 1.72vw;
    }
    .ftr_inner .ftr_heading h4 {
        top: 4vw;
        position: relative;
    }
    .ftr_inner .ftr_heading p {
        top: 4vw;
        position: relative;
    }
}

@media only screen and (max-width: 1400px) {
    .gridcell_slide_text_item {
        padding-top: 1.79vw;
    }
}

@media only screen and (max-width: 1366px) {
    .gridcell_slide_text_item {
        padding-top: 1.62vw;
    }
}

@media only screen and (max-width: 1280px) {
    .scrolled .logo_togglebtn_hold a img {
        width: 3.125vw;
    }
    .toggle_menu_main li a {
        font-size: 13px;
    }
    .search_icon svg {
        width: 13px;
        height: 13px;
    }
    .search_icon {
        width: 30px;
    }
    .bottom_sub_menu li a,
    .ctalink_sub_menubar,
    .search_icon {
        font-size: 11px;
    }
    .open_dropdow_mega_menu .dropdown_mega_menu_inner {
        top: 100%;
    }
}

@media only screen and (max-width: 1220px) {
    .scrolled .logo_togglebtn_hold a img {
        width: 3.1967213114754096vw;
    }
    .open_dropdow_mega_menu .dropdown_mega_menu_inner {
        top: 100%;
    }
}

@media only screen and (max-width: 1200px) {
    .dropdown_mega_menu {
        height: 43.1vw;
    }
	 
    .svg_tags_item svg text {
        font-size: 1.0416666666666665vw;
    }
    .profile_accordian_wrp {
        padding: 6.75vw 0 0 6.63vw;
    }
    .megamenu_right_wrap {
        padding-right: 30px;
    }
    .open_dropdow_mega_menu .dropdown_mega_menu {
        top: 4.3vw;
    }
    .homesticky .dropdown_mega_menu {
        width: 95.75%;
    }
    .open_dropdow_mega_menu .dropdown_mega_menu_inner {
        top: 100%;
    }
}

@media only screen and (min-width: 1200px) {
    .mbl_pursuip_inception_heading {
        display: none;
    }
}

@media only screen and (max-width: 1199px) {
    a.home_search_icon svg {
        width: 14px;
        height: 14px;
    }
    .homesticky .homelogo_hold a img.homelogo_img {
        width: 4.253544620517098vw;
    }
    a.ctalink_menubar,
    a.home_search_icon>span,
    ul.mainmenu_left_wrp>li>a {
        font-size: 1.1676396997497915vw;
    }
    ul.mainmenu_left_wrp {
        padding-left: 2.9190992493744785vw;
    }
    ul.mainmenu_left_wrp>li:not(:first-child) {
        padding-left: 1.2510425354462051vw;
    }
    .left_sidebar {
        width: 19.5%;
    }
    .right_spacebar,
    .right_spacebar_large {
        width: 80.35%;
    }
    .sidebarheading h2 label,
    .sidebarheading h4 label {
        white-space: initial;
        position: relative;
    } 
    .sidebarheading p label {
        white-space: initial;
        position: relative;
    }
    .sidebarheading h1 label:nth-child(1) span,
    .sidebarheading h2 label:nth-child(1) span,
    .sidebarheading h4 label:nth-child(1) span {
        width: 30px;
        min-width: initial;
        position: absolute;
        left: -40px;
        margin: 0;
        top: 1.3344453711426187vw;
    } 
    .sidebarheading p label:nth-child(1) span {
        width: 30px;
        min-width: initial;
        position: absolute;
        left: -40px;
        margin: 0;
        top: 1.3344453711426187vw;
    }
    .sidebarheading h1 label:nth-child(2) span,
    .sidebarheading h2 label:nth-child(2) span,
    .sidebarheading h4 label:nth-child(2) span {
        display: none;
    } 
    .sidebarheading p label:nth-child(2) span {
        display: none;
    }
    .common_caption p,
    .pagination_of span {
        font-size: 20px;
    }
    .explore_more_cta {
        font-size: 18px;
    }
    .left_group_logo img {
        width: 17.514595496246873vw;
    }
    .grid_rowline_one:after {
        background-position: -1px 5.337781484570475vw;
    }
    .by_year_heading {
        width: 43.074671vw;
        height: 5.421184320266889vw;
    }
    .by_year_heading h4 {
        font-size: 8.340283569641366vw;
        margin: -0.5004170141784821vw 0 0;
    }
    .by_year_sortinfo {
        height: 5.337781484570475vw;
        width: 25.0208507089241vw;
    }
    .by_year_sortinfo_inner p {
        font-size: 1.6680567139282736vw;
    }
    .leftbar_heading_small h4 {
        font-size: 2.0016680567139282vw;
        line-height: 2.6688907422852375vw;
    }
    .date_announcement_item h5 {
        font-size: 1.834862385321101vw;
    }
    .date_announcement_item p {
        font-size: 1.7514595496246872vw;
    }
    .fixed_right_cta a {
        font-size: 13px;
    }
    .home_bridging_inner h4 {
        font-size: 48.8px;
    }
    .post_category {
        font-size: 13px;
        padding-top: 10px;
    }
    .blog_post_heading {
        font-size: 18px;
        line-height: 22px;
        height: 6.222547584187408vw;
    }
    .post_sort_desc {
        font-size: 16px;
        line-height: 24px;
        height: 52px;
        margin-bottom: 25px;
    }
    .postdate {
        font-size: 13px;
        padding-bottom: 14px;
    }
    .cta_pagination_nav {
        width: 64vw;
        padding-top: 30px;
    }
    .ftr_top_right {
        width: 79.5%;
    }
    .ftr_contact_info p,
    .ftr_menu_list li a {
        font-size: 18px;
        line-height: 22px;
    }
    .sidebarheading h2,
    .sidebarheading h4 {
        font-size: 2.3333333333333335vw;
    } 
    .sidebarheading p {
        font-size: 2.3333333333333335vw;
    }
    .sidebarheading h5 {
        font-size: 1.4166666666666665vw;
    }
    .abt_common_text h4 br,
    .inception_wrp .section_edge_left .sidebar_spacebar_wrp .left_sidebar,
    .our_pursuip_wrp .section_edge_left .sidebar_spacebar_wrp .left_sidebar,
    .sidebarheading h5 span.sub_title_dashline, .sidebarheading h4.h5 span.sub_title_dashline {
        display: none;
    }
    .inception_wrp .section_edge_left,
    .our_pursuip_wrp .section_edge_left {
        padding: 0;
    }
    .inception_wrp .section_edge_left .sidebar_spacebar_wrp .right_spacebar,
    .our_pursuip_wrp .section_edge_left .sidebar_spacebar_wrp .right_spacebar {
        width: 75%;
    }
    .inception_wrp .lottie_inception,
    .our_pursuip_wrp .lottie_inception {
        width: 100%;
    }
    .inception_wrp .lottie_inception lottie-player,
    .our_pursuip_wrp .lottie_inception lottie-player {
        left: -35.1vw;
    }
    .mbl_pursuip_inception_heading {
        padding: 0 0 10px;
    }
    .zigzag_flex {
        padding: 4.320644vw 0 0;
    }
    .Pillter_top_title h4,
    .Pillter_top_title h5 {
        padding: 0 0 0 7.5vw;
    }
    .sticky_heading_star {
        padding-top: 6.005004170141785vw;
    }
    .sticky_heading_star h4 {
        font-size: 5.58858vw;
        line-height: 5.954612vw;
    }
    .five_lottie {
        right: -1.5012510425354462vw;
    }
    .bottomtxt_anima_abt_spc {
        padding: var(--zerounit) 0 0 24.985359vw;
    }
    .fullwith_sec_title h4 {
        font-size: 6.588579795021962vw;
        line-height: 6.661786237188873vw;
    }
    .partnership_sidebar_spacebar {
        width: 100%;
    }
    .logo_and_content div.left_logo {
        width: 21%;
    }
    .commoncaption_partnership h5,
    .right_txt_copy {
        width: 79%;
    }
    .logo_grid_wrp {
        width: 80.3%;
    }
    .logo_grid_wrp div.logo_grid_item {
        width: 33%;
    }
    .slidebar_lottie {
        width: calc(100% - 20px);
    }
    .pedagogy_mdl_page {
        width: 69%;
    }
    .rightspace_item_right {
        width: 80.3%;
    }
    .textrail_caption h4 {
        font-size: 34px;
    }
    .textrail_caption_btm_item {
        padding-top: 15px;
    }
    .textrail_btm_wrp {
        padding-bottom: 80px;
    }
    .textrail_caption_btm_inner p {
        font-size: 18px;
        line-height: 28px;
    }
    .textrail_bottom_js .slick-arrow,
    .textrail_bottom_js .slick-next {
        width: 30px;
        height: 30px;
    }
    .textrail_bottom_js .slick-next {
        left: 50px;
    }
    .success_story_inner {
        padding: 10.17716vw 0 8.8vw 17vw;
    }
    .success_section_heading h4 {
        padding: 0 0 0 25.1vw;
    }
    .left_group_logo img,
    .success_profile_img img {
        max-width: 100%;
        height: auto; 
    }
    .profile_pagination_nav {
        width: 68.9vw;
    }
    .success_leftright_nav {
        width: 8.006672226855713vw;
    }
    .success_next,
    .success_prev {
        width: 2.6688907422852375vw;
        height: 2.6688907422852375vw;
    }
    .success_inside_top {
        height: 90px;
        padding: 14px 16px 0;
    }
    .success_inside_top h5 {
        font-size: 20px;
        margin: 0 0 4px;
    }
    .success_inside_top h3 {
        font-size: 20px;
        margin: 0 0 4px;
    }
    .success_inside_top span {
        font-size: 16px;
    }
    .success_inside_info {
        height: 120px;
        padding: 0 16px;
    }
    .success_inside_info_part span {
        font-size: 16px;
        margin-bottom: 5px;
        display: block;
    }
    .success_inside_info_part p {
        font-size: 14px;
    }
    .success_inside_year {
        font-size: 14px;
        padding: 0 16px 10px;
    }
    .form_papper_wrp .npf_wgts {
        height: 50vw;
    }
    .success_story_slider_inds {
        padding: 22px 0 3.6603221083455346vw 17vw;
    }
    .share_sortdesc_wrp {
        position: static;
    }
    .blogdetail_heading_wrp {
        padding: 60px 0 0;
    }
    .post_info_item span,
    .post_tags span {
        font-size: 13px;
        line-height: initial;
    }
    .post_info_item p {
        font-size: 20px;
        line-height: 22px;
    }
    .post_tags a {
        font-size: 15px;
    }
    .blogpost_detail {
        padding: 0;
    }
    .left_slidebar_blog {
        width: 19.5%;
    }
    .right_spacebar_blog {
        width: calc(100% - 19.5%);
        margin-left: auto;
    }
    .blog_section_gap,
    .gridcell_size_blgdetail {
        padding: 40px 0 0;
    }
    .lineanimation_align_blog {
        width: 100%;
    }
    .gridcell_arrow_slider {
        width: 75.9%;
    }
    .common_caption>p+img {
        margin: 40px 0 50px 2px;
    }
}

@media only screen and (max-width: 1180px) {
    .scrolled .logo_togglebtn_hold a img {
        width: 3.2203389830508473vw;
    }
}

@media only screen and (max-width: 1120px) {
    .scrolled .logo_togglebtn_hold a img {
        width: 3.303571428571429vw;
    }
    .profile_accordian_wrp {
        padding: 6.65vw 0 0 6.63vw;
    }
}

@media only screen and (max-width: 1110px) {
    .megamenu_right_inner>a.explore_without_txt span.explore_arrow:before {
        top: -7px;
    }
}

@media only screen and (max-width: 1080px) {
    .scrolled .logo_togglebtn_hold a img {
        width: 3.425925925925926vw;
    }
    .svg_tags_item svg text {
        font-size: 1.2037037037037037vw;
    }
    .popup_slider_nav {
        width: 66.2vw;
    }
    .popup_short_view,
    .profilecard_title span {
        font-size: 14px;
    }
    .blog_post_heading {
        height: 78px;
    }
    .profile_pagination_nav {
        width: 75.9vw;
        padding-top: 40px;
    }
}

@media only screen and (max-width: 1035px) {
    .scrolled .logo_togglebtn_hold a img {
        width: 3.4782608695652173vw;
    }
}

@media only screen and (min-width: 1024px) {
    .layoutchange_accordian_grid,
    .mobile_navbar {
        display: none;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
    .section_activated .sticky_heading_star h4 {
        font-size: 4.660322vw;
        line-height: 4.660322vw;
    }
}

@media only screen and (max-width: 1080px) {
    .profilecard_inside_tab .profilecard_item {
        margin: 6.599vw 0 0;
        opacity: 0;
    }
}

@media only screen and (max-width: 1023px) {
     :root {
        --gridcell: 8.3330078125vw;
    }
    .secondary_header,
    header.home_header_wrp {
        transition: 0.5s;
    }
    .cell_box_banner:after,
    .grid_cell_item:after {
        background-size: calc(100% / 12) var(--gridcell);
    }
    .internal_navbar,
    nav.home_navbar {
        background: #fff;
        display: none;
    }
    .mobile_navbar {
        background: #fff;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .mobile_logo {
        width: 8.30078125vw;
    }
    .mobile_hold {
        background: #e13212;
        display: flex;
    }
    .mobile_hold a {
        display: block;
    }
    .mobile_hold a img.mobile_logo_img {
        width: 100%;
        max-width: 100%;
        height: auto; 
    }
    .mobile_toggle {
        border-left: 1px solid #dcdcdc;
        width: 8.406647116324535vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav_tgl_btn {
        margin: 0;
        padding: 0;
        width: 3.41796875vw;
        height: 2.734375vw;
    }
    .secondary_header.scrolled .nav_tgl_btn {
        margin: 0;
    }
    .nav_tgl_btn span:nth-child(1) {
        top: 0;
    }
    .nav_tgl_btn span:nth-child(2) {
        top: 0.78125vw;
    }
    .nav_tgl_btn span:nth-child(3) {
        top: 1.5625vw;
    }
    .nav_tgl_btn span:nth-child(4) {
        top: 2.44140625vw;
    }
    .nav_tgl_btn.open span:nth-child(2) {
        top: 1.171875vw;
    }
    .nav_tgl_btn.open span:nth-child(3) {
        top: 1.171875vw;
        height: 2px;
    }
    .nav_tgl_btn.open span:nth-child(4) {
        top: 2.44140625vw;
    }
    .mbl_submenu_scrl {
        width: 100%;
        border-top: 1px solid #b9b9b9;
        padding: 0 13px;
    }
    .mbl_submenu_scrl ul {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        overflow-y: hidden;
    }
    .mbl_submenu_scrl ul li a {
        font-size: 12px;
        line-height: 35px;
        text-transform: uppercase;
        font-family: acumin-pro, sans-serif;
        font-weight: 300;
        color: #000;
        margin: 0;
        display: block;
        text-decoration: none;
        padding: 0 6px;
        white-space: nowrap;
    }
    .mbl_menu_circle {
        padding-top: 30px;
    }
    .mbl_menu_circle img {
        width: 100%;
        max-width: 420px;
    }
    .home_door_image {
        background-image: url(../images/door-image.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: calc(var(--gridcell) * 9);
    }
    .bottomline_animation_inner span br,
    .home_common_text h4 br,
    .home_door_image img {
        display: none;
    }
    .home_banner_caption {
        padding: 18.45vw 6.661786237188873vw 6.661786237188873vw 7.99vw;
    }
    .homebanner_inner {
        top: 4.39453125vw;
        font-size: 7.03125vw;
        line-height: 8.203125vw;
    }
    .home_txtslider_container {
        margin-top: 2.1505376344086025vw;
    }
    .fixed_right_cta a {
        width: 8.30078125vw;
        padding: 0.9765625vw 0.9765625vw 0.9765625vw 0.78125vw;
        line-height: 1.5625vw;
        font-size: 1.3671875vw;
    }
    .fixed_right_cta {
        top: 24.90234375vw;
    }
    .chatbot_icon {
        width: 45px;
        height: 45px;
        right: 22px;
    }
    .chatbot_icon svg {
        width: 22px;
        margin-top: 6px;
        margin-right: 2px;
    }
    .cmn_sec_cls {
        padding: 0 20px;
    }
    .section_edge_left {
        padding: 0;
    }
    .mld_edge_border,
    .mld_edge_border_blck {
        border: 1px solid #dcdcdc;
        border-top: 0;
        border-bottom: 0;
    }
    .mld_edge_border_blck {
        border: 1px solid #cbcbcb66;
    }
    .mbl_sidebar_top {
        padding-top: 70px;
        display: block;
    }
    .mbl_meaningfull {
        padding-bottom: 150px;
    }
    .left_sidebar_small {
        width: 100%;
        margin: 0;
    }
    .right_spacebar {
        margin: 0;
    }
    .right_spacebar_large {
        width: 100%;
        margin: 0;
    }
    .sidebarheading h1 label:nth-child(1) span,
    .sidebarheading h2 label:nth-child(1) span,
    .sidebarheading h4 label:nth-child(1) span {
        width: 35px;
        top: 26px;
    } 
    .sidebarheading p label:nth-child(1) span {
        width: 35px;
        top: 26px;
    }
    .left_sidebar,
    .right_spacebar {
        width: 100%;
    }
    .common_caption h4+h5 {
        padding-top: 20px;
    }
    .mbl_leftbar {
        padding-bottom: 30px;
    }
    .sidebar_title_gap {
        padding: 0;
    }
    .sidebarheading h1 label,
    .sidebarheading h2 label,
    .sidebarheading h4 label {
        display: inline;
    } 
    .sidebarheading p label {
        display: inline;
    }
    .sidebarheading h2,
    .sidebarheading h4 {
        font-size: 36px;
        line-height: 36px;
        display: block;
    } 
    .sidebarheading p {
        font-size: 36px;
        line-height: 36px;
        display: block;
    }
    .left_subtitle h6 {
        font-size: 32px;
    }
 .left_subtitle h2 {
        font-size: 32px;
    }
.textred {
    color: var(--red);
}


.left_subtitle h1 {
        font-size: 32px;
    }

    i.and_size_hometitle:after {
        width: 24px;
        height: 24px;
        margin: 0 12px;
    }
    .left_subtitle {
        padding-top: 8px;
    }
    .common_caption {
        width: 100%;
    }
    .common_caption h2,
    .common_caption h4 {
        font-size: 32px;
        line-height: 46px;
        padding-bottom: 11px;
    }
 
    .common_caption p {
        font-size: 32px;
        line-height: 46px;
        padding-bottom: 11px;
    }

    .common_caption h4.smalltext {
        font-size: 26px;
        line-height: 34px;
        padding: 0;
    }
    .underline_link_list {
        padding-top: 20px;
    }
    .common_caption p {
        font-size: 20px;
        line-height: 32px;
        width: 75%;
    }
    .home_edge_space,
    .mbl_adms_black_box .left_sidebar {
        width: 100%;
    }
    .home_common_text h4 {
        font-size: 32px;
        line-height: initial;
    }
    .mbl_sidebar_btm_overview {
        padding-bottom: 50px;
    }
    .mbl_sidebar_btm {
        padding-bottom: 80px;
    }
    .left_group_logo {
        padding: 0;
    }
    .left_group_logo img {
        width: 32.421875vw;
        max-width: 100%;
        height: auto; 
    }
    .kingston_stokeline_heading {
        padding: 23px 0 3px;
    }
    .kingston_stokeline_heading h4 {
        font-size: 60px;
        line-height: initial;
    }
    .cta_grp_space {
        padding: 15px 0 0;
    }
    .explore_more_cta {
        font-size: 16px;
        line-height: initial;
    }
    .explore_txt {
        padding-bottom: 2px;
    }
    .explore_arrow:before {
        width: 8px;
        height: 8px;
        margin-top: -4px;
    }
    .explore_arrow {
        width: 20px;
        margin: 2px 0 0 12px;
    }
    .explore_more_cta:hover .explore_arrow {
        width: 23px;
    }
    .grid_rowline_one:after {
        background-position: -1px 124px;
    }
    .admission_by_year {
        padding: 0;
        display: block;
    }
    .by_year_heading {
        width: 47.8515625vw;
        height: 65px;
    }
    .by_year_heading h4 {
        font-size: 100px;
        margin: 0;
        line-height: 45px;
    }
    .by_year_sortinfo {
        height: 60px;
        width: 22.8515625vw;
    }
    .by_year_sortinfo_inner p {
        font-size: 20px;
        margin: 0 0 5px;
        line-height: 19px;
    }
    .mbl_adms_black_box {
        padding: 40px 0;
    }
    .leftbar_heading_small h4 {
        font-size: 24px;
    }
    .leftbar_heading_small h4 label:nth-child(1) span {
        top: 16px;
    }
    .date_announcement {
        padding-top: 26px;
        width: 76%;
    }
    .date_announcement_item h5 {
        font-size: 22px;
    }
    .date_announcement_item p {
        font-size: 20px;
        line-height: 26px;
    }
    .yellow_box_top_ttl {
        width: calc(100% - 16.6015625vw);
        padding: 14.2578125vw 0 0;
    }
    .yellow_box_top_ttl h4 {
        line-height: 9.47265625vw;
        font-size: 8.7890625vw;
    }
    .yellow_box_top_ttl h4 .mbl_redyell_spn_1 {
        width: 40px;
        height: 0.8578947368421052vw;
    }
    .yellow_box_top_ttl h4 .mbl_redyell_spn_2 {
        visibility: hidden;
        opacity: 0;
    }
    .yellow_box_top_ttl h4 .mbl_redyell_spn_3 {
        width: 20.99609375vw;
        visibility: hidden;
        opacity: 0;
    }
    .yellow_box_top_ttl h4 .mbl_redyell_spn_4 {
        width: 40px;
        height: 0.8578947368421052vw;
    }
    .yellow_box_top_ttl h4 .mbl_redyell_spn_5 {
        width: 242px;
    }
    .yellow_box_bottom_wrp {
        width: 66.2%;
        justify-content: initial;
        padding: 0;
        position: absolute;
        top: 90.0390625vw;
        left: 0;
        right: 0;
    }
    .yellow_box_bottom_desc {
        width: 100%;
        display: flex;
    }
    .yellow_box_bottom_desc div {
        color: #fff;
        font-size: 3.7109375vw;
        line-height: 5.46875vw;
        padding-right: 3.41796875vw;
    }
    .yellow_box_bottom_desc svg {
        display: block;
        width: 6.34765625vw;
        margin-top: 1.7578125vw;
    }
    .home_yellowcircle_wrp {
        height: calc(var(--gridcell) * 15);
    }
    .yellow_circle_inner {
        width: 69.3359375vw;
        height: 66.9921875vw;
        top: 14.16015625vw;
    }
    .home_blackbox_tags {
        height: calc(var(--gridcell) * 12);
        padding: 8.211143695014663vw;
    }
    .home_tags_heading {
        left: 0;
        top: 0;
        height: 16.715542521994134vw;
    }
    .home_tags_heading h4 {
        font-size: 6.35386119257087vw;
        line-height: 6.8426197458455515vw;
    }
    .home_svgtags_item,
    .home_svgtags_item a {
        width: 16.6015625vw;
        height: 16.6015625vw;
        display: flex;
        align-items: center;
    }
    .home_svgtags_item a {
        justify-content: center;
    }
    .home_svgtags_1 {
        left: 0;
        top: 16.715542521994134vw;
    }
    .home_svgtags_2 {
        left: 16.6015625vw;
        top: 16.715542521994134vw;
    }
    .home_svgtags_3 {
        right: 0.1953125vw;
        top: 16.715542521994134vw;
    }
    .home_svgtags_4 {
        top: 33.43108504398827vw;
        left: 16.715542521994134vw;
    }
    .home_svgtags_5 {
        top: 33.43108504398827vw;
        left: 0;
    }
    .home_svgtags_6 {
        top: 33.30078125vw;
        left: 33.43108504398827vw;
    }
    .home_svgtags_7 {
        top: 33.30078125vw;
        left: initial;
        right: 16.715542521994134vw;
    }
    .home_svgtags_8 {
        top: 50.146627565982406vw;
        left: 0;
    }
    .home_svgtags_10,
    .home_svgtags_9 {
        top: 50.146627565982406vw;
        right: 16.715542521994134vw;
    }
    .home_svgtags_10 {
        left: initial;
        right: 0.19550342130987292vw;
    }
    .home_svgtags_11 {
        top: 66.7644183773216vw;
        left: 0;
    }
    .home_svgtags_12 {
        top: 66.75vw;
        left: 16.715542521994134vw;
        display: none;
    }
    .home_svgtags_13 {
        top: 66.7644183773216vw;
        right: 0.1953125vw;
    }
    .home_svgtags_item a svg {
        width: 14.6484375vw;
    }
    .we_empower_line {
        padding: 66px 0 30px;
    }
    .home_bridging_inner {
        padding: 0 0 40px;
    }
    .mbl_homeblog_slide {
        padding-top: 0;
    }
    .mbl_slider_gap {
        padding: 24px 0 0;
    }
    .cta_pagination_nav {
        width: 86%;
    }
    .success_leftright_nav {
        width: 96px;
    }
    .success_next,
    .success_prev {
        width: 30px;
        height: 30px;
    }
    .blog_post_heading {
        padding-bottom: 13px;
        padding-top: 6px;
        margin-bottom: 7px;
        height: 73px;
        line-height: 22px;
    }
    .ftr_inner {
        padding: 15px 0 50px;
    }
    .ftr_top_right {
        width: 80.9%;
        margin: 0;
    }
    .aboutus_banner {
        overflow: hidden;
        border-bottom: 0;
    }
    .lottie_banner_ladder {
        top: 16.81329423264907vw;
        overflow: hidden;
    }
    .lottie_banner_ladder lottie-player {
        margin-top: -1.466275659824047vw;
    }
    span.commondash_abt_1 {
        width: 37.1vw;
    }
    .dbl_bg {
        background-image: linear-gradient(var(--blue) 54.5%, #000 46%);
    }
    .banner_caption {
        top: 25.88%;
        width: calc(100vw - 16.5vw);
    }
    .banner_caption h2 {
        font-size: 8.01564027370479vw;
        line-height: 8.406647116324535vw;
    }
    .banner_caption h1 {
        font-size: 8.01564027370479vw;
        line-height: 8.406647116324535vw;
    }
    .banner_caption p {
        font-size: 8.01564027370479vw !important;
        line-height: 8.406647116324535vw !important;
    }
    .banner_caption h2 span.commondash {
        margin: 0 6px 14px;
        height: 7px;
    }
    .banner_caption h1 span.commondash {
        margin: 0 6px 14px;
        height: 7px;
    }
    .about_banner_caption h2 span:nth-child(2) {
        width: 37.1vw;
    }
    .prg_overview_banner_caption h2 span:nth-child(3) {
        width: 46%;
    }
    .prg_overview_banner_caption h1 span:nth-child(3) {
        width: 46%;
    }
    .fd_caption h2 span:nth-child(1) {
        width: 60%;
        opacity: 0;
    }
    .fd_caption h2 span:nth-child(4) {
        width: 30%;
    }
    .lifeiiad_banner_caption h2 span:nth-child(1) {
        width: 62%;
    }
    .iiadindusty_banner_caption h2 span:nth-child(3) {
        width: 16%;
    }
    .iiadindusty_banner_caption h2 span:nth-child(5) {
        width: 38%;
    }
    .admission_caption h2 span:nth-child(3) {
        width: 35%;
    }
    .admission_caption h2 span:nth-child(6) {
        width: 2.5%;
    }
    .cd_caption h2 span:nth-child(1) {
        width: 64%;
    }
    .cd_caption h2 span:nth-child(2) {
        width: 11.5%;
        display: inline-block;
    }
    .cd_caption h2 span:nth-child(4) {
        width: 19.5%;
    }
    .cd_caption h2 span:nth-child(5) {
        display: none;
    }
    .cd_caption h2 span:nth-child(6) {
        width: 27%;
    }
    .fbm_caption h2 span:nth-child(1) {
        width: 60%;
    }
    .fbm_caption h2 span:nth-child(5) {
        width: 45%;
    }
    .iad_caption h2 span:nth-child(1) {
        width: 64%;
    }
    .iad_caption h2 span:nth-child(5) {
        width: 43%;
    }
    .fcom_caption h2 span:nth-child(1) {
        width: 60%;
    }
    .fcom_caption h2 span:nth-child(5) {
        width: 45%;
    }
    .overlapon_banner {
        margin-top: -8.523949169110459vw;
    }
    .notice_section_inner {
        width: calc(100vw - 16.5vw);
    }
    .leftside_desc_info {
        width: 58.45552297165201vw;
    }
    .rightside_info {
        width: 25.04398826979472vw;
    }
    .leftside_desc_info p.smalltext {
        font-size: 15px;
    }
    .rightside_inner_item div h4,
    .rightsidedate_item p {
        font-size: 2.346041055718475vw;
        margin: 0;
        line-height: initial;
    }
    .rightside_inner_item div h5,
    .rightsidedate_item h6 {
        font-size: 1.9550342130987293vw;
        line-height: initial;
    }
    .rightside_inner_item a,
    .rightsidedate_item a {
        font-size: 13px;
        line-height: initial;
    }
    .course_overview_first {
        border-top: 1px solid #bebcbd80;
    }
    .course_overview_first+.cmn_sec_cls {
        padding: 0 20px;
    }
    .underline_link_list li:last-child {
        margin: 0;
    }
    .sidebarheading h5 {
        font-size: 16px;
        margin: 4px 0 0;
        line-height: initial;
    }
    .sidebarheading h4.h5 {
        font-size: 16px !important;
        margin: 4px 0 0;
        line-height: initial;
    }
    .underline_link_list li a {
        font-size: 26px;
        line-height: 32px;
    }
    .syncslider_inner {
        padding: 8.38vw var(--zerounit) 16.65vw 0;
        position: relative;
    }
    .syncslider_top {
        top: 9.5%;
        width: 66.5vw;
    }
    .syncslidertext_box_container {
        overflow: hidden;
    }
    .syncslider_caption {
        padding: 3.1280547409579667vw 0 0;
    }
    .swiper-slide-active .syncslider_caption h4 {
        font-size: 5.865102639296188vw;
        line-height: 8.406647116324535vw;
    }
    .syncslidertext_box_container .swiper-pagination {
        font-size: 20px;
        padding: 0;
    }
    .syncsliderthumb_box_container {
        width: 83.38vw;
    }
    .syncslider_thumb_caption {
        flex-wrap: wrap;
    }
    .sync_leftthumb {
        width: 16.568914956011728vw;
        padding-top: 24.926686217008797vw;
    }
    .sync_centerthumb_txt {
        width: 33.235581622678396vw;
    }
    .sync_centerthumb_txt .thumb_caption_inner {
        height: 16.715542521994134vw;
    }
    .sync_centerthumb_txt .thumb_caption_inner>p {
        font-size: 1.7595307917888565vw;
        line-height: 2.541544477028348vw;
        overflow: hidden;
        -webkit-line-clamp: 5;
        height: 13.038729227761485vw;
    }
    .cta_arrow_animation>div,
    .cta_arrow_animation>p {
        font-size: 1.7595307917888565vw;
        line-height: initial;
    }
    .sync_rightthumb {
        width: 16.715542521994134vw;
        padding-top: 33.31vw;
    }
    .syns_slider_arrow {
        width: 8.308895405669599vw;
        padding: 2.4437927663734116vw 0 0;
        margin: 0;
    }
    .syns_slider_arrow .swiper-button-next,
    .syns_slider_arrow .swiper-button-next:after,
    .syns_slider_arrow .swiper-button-prev,
    .syns_slider_arrow .swiper-button-prev:after {
        width: 3.3235581622678394vw;
        height: 3.3235581622678394vw;
    }
    .lottie_banner_press {
        top: calc(var(--gridcell) * 1.93);
    }
    .svg_shape_size {
        height: calc(var(--gridcell) * 8);
    }
    .press_hold svg {
        width: 100%;
        height: 100%;
        z-index: 10;
    }
    .press_hold p {
        font-size: 1.270772238514174vw;
        line-height: 1.466275659824047vw;
        width: inherit;
    }
    .press_hold {
        bottom: 3.4213098729227758vw;
        right: 12.316715542521994vw;
        width: 8.797653958944283vw;
        height: 8.797653958944283vw;
    }
    .svg_shape_size h1 {
        font-size: 10.263929618768328vw;
    }
    .circle_banner_dashline {
        width: 17.10654936461388vw;
        height: 0.9775171065493646vw;
    }
    .overview_circle_wpr {
        padding: 60px 20px;
    }
    .story_cell_container {
        padding: 0 8.406647116324535vw 0 0;
    }
    .story_cell_container h4.filter_heading {
        width: 16.81329423264907vw;
        text-align: right;
        font-size: 6.8426197458455515vw;
        padding-right: 8px;
        bottom: -1.270772238514174vw;
    }
    .filter_tabs_btn {
        width: calc(100% - 16.715542521994134vw);
    }
    .filter_tabs_btn li.nav-item:last-child a {
        border: 0;
    }
    .filter_tabs_btn li.nav-item a {
        font-size: 2.541544477028348vw;
        height: 8.113391984359726vw;
    }
    .filter_tabs_btn li.nav-item a:after {
        bottom: -0.09775171065493646vw;
    }
    .tabs_result_wrp {
        padding: 3.4213098729227758vw 0 0;
    }
    .tags_wrp {
        width: 100%;
        display: flex;
    }
    .tags_heading {
        display: block;
        height: initial;
        width: 16.81329423264907vw;
        font-size: 6.8426197458455515vw;
        padding: 0 8px 0 0;
        text-align: right;
    }
    .tags_heading h4 {
        line-height: initial;
        margin: 0;
        padding: 5.376344086021505vw 0 0;
    }
    .tags_heading span {
        font-size: 1.5640273704789833vw;
        margin: 0.9775171065493646vw 0 0;
    }
    .circle_svg_tag {
        display: flex;
        flex-wrap: nowrap;
        padding: 0;
        overflow-y: hidden;
        width: calc(100% - 16.715542521994134vw);
    }
    .svg_tags_item {
        min-width: 12.434017595307918vw;
        height: initial;
    }
    .tabs_result_inner {
        display: block;
    }
    .svg_tags_item svg text {
        font-size: 1.2218963831867058vw;
    }
    .story_rst_container {
        padding: 3.0303030303030303vw 0 0;
        width: 81.95%;
        margin: 0 0 0 auto;
    }
    .tags_category_heading h4,
    .tags_heading h4 {
        font-size: 6.8426197458455515vw;
    }
    .story_card_wpr {
        padding-top: 0.39100684261974583vw;
    }
    .story_post_category {
        font-size: 1.3685239491691104vw;
        padding: 1.7595307917888565vw 1.3685239491691104vw 0;
    }
    .story_post_heading {
        padding: 1.1730205278592376vw 1.3685239491691104vw 0;
        line-height: 2.4437927663734116vw;
        height: 8.308895405669599vw;
        font-size: 1.9550342130987293vw;
        margin: 0 0 0.9775171065493646vw;
    }
    .story_sort_desc {
        font-size: 1.7595307917888565vw;
        line-height: 2.541544477028348vw;
        height: 5.278592375366569vw;
        margin: 0 0 4.398826979472141vw;
        padding: 0 1.3685239491691104vw;
    }
    .story_postdate {
        font-size: 1.466275659824047vw;
        padding: 0 1.3685239491691104vw 1.466275659824047vw;
        line-height: 1.270772238514174vw;
    }
    .loadmore_cta {
        height: 8.406647116324535vw;
    }
    .loadmore_cta span,
    .popup_description h6 {
        font-size: 16px;
    }
    .loadmore_cta .svg_border {
        width: 8.308895405669599vw;
    }
    .popup_blogslider_wrp {
        padding: 20px 0 0;
    }
    .sidebar_spacebar_wrp {
        display: block;
    }
    .pi_sec_wrp .sidebar_spacebar_wrp {
        display: flex;
    }
    .right_spacebar_popup {
        padding: 20px 0 0 45px;
    }
    .left_sidebar_popup,
    .right_spacebar_popup {
        width: calc(100%);
    }
    .popupslider_sidebarheading h4 {
        font-size: 36px;
        line-height: 36px;
        display: block;
    }
    .popupslider_sidebarheading h4 label span {
        width: 35px;
        margin: -6px 10px 0 0;
        height: 4.2px;
    }
    .popup_slider_nav {
        width: 83.5vw;
    }
    .popup_slider_close {
        top: 20px;
        z-index: 1;
        right: 20px;
    }
    .peoper_overview {
        padding: 60px 20px 0;
    }
    .strokeline_people_space1 {
        padding: 22px 0 0;
    }
    .top_faculty_wrp {
        padding: 0 0 5.865102639296188vw;
    }
    .profilecard_mdl_people {
        flex-wrap: wrap;
    }
    .profilecard_mdl_people .profilecard_item {
        width: 40.01%;
        margin-top: 4.398826979472141vw;
    }
    .faculty_tabs_wrp,
    .profilecard_mdl_people {
        width: calc(100% - 16.617790811339198vw);
        margin: 0 auto;
    }
    .faculty_tabs_button li.nav-item {
        width: 25%;
        padding: 0;
    }
    .faculty_tabs_button li.nav-item a {
        height: 8.211143695014663vw;
        border-right: 1px solid #bebcbd80;
        font-size: 2.346041055718475vw;
        background: #fff;
        padding: 0;
    }
    .profilecard_inside_tab .profilecard_item {
        width: 40.01%;
        margin: 8.4vw 0 0;
    }
    .profilecard_inside_tab {
        flex-wrap: wrap;
        padding-bottom: 8.406647116324535vw;
    }
    .profilecard_top_heading {
        padding: 1.3685239491691104vw;
    }
    .profilecard_title h5 {
        font-size: 2.541544477028348vw;
        margin: 0 0 0.5865102639296188vw;
    }
    .profilecard_title h3 {
        font-size: 2.541544477028348vw;
        margin: 0 0 0.5865102639296188vw;
    }
    .profilecard_title span {
        font-size: 1.466275659824047vw;
        line-height: 1.9550342130987293vw;
    }
    .open_popup {
        width: 2.346041055718475vw;
        height: 2.346041055718475vw;
    }
    .profilecard_profile_img {
        padding-top: 3.3235581622678394vw;
    }
    .profilecard_inside_tab .profilecard_profile_img picture img {
        height: 24.82893450635386vw;
        max-width: 100%; 
    }
    .popup_short_view {
        height: 23.75366568914956vw;
        font-size: 15px;
        line-height: 24px;
    }
    .popup_short_view a,
    .profile_accordian_info a.explore_more_cta {
        font-size: 13px;
    }
    .people_career_heading h4 {
        font-size: 48px;
        line-height: 48px;
    }
    .people_career_heading h4.title_line_anim .fix_title_dash,
    h4.title_line_anim .animate_title {
        height: 5px;
        margin: 0 5px 8px;
    }
    .people_crr_sidebar_grp {
        padding-bottom: 70px;
    }
    .corecouncil_linetext {
        width: 100%;
        padding: 14px 0 12px;
    }
    .leftbar_line_text h5 {
        font-size: 60.5px;
        line-height: 52px;
    }
    .header_popup {
        padding: 5px 30px 14px;
    }
    .profile_name h5,
    .profile_name span {
        font-size: 24px;
        line-height: initial;
    }
    .profile_name span {
        font-size: 16px;
    }
    .popup_description img {
        width: 200px;
    }
    .popup_description img+p,
    .popup_description p+p {
        margin: 10px 0 0;
    }
    .popup_description p,
    .zigzag_item p {
        font-size: 15px;
        line-height: 26px;
    }
    .popup_description a,
    .popup_description ul li {
        font-size: 15px;
        line-height: initial;
    }
    .footer_popup {
        height: 50px;
    }
    .more_profile_link a {
        font-size: 22px;
    }
    .inception_wrp,
    .our_pursuip_wrp {
        padding: 0 20px;
        overflow: hidden;
    }
    .inception_wrp .section_edge_left,
    .our_pursuip_wrp .section_edge_left {
        padding: 5.865102639296188vw 0 0;
        height: 100%;
        border-width: 0 1px;
        border-style: solid;
    }
    .inception_wrp .section_edge_left {
        border-color: #70707080;
    }
    .our_pursuip_wrp .section_edge_left {
        border-color: #a5250d;
    }
    .inception_wrp .section_edge_left .sidebar_spacebar_wrp .right_spacebar,
    .our_pursuip_wrp .section_edge_left .sidebar_spacebar_wrp .right_spacebar {
        width: 76%;
    }
    .inception_wrp .lottie_inception lottie-player,
    .our_pursuip_wrp .lottie_inception lottie-player {
        left: 55vw;
    }
    .zigzag_flex {
        display: block;
        width: 60%;
        padding: 10px 0 0;
    }
    .zigzag_flex .zigzag_item {
        padding: 1.3685239491691104vw 0 0 !important;
        width: 100%;
    }
    .inception_wrp .abt_common_text h4,
    .our_pursuip_wrp .abt_common_text h4 {
        font-size: 3.1280547409579667vw;
        line-height: 4.496578690127078vw;
    }
    .zigzag_item p {
        font-size: 18px;
    }
    .pillars_wrp {
        padding: 0 20px;
        overflow: hidden;
    }
    .flower_lottie {
        top: 19.550342130987293vw;
    }
    .pillars_inner {
        padding: 11vw 0 9vw;
        border-width: 0 1px;
        border-style: solid;
        border-color: rgba(33, 26, 81, 0.4);
    }
    .pillars_info_wrp {
        padding: 3.464129vw 0 0 14.622255vw;
        width: 60vw;
    }
    .Pillter_top_title h4,
    .Pillter_top_title h5 {
        font-size: 3.519061583577713vw;
        line-height: 5.083088954056696vw;
        padding: 0 0 0 4.887585532746823vw;
    }
    .Pillter_top_title h5 {
        font-size: 4.496578690127078vw;
        line-height: 4.105571847507331vw;
    }
    .pillars_info_item h5 {
        font-size: 2.7370478983382207vw;
        line-height: 5.865102639296188vw;
    }
    .pillars_info_item p {
        font-size: 2.1505376344086025vw;
        line-height: 2.932551319648094vw;
    }
    .five_point_wrp {
        padding: 0 20px;
    }
    .five_point_wrp .section_edge_left {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 75px 0 0;
    }
    .section_activated .sticky_sidebar {
        position: static;
        top: initial;
    }
    .sticky_heading_star h4 {
        font-size: 60px;
        line-height: 60px;
        margin: 0;
    }
    .sticky_heading_star {
        padding: 97px 0 0;
        width: 245px;
    }
    .five_lottie {
        width: 140px;
        right: -5px;
    }
    .commoncaption_fivepoint {
        padding: 46px 0 0;
    }
    .fivestar_bottmline_animation {
        padding: 0 20px;
    }
    .bottomtxt_anima_abt_spc {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 65px 0;
    }
    .bottomline_animation_inner span {
        font-size: 28px;
        line-height: 52px;
    }
    .bottomline_animation_inner span.lineanimation_text {
        background-size: 0 3px;
    }
    .section_activated .bottomline_animation_inner span.lineanimation_text {
        background-size: 100% 3px;
    }
    .mega_accor_wrp {
        padding: 0;
        border: 0;
    }
    .custom_accordian_inner {
        border-width: 0 1px;
        border-color: #e0e0e0;
        border-style: solid;
        padding: 22px 0 0;
    }
    .mega_accor_item {
        padding: 1.9550342130987293vw 20px 2.4437927663734116vw;
    }
    .custom_accordian_item .mega_accor_content,
    .mega_accor_heading {
        padding: 0;
    }
    .custom_accordian_item.active .mega_accor_heading {
        padding: 0 0 1.9550342130987293vw;
    }
    .accordian_heading>div {
        padding-right: 9vw;
    }
    .mega_accor_heading h4 {
        font-size: 6.256109481915933vw;
        line-height: 9.775171065493646vw;
    }
    .accordian_content p,
    .mega_accor_heading p {
        font-size: 18px;
        line-height: 24px;
    }
    .accordian_content p {
        margin-top: 16px;
    }
    .core_philosophy_wrp {
        padding: 0 20px;
    }
    .core_philosophy_wrp .section_edge,
    .partnership_wrp .section_edge {
        border-width: 0 1px;
        border-style: solid;
        border-color: #70707080;
        padding: 80px 0 100px;
    }
    .fullwith_sec_title h4 {
        font-size: 6.588579795021962vw;
        line-height: 6.661786237188873vw;
    }
    .core_philosophy_wrp .abt_common_text h4 {
        font-size: 36px;
        line-height: 52px;
    }
    .fullwith_sec_title h6 {
        font-size: 26px;
    }
    .vertical_textslider_inner {
        padding: 0 8.406647116324535vw;
    }
    .textslider_center {
        padding: calc(var(--gridcell) * 2.58) 0;
    }
    .textslider_center h6 {
        font-size: 2.932551319648094vw;
        line-height: initial;
    }
    .vert_txtslider_container {
        height: 12vw;
    }
    .vert_txtslider_item h4 {
        font-size: 7.75vw;
        line-height: 8.5vw;
    }
    .partnership_wrp {
        padding: 0 20px;
    }
    .partnership_wrp .section_edge {
        border-color: #e0e0e0;
        padding: 80px 0 0;
    }
    .abt_common_aliiances {
        padding: 58px 0 0;
        width: 100%;
        margin: 0 0 0 auto;
    }
    .abt_common_aliiances h5 {
        font-size: 30px;
        line-height: 38px;
    }
    .abt_common_aliiances p,
    .mbl_commoncaption_partnership p {
        font-size: 22px;
        line-height: 38px;
    }
    .commoncaption_partnership h5 {
        width: 76%;
        font-size: 28px;
        line-height: 24px;
    }
    .common_caption h5,
    .mbl_commoncaption_partnership h5 {
        font-size: 30px;
        line-height: 38px;
    }
    .brand_text_wrp {
        padding: 16px 0 60px;
        border-width: 0 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
    }
    .logo_and_content {
        padding-top: 15px;
    }
    .logo_and_content div.left_logo {
        width: 24%;
    }
    .right_txt_copy {
        width: 76%;
    }
    .logo_grid_wrp {
        width: 100%;
    }
    .logo_grid_wrp div.logo_grid_item {
        width: 23%;
    }
    .howweteach_lottie_banner {
        top: calc(var(--gridcell) * 2.5);
    }
    .howweteach_lottie_banner lottie-player {
        width: 58vw;
    }
    .pi_sec_wrp {
        padding: 0 20px;
    }
    .marquee_right_mdltext .section_edge,
    .pi_sec_wrp .section_edge {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 94px 0 52px;
    }
    .pi_text_wrp {
        padding: 0 0 20px;
    }
    .hwt_pissec_content.common_caption h5 {
        padding: 60px 0 0;
    }
    .pi_text_wrp lottie-player {
        width: 100px;
    }
    .pi_text_wrp p,
    .pi_text_wrp span {
        font-size: 46px;
        margin-bottom: 16px;
    }
    .marquee_right_mdltext,
    .pedagogy_mdl_wrp {
        padding: 0 20px;
    }
    .pedagogy_mdl_wrp .section_edge,
    .pedagogy_readmore_sec .section_edge {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 115px 0 0;
    }
    .pedagogy_mdl_page {
        overflow: hidden;
        width: 58.7%;
        padding: 0;
    }
    .pedagogy_mdl_page h4 {
        padding-bottom: 10px;
        line-height: initial;
        font-size: 60px;
    }
    .pedagogy_mdl_page p {
        margin: 0;
    }
    .pedagogy_readmore_sec {
        padding: 0 20px;
    }
    .pedagogy_readmore_sec .section_edge {
        padding: 50px 0 75px;
    }
    .left_sidebar.sticky_left_sidebar {
        position: static;
    }
    .slidebar_lottie {
        width: 26%;
        margin-left: 24%;
        padding: 0 0 10px;
    }
    .readmore_item h4 {
        font-size: 30px;
        line-height: 22px;
    }
    .pedagogy_mdl_page p,
    .readmore_item p {
        font-size: 20px;
        line-height: 32px;
    }
    a.readmore_text_cta {
        font-size: 16px;
    }
    .mbl_lft_rght_brder {
        position: absolute;
        width: calc(100% - 40px);
        margin: 0 auto;
        height: 100%;
        left: 0;
        z-index: -1;
        right: 0;
        top: 0;
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
    }
    .quotes_slider_gap:after,
    .quotes_slider_gap:before {
        display: none;
    }
    .quotes_slider_gap {
        padding: 70px 0;
    }
    .quotes_pagination {
        width: 30px;
        font-size: 20px;
    }
    .quotes_slide_text span.author_txt {
        font-size: 19px;
    }
    .quotes_btn_next,
    .quotes_btn_prev {
        width: 30px;
        height: 30px;
    }
    .quotes_btn_wrp {
        width: 80px;
    }
    .quotes_btn_next:after,
    .quotes_btn_prev:after {
        width: 100%;
        height: 100%;
    }
    .continuous_Learning_wrp {
        padding: 0 20px;
    }
    .continuous_Learning_wrp .section_edge,
    .tabs_accordian_wrp .section_edge {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 94px 0 92px;
    }
    .career_common_wrp .section_edge .left_sidebar,
    .continuous_Learning_wrp .section_edge .left_sidebar,
    .studio_section .section_edge .left_sidebar {
        padding-bottom: 18px;
    }
    .small_text_wrp p {
        font-size: 14px;
        line-height: 17px;
    }
    .progromme_textrail_gap {
        padding-top: 50px;
    }
    .textrail_bottom {
        padding-bottom: 40px;
    }
    .tabssection_title {
        padding: 0;
    }
    .tabs_accordian_wrp {
        padding: 0 20px;
        border-top: 1px solid #e0e0e0;
    }
    .tabs_accordian_wrp .section_edge {
        padding: 82px 0 0;
        background: #fff;
    }
    .custom_tabs_inner {
        padding-top: 28px;
    }
    .custom_accordian_inner {
        border-left: 0;
        border-right: 0;
        padding-top: 0;
    }
    .navtabs_cta li:last-child {
        border-right: 0;
    }
    .navtabs_cta li a {
        height: 70px;
        font-size: 32px;
        line-height: 62px;
        display: block;
    }
    .custom_accordian_item {
        padding: 25px 20px 15px;
    }
    .accordian_heading h4 {
        font-size: 28px;
        margin-bottom: 8px;
        line-height: initial;
    }
    .accordian_heading h3 {
        font-size: 28px;
        margin-bottom: 8px;
        line-height: initial;
    }
    .accordian_heading p {
        font-size: 18px;
        line-height: 24px;
        padding: 0;
    }
    .plusminus_anim {
        width: 20px;
        height: 20px;
        top: 8px;
        right: 0;
    }
    .accordian_content {
        padding: 22px 0 0;
        width: 100%;
    }
    .bottomline_animation_wrp {
        padding: 0 20px;
        border-style: solid;
        border-width: 1px 0 0;
        border-color: #bebcbd80;
    }
    .bottomline_animation_wrp .section_edge,
    .career_common_wrp .section_edge {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 60px 0 0;
    }
    .bottomline_gap {
        padding: 50px 0 35px;
    }
    .gridcell_slider_size {
        padding: 8.308895405669599vw 0 0;
    }
    .gridcell_slide_text_item {
        padding: 2.932551319648094vw 0 0;
        height: 16.617790811339198vw;
    }
    .gridcell_slide_item picture img,
    .profilecard_profile_img picture img {
        height: 41.544477028348vw;
        object-fit: cover;
        max-width: 100%;
        aspect-ratio: 251 / 141;
    }
    .gridcell_slide_text_item p {
        font-size: 1.7595307917888565vw;
        line-height: 2.7370478983382207vw;
    }
    .grid_sldr_pagination_wrp {
        width: 8.211143695014663vw;
        height: 3.4213098729227758vw;
        top: 2.4437927663734116vw;
    }
    .gridcell_btn_next,
    .gridcell_btn_prev {
        width: 30px;
        height: 30px;
    }
    .success_story_inner {
        padding-bottom: 90px;
    }
    .pi_indus_wrp:after,
    .success_story_wrp:after {
        content: "";
        width: calc(100% - 40px);
        position: absolute;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
    }
    .success_section_heading img {
        width: 8.081736vw;
        max-width: 100%;
        height: auto; 
    }
    .success_section_heading h4 {
        padding: 0 0 0 39.88vw;
        font-size: 6.054490413723512vw;
        line-height: initial;
    }
    .story_slider_inner {
        padding-top: 50px;
    }
    .blg_slider_gap {
        padding: 15px 0 0;
    }
    .success_inside_top h5 {
        line-height: initial;
        margin: 0;
    }
    .success_inside_top h3 {
        line-height: initial;
        margin: 0;
    }
    .success_inside_top span {
        display: block;
        line-height: initial;
    }
    .success_inside_info_part span {
        margin-bottom: 0;
        line-height: initial;
    }
    .success_inside_info_part p,
    .success_inside_year {
        line-height: initial;
    }
    .success_pagination {
        font-size: 18px;
        line-height: initial;
    }
    .profile_pagination_nav {
        width: 76.9vw;
    }
    .career_common_wrp {
        padding: 0 20px;
    }
    .career_common_wrp .section_edge {
        padding: 60px 0;
    }
    .studio_section,
    .studio_section .section_edge {
        padding: 0 20px;
        border-width: 0;
        border-style: solid;
        border-color: #e0e0e0;
    }
    .studio_section .section_edge {
        border-width: 0 1px;
        padding: 100px 0 60px;
    }
    .profilecard_hold {
        padding: 0 0 1.5640273704789833vw;
        position: relative;
        width: calc(100% - 16.617790811339198vw);
        margin: 0 auto;
    }
    .profilecard_sec_heading {
        padding: 13.098729227761485vw 0 0;
    }
    .profilecard_sec_heading .sidebarheading h4 {
        font-size: 4.105571847507331vw;
        line-height: 3.519061583577713vw;
        display: block;
    }
    .profilecard_sec_heading .sidebarheading p {
        font-size: 4.105571847507331vw;
        line-height: 3.519061583577713vw;
        display: block;
    }
    .profilecard_alignment {
        padding: 16.5vw 0 8.45vw;
        flex-wrap: wrap;
    }
    .faculty_card_items .profilecard_item {
        width: 40.01%;
        margin: 8.4vw 0 0;
    }
    .course_leader {
        position: absolute;
        top: 14.1vw;
        padding: 0;
        right: 5.7673509286412505vw;
        margin: 0;
    }
    .course_leader h4 {
        font-size: 6.8426197458455515vw;
    }
    .course_leader p {
        font-size: 6.8426197458455515vw !important;
    }
    .profilecard_profile_img picture img {
        height: 24.92893450635386vw;
    }
    .profile_accordian_wrp {
        padding: 0;
    }
    .profile_accordian_inner {
        width: 100%;
    }
    .profile_accordian_img {
        width: 40%;
    }
    .profile_accordian_img img {
        height: 33.137829912023456vw;
        max-width: 100%; 
    }
    .clickaccordian,
    .profile_accordian_item,
    .profile_accordian_title {
        height: 8.328445747800586vw;
    }
    .profile_accordian_title h5 {
        font-size: 2.4437927663734116vw;
        line-height: initial;
    }
    .profile_accordian_title h3 {
        font-size: 2.4437927663734116vw;
        line-height: initial;
    }
    .profile_accordian_title span.faculty_profile {
        font-size: 1.7595307917888565vw;
        line-height: initial;
    }
    .profile_accordian_info {
        padding: 1.466275659824047vw 0 0;
    }
    .inline_contact p,
    .profile_accordian_info p {
        font-size: 16px;
        line-height: 23px;
    }
    .blog_slider_wrp .section_edge {
        padding: 60px 0 0;
    }
    .applicants_prc_wrp,
    .content_page {
        padding: 0 20px;
    }
    .applicants_prc_wrp .section_edge {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 70px 0 66px;
    }
    .applicants_prc_wrp .section_edge .left_sidebar,
    .content_page .section_edge .left_sidebar {
        padding-bottom: 28px;
    }
    .content_page .section_edge {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 16.617790811339198vw 0 66px;
    }
    .common_caption p br,
    .corecouncil_linetext {
        display: none;
    }
    .cta_group {
        padding-top: 40px;
    }
    .fee_str_group {
        padding-top: 12px;
    }
    .custom_cta_btn {
        font-size: 16px;
        padding: 0 0 0 10px;
        height: 55px;
        width: 302px;
        line-height: initial;
    }
    .fee_str_group a {
        margin-top: 14px;
    }
    .custom_cta_btn span {
        width: 55px;
        margin: 0;
    }
    .custom_cta_btn span svg {
        width: 22px;
        height: 22px;
    }
    .tabs_adms_pro_elig {
        padding: 0 20px;
    }
    .tabs_adms_pro_elig .section_edge {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 92px 0 0;
        background: #fff;
    }
    .tabs_body {
        padding: 44px 0 18px;
    }
    ul.dashleft {
        padding: 22px 0 0;
        margin: 0;
    }
    ul.dashleft li {
        font-size: 24px;
        line-height: 36px;
        padding-left: 20px;
    }
    ul.dashleft li:before {
        width: 16px;
        top: 18px;
    }
    ul.dashleft+h5 {
        padding-top: 30px;
    }
    .blg_dtl_content h5+ul,
    h5+ul.disc {
        padding: 10px 0 0;
    }
    .blg_dtl_content ol li,
    .blg_dtl_content ul li,
    ul.disc li {
        padding-bottom: 10px;
        font-size: 16px;
        line-height: 23px;
        padding-left: 13px;
    }
    .blg_dtl_content ul li:before,
    ul.disc li:before {
        top: 11px;
        width: 5px !important;
        height: 5px !important;
    }
    .grid_content_wrp {
        display: none;
    }
    .layoutchange_accordian_grid>div .custom_accordian_inner {
        padding: 0;
        border-width: 1px 0 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
    }
    .layoutchange_accordian_grid>div .custom_accordian_inner .custom_accordian_item {
        padding: 18px 20px 5px;
    }
    .scholarship_wrp,
    .scholarship_wrp .section_edge {
        padding: 0 20px;
        border-width: 1px 0;
        border-style: solid;
        border-color: #e0e0e0;
    }
    .scholarship_wrp .section_edge {
        border-width: 0 1px;
        padding: 100px 0 50px;
    }
    .scholarship_wrp .section_edge .left_sidebar {
        padding-bottom: 24px;
    }
    .fee_str_group+h5 {
        padding-top: 62px;
    }
    .common_caption p+h5 {
        padding: 30px 0 0;
    }
    .common_caption h5+p {
        padding-top: 9px;
    }
    .inline_contact {
        padding-top: 20px;
        display: block;
    }
    .inline_contact div {
        width: 100%;
        padding-top: 6px;
    }
    .transfer_wrp {
        padding: 0 20px;
    }
    .transfer_wrp .section_edge {
        padding: 0;
    }
    .transfer_wrp .section_edge:after {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: -1;
        top: 0;
    }
    .admissions_btm_lottie {
        top: 11.534701857282501vw;
        left: 0;
        right: 0;
        z-index: 0;
    }
    .tranferiiad_lotte_border {
        padding: 55.5229716520039vw 0 0;
        border: 0;
    }
    .transfer_rightbar_admsn {
        padding: 20px 0 100px;
    }
    .entrance_exm_sec {
        padding: 0 20px;
    }
    .entrance_exm_sec .section_edge {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 75px 0 32px;
    }
    .entrance_exm_sec .section_edge .left_sidebar {
        padding-bottom: 18px;
    }
    .table_wrp {
        padding: 0 20px 40px;
    }
    .custom_table tr td:first-child,
    .custom_table tr td:last-child {
        display: none;
    }
    .custom_table thead tr td {
        font-size: 18px;
        padding: 8px;
        width: 96px !important;
    }
    .custom_table tbody tr td {
        font-size: 18px;
        padding: 10px;
    }
    .custom_dropdown button {
        font-size: 20px;
    }
    .lateral_stroke_admsn {
        display: block;
        position: absolute;
        top: 30.69403714565005vw;
    }
    .life_iiad_overview {
        padding: 0 20px;
        border-top: 1px solid #bebcbd80;
    }
    .campus_wrp .section_edge,
    .life_iiad_overview .section_edge {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 68px 0 78px;
    }
    .accommodation_wrp,
    .campus_wrp {
        padding: 0 20px;
    }
    .campus_wrp .section_edge {
        padding: 94px 0 0;
    }
    .accommodation_wrp .section_edge .left_sidebar,
    .campus_wrp .section_edge .left_sidebar,
    .curriculars_wrp .section_edge .left_sidebar {
        padding: 0 0 18px;
    }
    .accommodation_wrp .section_edge,
    .annual_evt_wrp .section_edge {
        padding: 80px 0 60px;
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
    }
    .coho_kit_group,
    .dotsslider_wrp {
        padding-top: 40px;
    }
    .annual_evt_wrp,
    .curriculars_wrp {
        padding: 0 20px;
    }
    .annual_evt_wrp .section_edge {
        padding: 74px 0 60px;
    }
    .corecouncil_stroke_wrp .section_edge,
    .curriculars_wrp .section_edge {
        padding: 60px 0 52px;
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
    }
    .corecouncil_stroke_lifeiiad {
        display: block;
    }
    .corecouncil_stroke_wrp {
        padding: 0 20px;
    }
    .corecouncil_stroke_wrp .section_edge {
        padding: 60px 0;
    }
    .corecouncil_stroke_wrp .left_sidebar {
        padding: 0 0 18px;
        width: 50%;
        margin: 0 0 0 auto;
    }
    .syncslide_top_wrp {
        padding-top: 15vw;
    }
    .lifeiiad_syncslider_inner {
        padding: 11.76vw var(--zerounit) 16.485vw 0;
    }
    .syncslider_large_size {
        width: 83.4vw;
    }
    .fixslide_content {
        padding: 4.887585532746823vw 0 0;
    }
    .fixslide_content div {
        font-size: 1.9550342130987293vw;
        padding-bottom: 1.5640273704789833vw;
    }
    .fixslide_content div:nth-child(2) {
        width: 25vw;
    }
    .lifeiiad_sync_backnext_cta {
        margin: 0 16.8vw 0 0;
        width: 8.2vw;
        padding-top: 2.75vw;
    }
    .lifeiiad_sync_backnext_cta .swiper-button-next,
    .lifeiiad_sync_backnext_cta .swiper-button-prev {
        width: 3.3235581622678394vw;
        height: 3.3235581622678394vw;
    }
    .lifeiiad_sync_backnext_cta .swiper-button-next:after,
    .lifeiiad_sync_backnext_cta .swiper-button-prev:after {
        width: 100%;
        height: 100%;
    }
    .marquee_top_sortview,
    .off_campus_wrp,
    .student_srv_wrp {
        padding: 0 20px;
    }
    .marquee_top_sortview .section_edge,
    .off_campus_wrp .section_edge {
        padding: 94px 0 50px;
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
    }
    .alimni_campus_wrp .section_edge .left_sidebar,
    .marquee_top_sortview .section_edge .left_sidebar,
    .off_campus_wrp .section_edge .left_sidebar,
    .student_srv_wrp .section_edge .left_sidebar {
        padding-bottom: 18px;
    }
    .marquee_top_sortview .section_edge {
        padding: 54px 0 50px;
    }
    .alimni_campus_wrp .section_edge,
    .student_srv_wrp .section_edge {
        padding: 92px 0 0;
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
    }
    .alimni_campus_wrp {
        padding: 0 20px;
        border-bottom: 1px solid #e0e0e0;
    }
    .alimni_campus_wrp .section_edge {
        padding: 72px 0 60px;
    }
    .leftside_desc_contactinfo {
        padding-right: 30px;
    }
    .leftside_desc_contactinfo,
    .rightside_contactinfo {
        width: calc(var(--gridcell) * 5);
    }
    .numberinfo_item>p {
        font-size: 12px;
        line-height: initial;
    }
    .numberinfo_item>a,
    .select_dropdown_hold select {
        font-size: 16px;
        line-height: initial;
    }
    .locateus_map a,
    .social_list_link li a {
        font-size: 15px;
        line-height: initial;
    }
    .locateus_map a {
        font-size: 12px;
    }
    .contact_form_left {
        width: 59.8%;
    }
    .contact_form_right {
        width: 40%;
    }
    .contact_form_inner {
        width: calc(100% - 16.5vw);
    }
    .form_papper_wrp .npf_wgts {
        height: 55vw;
    }
    .location_map_inner {
        width: calc(100% - 16.715542521994134vw);
    }
    .location_map_heading {
        height: 8.306647116324535vw;
    }
    .iiad_industry_overview {
        padding: 0 20px;
        border-top: 1px solid #e0e0e0;
    }
    .iiad_industry_overview .section_edge {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 70px 0 0;
    }
    .iiad_industry_overview .section_edge .left_sidebar {
        padding-bottom: 28px;
    }
    .redtouch_cellline_first,
    .strokeline_iiadindustry_space1,
    .stroketext_anim_wrp {
        padding: 0 20px;
    }
    .strokeline_iiadindustry_space1 .stroketext_anim_inner,
    .stroketext_anim_wrp .stroketext_anim_inner {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 30px 0 20px;
    }
    .stroketext_anim_wrp .stroketext_anim_inner {
        padding: 52px 0 18px;
    }
    .strokeline_iiadindustry_space2 .stroketext_anim_inner {
        padding: 40px 0 78px;
    }
    .pi_indus_wrp .section_edge .sidebar_spacebar_wrp,
    .redtouch_cellline_first .section_edge {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 0;
    }
    .redtouch_cellline_first .readmore_item {
        padding-bottom: 24px;
    }
    .redtouch_cellline_first .readmore_inner {
        width: 100%;
    }
    .redtouch_cellline_first .readmore_item h4 {
        line-height: 32px;
        margin-top: -7px;
    }
    .syncslider_iiadindusty {
        padding-bottom: 36px;
    }
    .pi_indus_wrp {
        padding: 0;
        border-top: 0;
    }
    .pi_indus_wrp .section_edge .sidebar_spacebar_wrp {
        padding: 40px 0 0;
    }
    .pi_indus_wrp .edge_left_ss {
        padding: 0 20px;
    }
    .leftbar_pi_icon img {
        width: 96px;
    }
    .pi_indus_wrp .section_edge .left_sidebar {
        padding-bottom: 36px;
    }
    .pi_indus_wrp .corecouncil_linetext {
        display: block;
    }
    .select_dropdown_hold select {
        padding: 0 0 0 10px;
        height: 55px;
        width: 302px;
        background-position: right 20px center, calc(100% - 55px) 0;
        background-size: 15px 8px, 0.8px 100%;
    }
    .select_dropdown_gap {
        padding: 50px 0 0;
    }
    .success_story_slider_inds {
        padding-bottom: 90px;
    }
    .brandlogo_content_wrp,
    .career_cell_wrp {
        padding: 0 20px;
    }
    .career_cell_wrp .section_edge {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 92px 0 80px;
    }
    .brandlogo_content_wrp .section_edge .left_sidebar,
    .career_cell_wrp .section_edge .left_sidebar {
        padding-bottom: 18px;
    }
    .brandlogo_content_wrp .section_edge,
    .industry_speak_wrp .speak_indus_edge_space .section_edge {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 80px 0 50px;
    }
    .brandlogo_content_wrp .section_edge_brandlogo {
        padding: 50px 0;
        border-width: 1px 1px 0;
        border-style: solid;
        border-color: #e0e0e0;
        background: #fff;
    }
    .brandlogo_grid_wrp {
        width: 100%;
        padding-top: 0;
        background: #fff;
    }
    .brandlogo_container .brandlogo_wrapper {
        padding-bottom: 50px;
    }
    .brandlogo_item_inner img,
    .leftbar_pi_icon img {
        max-width: 100%;
        height: auto; 
    }
    .nav_pagination_brandlog {
        width: 84%;
    }
    .brandlogo_pagination {
        padding: 0;
        font-size: 18px;
        line-height: initial;
    }
    .brand_leftright_nav {
        width: 96px;
    }
    .brand_success_next,
    .brand_success_prev {
        width: 30px;
        height: 30px;
    }
    .industry_speak_wrp {
        padding: 0 20px;
    }
    .industry_speak_wrp>.section_edge,
    .speak_indus_edge_space {
        padding: 0;
    }
    .industry_speak_wrp .corecouncil_linetext {
        display: block;
        padding: 0;
    }
    .industry_speak_wrp .speak_indus_edge_space .section_edge {
        padding: 67px 0 48px;
    }
    .industry_speak_wrp .story_slider_inner {
        padding: 0;
    }
    .brandlogo_grid_aboutus {
        padding: 60px 0 80px;
        background: #fff;
    }
    .blogdetail_heading_wrp,
    .share_sortdesc_wrp {
        padding: 0 20px;
    }
    .blogdetail_heading_wrp .section_edge,
    .share_sortdesc_wrp .section_edge {
        padding: 60px 0 0;
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
    }
    .share_sortdesc_wrp .section_edge {
        padding: 40px 0 0;
    }
    .blogdetail_heading_wrp .left_sidebar {
        padding-bottom: 18px;
    }
    .post_info_item p {
        font-size: 20px;
        line-height: 26px;
        margin: 0;
    }
    .sidebar_dates_tags {
        padding: 10px 0 0;
    }
    .share_sortdesc_wrp .sidebar_spacebar_wrp {
        display: flex;
    }
    .share_sortdesc_wrp .sticky_leftbar {
        position: static;
        width: 100%;
        order: 1;
        padding: 40px 0 0;
    }
    .right_spacebar_blog {
        width: 100%;
        order: 0;
    }
    .gridcell_arrow_slider,
    .gridcell_slider_size {
        width: 100%;
    }
    .share_post {
        padding-bottom: 0;
    }
    .share_post p {
        font-size: 48px;
    }
    .share_post a {
        padding: 12px 0 0;
        font-size: 16px;
    }
    .blog_section_gap {
        padding: 40px 0 0;
    }
    .bottomline_animation_inner {
        width: 100%;
    }
    .breadcrum_blg_dtl,
    .grid_slider_blg_dtl .gridcell_slide_text_item p {
        padding: 0;
    }
    .slider_grid_hide_desk:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 0;
        bottom: 0;
        width: calc(100% - 40px);
        height: 100%;
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
    }
    .gridcell_slide_text_item p {
        width: 80%;
        padding: 0 0 0 20px;
    }
    .grid_sldr_pagination_wrp {
        right: 20px;
        width: 81px;
    }
    .grid_slider_blg_dtl:before {
        display: none;
    }
    .grid_slider_blg_dtl .grid_sldr_pagination_wrp {
        right: 0;
    }
    .notfound_wrapper {
        padding: 0 20px;
    }
    .notfound_inner h2 {
        font-size: 120px;
    }
    .notfound_inner h3 {
        font-size: 30px;
    }
    .notfound_inner p {
        font-size: 18px;
        width: 100%;
        max-width: 600px;
        min-width: 280px;
    }
    .gobal_searh_form form input.search_field {
        padding: 8px 12px 8px 15px;
    }
    .home-desi-cat,
    .postfigure {
        height: 23.264907135874875vw;
    }
    iframe.slider_frame {
        height: 21.309872922776147vw;
    }
    .postfigure_page {
        height: 21.79863147605083vw;
    }
    .about_banner_caption h2 span:nth-child(3) {
        width: 7%;
    }
    .about_banner_caption h2 span:nth-child(6) {
        width: 12%;
    }
}

@media only screen and (max-width: 991px) {
    .by_year_heading {
        width: 100%;
    }
    .by_year_sortinfo {
        width: 49.8%;
    }
    .date_announcement {
        width: 100%;
    }
    .date_announcement_item {
        width: 50%;
    }
    .cta_pagination_nav {
        width: 100%;
    }
    .success_leftright_nav {
        width: 50%;
    }
    .popup_slider_nav .success_leftright_nav {
        width: 80px;
    }
    .filter_tabs_btn li.nav-item a {
        padding: 0;
    }
    .svg_tags_item svg text {
        font-size: 1.2613521695257317vw;
    }
    .popup_form_area .npf_wgts {
        padding: 26px 0 0;
    }
    .header_popup {
        height: 55px;
    }
    .homeenquiry_form_head span.popup_dashline {
        width: 30px;
        height: 2px;
        margin: 0 4px 3px 0;
    }
    .homeenquiry_form_head h4 {
        font-size: 22px;
        line-height: initial;
    }
    .homeenquiry_form_head p {
        font-size: 22px;
        line-height: initial;
    }
    .popup_short_view p {
        -webkit-line-clamp: 6;
    }
    .zigzag_flex {
        width: 100%;
    }
    .sticky_heading_star {
        padding: 79px 0 0;
        width: 50%;
    }
    .five_lottie {
        width: 115px;
        right: -1%;
    }
    .partnership_wrp .section_edge {
        padding: 68px 0 0;
    }
    .brand_text_wrp {
        padding: 70px 0 0;
    }
    .mbl_abt_sidebar_alliance {
        padding: 0;
        background: #fff;
    }
    .commoncaption_partnership {
        border-width: 1px 0 0;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 40px 0 46px;
    }
    .brand_text_wrp .mbl_abt_sidebar_alliance:last-child .commoncaption_partnership {
        border-width: 1px 0 0;
    }
    .commoncaption_partnership h5 {
        width: 100%;
        line-height: initial;
        padding: 0;
    }
    .commoncaption_partnership .logo_and_content {
        padding-top: 25px;
        justify-content: space-between;
    }
    .logo_and_content div.left_logo {
        width: 130px;
    }
    .right_txt_copy {
        width: calc(100%);
    }
    .left_logo+.right_txt_copy {
        width: calc(100% - 160px);
    }
    .logo_grid_wrp {
        background: #fff;
        padding-bottom: 80px;
    }
    .logo_grid_wrp div.logo_grid_item {
        width: 33.33%;
    }
    .pedagogy_mdl_page {
        width: 84.9%;
    }
    .slidebar_lottie {
        width: 280px;
        margin: 0 auto;
    }
    .progromme_textrail_gap {
        padding: 0 20px;
        border-top: 1px solid #bebcbd80;
    }
    .leftspace_section_wrp,
    .success_story_wrp .success_story_inner {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 62px 0 0;
    }
    .rightspace_item_right {
        width: 100%;
    }
    .success_story_inner {
        padding: 10.17716vw 0 8.8vw;
    }
    .success_story_wrp {
        padding: 0 20px;
    }
    .success_story_wrp .success_story_inner {
        padding: 90px 0;
    }
    .profile_pagination_nav {
        width: 100%;
    }
    .success_pagination {
        width: 50%;
        font-size: 18px;
    }
    .success_inside_top h5 {
        font-size: 22px;
        margin: 0;
    }
    .success_inside_top h3 {
        font-size: 22px;
        margin: 0;
    }
    .profilecard_alignment {
        padding: 16.5vw 0 8.4vw;
        flex-wrap: wrap;
    }
    .form_papper_wrp .npf_wgts {
        height: 544px;
    }
    .form_description_info {
        padding-top: 25px;
    }
    .form_description_info h4 {
        font-size: 2.4217961654894045vw;
        line-height: initial;
    }
    .form_description_info p {
        font-size: 1.8163471241170535vw;
        line-height: 3.027245206861756vw;
        padding-top: 4px;
    }
    .form_description_info p+h4 {
        margin-top: 2.825428859737639vw;
    }
    .success_story_slider_inds {
        padding: 0 20px 45px;
    }
    .grid_slider_blg_dtl:before {
        display: none;
    }
    .postfigure_page {
        height: 30.877901109989907vw;
    }
    .indus-iframe,
    iframe.slider_frame_page {
        height: 30.474268415741673vw;
    }
}

@media only screen and (max-width: 900px) {
    .svg_tags_item svg text {
        font-size: 1.3888888888888888vw;
    }
}

@media only screen and (max-width: 860px) {
    .svg_tags_item svg text {
        font-size: 1.4534883720930232vw;
    }
}

@media only screen and (max-width: 820px) {
    .svg_tags_item svg text {
        font-size: 1.524390243902439vw;
    }
}

@media only screen and (max-width: 800px) {
    .svg_tags_item svg text {
        font-size: 1.5625vw;
    }
}

@media only screen and (min-width: 768px) {
    .entranceexams_mbl,
    .fixed_tabs_mbl,
    .mobile_course_wrp {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    
    .common_caption p {
        font-size: 30px;
        line-height: 42px;
    }
}
@media only screen and (max-width: 768px) {
    .common_caption h2,
    .common_caption h4 {
        font-size: 30px;
        line-height: 42px;
    }
    .profilecard_title h5 {
        font-size: 22px;
        margin: 0 0 9px;
    }
    .profilecard_title h3 {
        font-size: 22px;
        margin: 0 0 9px;
    }
    .profilecard_title span {
        font-size: 13px;
    }
    .popup_short_view {
        font-size: 14px;
        line-height: 22px;
    }
    .leftside_desc_info p.smalltext {
        font-size: 16px;
    }
    .form_section_heading {
        padding: 115px 0 35px;
    }
    .form_section_heading h4 {
        font-size: 24px;
        line-height: 32px;
    }
    .form_section_heading h4 span {
        height: 2px;
    }
    .brandlogo_container .brandlogo_wrapper {
        height: inherit;
    }
    .brandlogo_container .brandlogo_wrapper .brandlogo_item_slider {
        height: 80px;
    }
    .notfound_inner h2 {
        font-size: 100px;
    }
    .notfound_inner h3 {
        font-size: 26px;
    }
    .gobal_searh_form {
        width: 100%;
        padding: 36px 0 0;
    }
}

@media only screen and (max-width: 767px) {
	.banner-gifcc{ height: 55vh;
    object-fit: cover;
    object-position: top;}
     :root {
        --gridcell: 12.499348109517602vw;
    }
    .cell_box_banner:after,
    .grid_cell_item:after {
        background-size: calc(100% / 8) var(--gridcell);
    }
    header.home_header_wrp {
        transition: 0.5s;
    }
    .mobile_logo {
        width: 12.4vw;
    }
    .mobile_toggle {
        width: 12.7vw;
    }
    .nav_tgl_btn {
        width: 30px;
        height: 24px;
    }
    .nav_tgl_btn span:nth-child(2) {
        top: 7px;
    }
    .nav_tgl_btn span:nth-child(3) {
        top: 14px;
    }
    .nav_tgl_btn span:nth-child(4) {
        top: 22px;
    }
    .nav_tgl_btn.open span:nth-child(2) {
        top: 13px;
    }
    .nav_tgl_btn.open span:nth-child(3) {
        top: 14px;
    }
    .home_banner_item,
    .home_door_image,
    .homemain_banner_inner,
    .homemain_banner_wrp {
        height: calc(var(--gridcell) * 12);
    }
    .home_door_image {
        background-image: url(../images/homepage-mobile.webp);
    }
    .home_banner_caption {
        padding: 21.51238591916558vw 0 12.516297262059975vw;
        width: 82%;
        margin: 0 auto;
        left: 0;
        right: 0;
    }
    .home_door_image img,
    .home_move_image {
        display: none;
    }
    .homebanner_inner {
        font-size: 11.734028683181226vw;
        line-height: 12.516297262059975vw;
    }
    .home_txtslider_container {
        margin: 2.8683181225554106vw 0 0;
        height: 9.126466753585397vw;
    }
    .home_txtslider_item {
        font-size: 11.734028683181226vw;
        line-height: 6.51890482398957vw;
    }
    .home_txtslider_container_2 .home_txtslider_item {
        font-size: 9.126466753585397vw;
        line-height: 6.51890482398957vw;
    }
    span.home_slider_dash {
        margin: -1.955671447196871vw 1.303780964797914vw 0;
        height: 1.0430247718383312vw;
    }
    span.homeslider_dash_2 {
        width: 100%;
        margin-left: 0;
    }
    span.homeslider_dash_3,
    span.homeslider_dash_4 {
        width: 100%;
        display: inline-block;
        margin-left: 0;
    }
    span.homeslider_dash_4 {
        width: 19.1%;
    }
    .fixed_right_cta,
    span.homeslider_dash_5 {
        display: none;
    }
    .sidebarheading h2,
    .sidebarheading h4 {
        font-size: 28px;
    } 
    .sidebarheading p {
        font-size: 28px;
    }
    .space-mob {
        padding-top: 12.51vw !important;
    }
    .people_career_heading h4 {
        font-size: 42px;
        line-height: 42px;
    }
    .people_career_heading h4.title_line_anim .fix_title_dash,
    h4.title_line_anim .animate_title {
        height: 4px;
    }
    .left_subtitle {
        padding-top: 10px;
    }
    .sidebarheading h2 label:nth-child(1) span,
    .sidebarheading h4 label:nth-child(1) span {
        top: 20px;
    } 
    .sidebarheading p label:nth-child(1) span {
        top: 20px;
    }
    i.and_size_hometitle:after {
        width: 18px;
        height: 18px;
        margin: 0 8px;
    }
    .left_subtitle h6 {
        font-size: 26px;
    }
    .common_caption h2,
    .common_caption h4 {
        font-size: 26px;
        line-height: 34px;
        padding-bottom: 2px;
    }
    .home_common_text h4 {
        font-size: 26px;
        line-height: 34px;
    }
    .common_caption p {
        padding-top: 16px;
        font-size: 16px;
        line-height: 23px;
        width: 100%;
    }
	ul.contents li {
    padding: 0;
    margin-bottom: 0 !important;
}
ul.contents li a {
    font-size: 16px !important;
    line-height: 23px !important;
}
    .common_caption h5+p {
        padding-top: 14px;
    }
    .cta_grp_space {
        padding-top: 22px;
    }
    .explore_more_cta {
        font-size: 13px;
    }
    .kingston_wrp .section_edge .sidebar_spacebar_wrp {
        padding-top: 20px;
    }
    .moving_arrow_link {
        top: -48px;
        width: 180px;
        height: 48px;
    }
    .marquee_style {
        height: 48px;
    }
    .marquee_track li a {
        font-size: 20px;
    }
    .marquee_thin .marquee_track li span {
        width: 16px;
    }
    .marquee_track li img {
        width: 16px;
        margin: 0 3px;
        max-width: 100%;
        height: auto; 
    }
    .moving_arrow_link a span.movinglink_text {
        font-size: 13px;
        line-height: 15px;
    }
    .moving_arrow_link a {
        padding: 0 22px 0 13px;
        line-height: initial;
    }
    .moving_arrow_link a span.movinglink_svg svg {
        width: 18px;
    }
    .home_yellowcircle_wrp {
        height: calc(var(--gridcell) * 12);
    }
    .yellow_box_top_ttl {
        width: calc(100% - 25.293350717079534vw);
        padding: 21.1vw 0 0;
    }
    .yellow_box_bottom_wrp {
        width: 75%;
        top: 111.3vw;
    }
    .yellow_box_bottom_desc div {
        font-size: 4.166666666666666vw;
        line-height: initial;
    }
    .yellow_box_top_ttl h4 {
        line-height: 12.516297262059975vw;
        font-size: 10.126466753585397vw;
    }
    .yellow_box_bottom_desc svg {
        margin-top: 1.3020833333333335vw;
        width: 10.416666666666668vw;
    }
    .yellow_box_top_ttl h4 .mbl_redyell_spn_3 {
        width: 13.996094vw;
    }
    .yellow_circle_inner {
        top: 19vw;
        width: 83.33333333333334vw;
        height: 80.72916666666666vw;
    }
    .home_blackbox_tags {
        height: calc(var(--gridcell) * 12);
        padding: 12.516297262059975vw;
    }
    .home_tags_heading {
        position: static;
        width: 100%;
        height: 24.902216427640155vw;
    }
    .home_tags_heading h4 {
        font-size: 8.996088657105608vw;
        line-height: 10.212516vw;
    }
    .home_svgtags_item {
        position: static;
    }
    .home_svgtags_item,
    .home_svgtags_item a {
        width: 24.902216427640155vw;
        height: 24.902216427640155vw;
    }
    .home_svgtags_item a svg {
        width: 21.642764015645373vw;
    }
    .home_blogslider_wrp .left_sidebar_small,
    .home_bridging_wrp {
        display: none;
    }
    .we_empower_line {
        padding: 72px 0 20px;
    }
    .post_category {
        padding: 15px 15px 0;
    }
    .blog_post_heading {
        padding: 10px 15px 0;
    }
    .post_sort_desc {
        padding: 0 15px;
    }
    .postdate {
        padding: 0 15px 15px;
    }
    .syncslider_desktop {
        display: none;
    }
    .mobile_course_wrp {
        padding: 0 20px;
    }
    .mbl_course_border {
        border-width: 0 1px;
        border-color: #dcdcdc;
        border-style: solid;
        padding: 0 0 20px;
    }
    .mbl_course_inner,
    a.cta_arrow_mbl {
        display: flex;
        justify-content: space-between;
    }
    .mbl_course_inner {
        flex-wrap: wrap;
        width: 94.5%;
    }
    .mbl_course_item {
        width: 47%;
        position: relative;
        padding-bottom: 50px;
    }
    .mbl_crse_heading {
        position: relative;
        display: flex;
        height: 110px;
        align-items: flex-end;
    }
    .mbl_crse_heading h6 {
        -webkit-text-stroke: 1px #cccccc59;
        color: transparent;
        -webkit-text-fill-color: transparent;
        font-size: 160px;
        line-height: 82px;
        font-family: acumin-pro-condensed, acumin-pro, sans-serif;
        font-weight: 700;
        margin: 0;
        position: absolute;
        top: 0;
        left: -5px;
        z-index: -1;
    }
    .mbl_crse_heading p {
        font-family: acumin-pro-condensed, sans-serif;
        font-weight: 600;
        font-style: normal;
        line-height: 32px;
        font-size: 26px;
        letter-spacing: normal;
        margin: 0;
        padding: 0;
        color: #000;
    }
    .mbl_crse_img {
        padding: 20px 0 0;
    }
    .ftr_balls img,
    .ftr_heading>a.mdl_ftr_logo img,
    .mbl_crse_img img {
        width: 100%;
        max-width: 100%;
        height: auto; 
    }
    .mbl_crse_copy {
        padding: 26px 0;
        height: 276px;
    }
    .mbl_crse_copy p,
    a.cta_arrow_mbl p {
        font-family: acumin-pro, sans-serif;
        font-style: normal;
        letter-spacing: normal;
        margin: 0;
        display: block;
    }
    .mbl_crse_copy p {
        font-weight: 200;
        line-height: 28px;
        font-size: 18px;
        box-sizing: border-box;
        display: -webkit-box;
        -webkit-line-clamp: 8;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    a.cta_arrow_mbl {
        font-family: acumin-pro, Sans-serif;
        font-size: 16px;
        font-weight: 200;
        line-height: 27px;
        fill: var(--black);
        color: var(--black);
        background-color: #fff;
        border-style: solid;
        border-width: var(--oneunit) var(--oneunit) var(--oneunit) var(--oneunit);
        border-color: var(--black);
        height: 52px;
        align-items: center;
        padding-left: 15px;
        text-decoration: none;
    }
    a.cta_arrow_mbl p {
        font-weight: 400;
        line-height: 20px;
        font-size: 16px;
    }
    a.cta_arrow_mbl span {
        width: 55px;
        border-left: var(--oneunit) solid var(--black);
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }
    a.cta_arrow_mbl svg {
        width: 31px;
        height: 31px;
    }
    .master_course_mbl .sidebar_spacebar_wrp {
        padding-top: 10px;
    }
    .master_course_card_mbl,
    .pedagogy_section {
        padding: 0 20px;
    }
    .pedagogy_wrp {
        width: 100%;
        border-width: 0 1px;
        border-color: #caa900;
        border-style: solid;
    }
    .pedagogy_section:after {
        background-position: -1px 46px;
    }
    .pedagogy_wrp h4 {
        font-size: 70px;
        line-height: 32px;
        padding: 0 0 0 2px;
        height: 46px;
    }
    .pedagogy_wrp h2 {
        font-size: 70px !important;
        line-height: 32px !important;
        padding: 0 0 0 2px !important;
        height: 46px !important;
    }
    .pedagogy_inner {
        display: block;
        width: 100%;
    }
    .pedagogy_left {
        width: 90%;
        padding: 30px 0 40px;
    }
    .pedagogy_left p {
        font-size: 16px;
        line-height: initial;
    }
    .pedagogy_right {
        width: 50%;
    }
    .footer_wrp {
        position: relative;
        margin-bottom: 40px;
    }
    .ftr_inner {
        width: 100%;
        border: 1px solid #70707080;
        border-top: 0;
        border-bottom: 0;
        padding: 40px 0 50px;
    }
    .ftr_heading {
        padding-top: 0;
        padding-bottom: 20px;
    }
    a.mdl_ftr_logo {
        display: inline-block;
        margin-bottom: 15px;
    }
    .ftr_heading>a.mdl_ftr_logo {
        width: 130px;
        display: inline-block;
    }
    .ftr_heading h4 {
        font-size: 56px;
        line-height: 60px;
    }
    .ftr_heading p {
        font-size: 56px;
        line-height: 60px;
    }
    .ftr_contact_info,
    .ftr_logo {
        display: none;
    }
    .home_ftr_top_lnks {
        padding: 0 0 160px;
    }
    .ftr_menu_list li {
        width: 50%;
        padding: 14px 0 0;
    }
    .ftr_top_right {
        width: 100%;
    }
    .ftr_balls {
        width: 50%;
    }
    .ftr_balls img {
        width: 81.8%;
    }
    .gototop {
        width: 18.2%;
        height: 70px;
    }
    .gototop a svg {
        width: 25px;
        height: 25px;
    }
    .chatbot_icon {
        display: none;
    }
    .fixed_tabs_mbl {
        display: flex;
        position: fixed;
        bottom: 0;
        z-index: 2;
        background: #fff;
        width: 100%;
    }
    .fixed_tabs_mbl a {
        height: 40px;
        color: #000;
        text-transform: uppercase;
        text-decoration: none;
        font-family: acumin-pro, sans-serif;
        font-weight: 600;
        font-style: normal;
        letter-spacing: normal;
        font-size: 13px;
        line-height: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-top: 1px solid #c5c5c5;
    }
    .fixed_tabs_mbl a:nth-child(1),
    .fixed_tabs_mbl a:nth-child(2) {
        width: calc(var(--gridcell) * 3);
        border-right: 1px solid #c5c5c5;
        border-bottom: 4px solid #000;
    }
    .fixed_tabs_mbl a:nth-child(2) {
        border-bottom: 4px solid #ffd815;
    }
    .fixed_tabs_mbl a:nth-child(3) {
        width: calc(var(--gridcell) * 2);
    }
    .banner_caption {
        top: 36.7%;
        width: calc(100vw - 16.666666666666664vw);
    }
    .banner_caption h2 {
        font-size: 12.190352020860495vw;
        line-height: 12.516297262059975vw;
    }
    .banner_caption h1 {
        font-size: 12.190352020860495vw;
        line-height: 12.516297262059975vw;
    }
    .banner_caption p {
        font-size: 12.190352020860495vw !important;
        line-height: 12.516297262059975vw !important;
    } 
    .banner_caption h2 span.commondash {
        margin: 0 1.0993481095176011vw 2.0860495436766624vw;
        height: 1.0630247718383312vw;
    }
    .banner_caption h1 span.commondash {
        margin: 0 1.0993481095176011vw 2.0860495436766624vw;
        height: 1.0630247718383312vw;
    }
    .overlapon_banner {
        margin: 0;
    }
    .notice_section_inner {
        width: 100%;
        height: initial;
    }
    .notice_item {
        display: block;
    }
    .leftside_desc_info {
        width: 100%;
        padding: 0;
    }
    .blackbox_left_top_content {
        padding: 40px 20px 0;
    }
    .blackbox_mbl_spc {
        padding-bottom: 42px;
    }
    .blackbox_left_top_content>p br,
    .bottom_edge_text {
        display: none;
    }
    .bottom_edge_text_mbl {
        display: block;
        padding-top: 16px;
    }
    .small_text_wrp p+.bottom_edge_text_mbl {
        padding-top: 32px;
    }
    .blackbox_left_top_content>p {
        font-size: 26px;
        line-height: 34px;
    }
    .bottom_edge_text h1,
    .bottom_edge_text h2,
    .bottom_edge_text h4 {
        font-size: 52px;
        line-height: 42px;
        white-space: initial;
    }
    .rightside_info {
        padding: 0;
        width: 100%;
        height: initial;
    }
    .small_text_wrp {
        padding: 30px 20px 0;
    }
    .small_text_wrp p {
        font-size: 16px;
        line-height: 23px;
    }
    .location_map_inner iframe,
    .lottie_banner_press {
        height: calc(var(--gridcell) * 10);
    }
    .svg_large_pusle,
    .svg_shape_size {
        width: calc(var(--gridcell) * 6.4);
    }
    .press_hold p {
        font-size: 2.216427640156454vw;
        line-height: 2.346805736636245vw;
    }
    .press_hold {
        bottom: 4.69361147327249vw;
        right: 17.992177314211215vw;
        width: 14.341590612777052vw;
        height: 14.341590612777052vw;
    }
    .svg_shape_size h1 {
        font-size: 13.298565840938723vw;
    }
    .circle_banner_dashline {
        height: 1.303780964797914vw;
        width: 26.727509778357234vw;
        margin: 1.564537157757497vw 0.8784773060029283vw 0;
    }
    .svg_small_pusle {
        width: 7.822685788787484vw;
        height: 7.822685788787484vw;
    }
    .story_cell_wrp.grid_cell_item:after {
        background-position: 0 60px;
    }
    .filter_tabs_btn li.nav-item a {
        font-size: 20px;
        height: 60px;
    }
    .tabs_result_wrp {
        padding: 9.126466753585397vw 0 0;
    }
    .svg_tags_item {
        min-width: 20.01303780964798vw;
    }
    .story_cell_container {
        padding: 0;
    }
    .story_cell_container h4.filter_heading,
    .tags_heading {
        display: none;
    }
    .circle_svg_tag,
    .filter_tabs_btn {
        width: 100%;
    }
    .circle_svg_tag {
        padding: 0 0 8.604954367666231vw;
    }
    .circle_svg_tag::-webkit-scrollbar {
        height: 3px;
    }
    .circle_svg_tag::-webkit-scrollbar-thumb {
        background: #a09e9e;
        background: 0 0;
    }
    .circle_svg_tag::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    .more_tags_wrp,
    .viewmore_tags_js {
        display: none;
    }
    .story_rst_container {
        width: 100%;
        padding-top: 0;
    }
    .story_card_wpr {
        padding: 1.3689700130378095vw 20px 0;
    }
    .tags_category_heading {
        padding: 0 20px;
    }
    .tags_category_heading h4 {
        font-size: 9.126466753585397vw;
    }
    .story_post_category,
    .story_post_heading,
    .story_sort_desc {
        font-size: 1.8252933507170794vw;
        padding: 2.0860495436766624vw 2.0860495436766624vw 0;
    }
    .story_post_heading,
    .story_sort_desc {
        font-size: 2.607561929595828vw;
        line-height: 3.129074315514994vw;
        height: 11.734028683181226vw;
        margin: 0 0 1.303780964797914vw;
    }
    .story_sort_desc {
        font-size: 2.346805736636245vw;
        padding: 0 2.0860495436766624vw;
        margin: 0 0 11.473272490221643vw;
        height: 6.388526727509778vw;
    }
    .story_postdate {
        font-size: 1.8252933507170794vw;
        padding: 0 2.0860495436766624vw 1.694915254237288vw;
    }
    .loadmore_cta {
        width: 100%;
        margin: auto;
        height: 12.516297262059975vw;
        padding-left: 20px;
    }
    .loadmore_cta .svg_border {
        width: 12.405919165580182vw;
    }
    .popup_slider_nav {
        width: calc(100% - 20px);
        padding-top: 30px;
    }
    .popupslider_sidebarheading h4 {
        font-size: 28px;
        line-height: initial;
    }
    .popupslider_sidebarheading h4 label span {
        width: 20px;
    }
    .right_spacebar_popup {
        padding: 20px 0 0 28px;
    }
    .popup_slider_nav .success_leftright_nav {
        width: 100%;
    }
    .stroketext_anim_inner h4 {
        font-size: 6.779661016949152vw;
    }
    .profilecard_space {
        padding-bottom: 12.385919165580182vw;
    }
    .profilecard_mdl_people {
        padding: 0 20px;
    }
    .profilecard_mdl_people .profilecard_item {
        width: calc(50% - 20px);
        margin-top: 45px;
    }
    .faculty_tabs_wrp,
    .inception_wrp .section_edge_left .sidebar_spacebar_wrp .right_spacebar,
    .our_pursuip_wrp .section_edge_left .sidebar_spacebar_wrp .right_spacebar,
    .profilecard_mdl_people {
        width: 100%;
    }
    .top_faculty_wrp {
        padding-bottom: 46px;
    }
    .faculty_tabs_button li.nav-item a {
        height: 12.3859vw;
        font-size: 2.8683181225554106vw;
    }
    .profilecard_inside_tab {
        padding: 0 20px 12.529335071707953vw;
    }
    .profilecard_inside_tab .profilecard_item {
        width: calc(50% - 20px);
        margin: 12.54237288135593vw 0 0;
    }
    .profilecard_top_heading {
        padding: 1.8252933507170794vw;
    }
    .popup_short_view {
        height: 37.67926988265971vw;
        padding: 0 1.8252933507170794vw;
    }
    .profilecard_title h5 {
        font-size: 3.389830508474576vw;
        line-height: 3.259452411994785vw;
        margin: 0 0 0.7822685788787485vw;
    }
    .profilecard_title h3 {
        font-size: 3.389830508474576vw;
        line-height: 3.259452411994785vw;
        margin: 0 0 0.7822685788787485vw;
    }
    .profilecard_title span {
        font-size: 1.955671447196871vw;
        line-height: 2.216427640156454vw;
    }
    .open_popup {
        width: 3.129074315514994vw;
        height: 3.129074315514994vw;
    }
    .profilecard_top {
        height: 13.250366032210833vw;
    }
    .profilecard_profile_img {
        padding-top: 11.538461538461538vw;
    }
    .profilecard_profile_img picture img {
        height: 37.405475880052144vw;
        max-width: 100%; 
    }
    .profilecard_inside_tab .profilecard_profile_img picture img {
        height: 37.39vw;
    }
    .round_bg {
        width: 100vw;
        height: 100vw;
        top: 29.465449804432854vw;
    }
    .lottie_banner_ladder {
        top: 87.48370273794002vw;
        width: 148.63102998696218vw;
        overflow: hidden;
    }
    .lottie_banner_ladder lottie-player {
        margin: -2.0860495436766624vw 0 0;
    }
    .about_banner_caption {
        width: 82%;
    }
    .banner_caption h2 span.commondash_abt_1 {
        width: 22.164276401564535vw;
    }
    .banner_caption h2 span.commondash_abt_2,
    .banner_caption h2 span.commondash_abt_3 {
        width: 25px;
    }
    .banner_caption h1 span.commondash_abt_1 {
        width: 22.164276401564535vw;
    }
    .banner_caption h1 span.commondash_abt_2,
    .banner_caption h1 span.commondash_abt_3 {
        width: 25px;
    }
    .dbl_bg {
        background-image: linear-gradient(var(--blue) 46.1%, #000 46%);
    }
    .inception_wrp,
    .our_pursuip_wrp {
        height: initial;
    }
    .inception_wrp .section_edge_left {
        padding-top: 30px;
        padding-bottom: 42.76401564537158vw;
    }
    .our_pursuip_wrp .section_edge_left {
        padding-top: 53.45501955671447vw;
        padding-bottom: 80px;
    }
    .inception_wrp .abt_common_text h4,
    .our_pursuip_wrp .abt_common_text h4 {
        font-size: 26px;
        line-height: 34px;
        padding-bottom: 2px;
    }
    .zigzag_item p {
        font-size: 16px;
        line-height: 23px;
    }
    .zigzag_flex {
        width: 100%;
        padding-top: 15px;
        position: relative;
    }
    .zigzag_flex .zigzag_item {
        width: 65%;
    }
    .inception_wrp .zigzag_flex:before {
        content: "";
        position: absolute;
        top: 30px;
        width: 100%;
        height: 1px;
    }
    .mbl_pursuip_inception_heading {
        padding: 0 0 46px;
    }
    .inception_wrp .lottie_inception {
        height: 51.23859191655802vw;
        bottom: 0;
        top: initial;
    }
    .inception_wrp .lottie_inception lottie-player {
        width: 96.21903520208605vw;
        height: 51.23859191655802vw;
    }
    .our_pursuip_wrp .lottie_inception {
        height: 55.019556714471975vw;
        width: 100%;
        top: 0;
    }
    .our_pursuip_wrp .lottie_inception lottie-player {
        width: 96.08865710560626vw;
        height: 55.019556714471975vw;
    }
    .pillars_inner {
        padding: 70px 0 80px;
    }
    .Pillter_top_title h4 {
        font-size: 4.69361147327249vw;
    }
    .Pillter_top_title h5 {
        font-size: 5.9973924380704045vw;
        line-height: 5.215123859191656vw;
    }
    .flower_lottie {
        width: 44.32855280312907vw;
        height: 44.32855280312907vw;
        right: -26%;
        top: 18vw;
    }
    .pillars_info_wrp {
        padding: 7.822685788787484vw 0 0 22.164276401564535vw;
        width: 70vw;
    }
    .pillars_info_wrp .pillars_info_item:first-child {
        padding-top: 0;
    }
    .pillars_info_item h5 {
        line-height: 7.822685788787484vw;
    }
    .pillars_info_item p {
        font-size: 2.8683181225554106vw;
        line-height: 3.911342894393742vw;
    }
    .mega_accor_item {
        padding: 15px 20px 18px;
    }
    .accordian_content p,
    .mega_accor_heading p {
        line-height: 28px;
    }
    .core_philosophy_wrp .abt_common_text h4 {
        font-size: 4.69361147327249vw;
        line-height: 6.779661016949152vw;
    }
    .fullwith_sec_title h4 {
        font-size: 9.588579795021962vw;
        line-height: 9.661786237188873vw;
    }
    .abtus_bridginggaps_ttl h4.title_line_anim span.animate_title {
        height: 0.7822685788787485vw;
    }
    .abtus_bridginggaps_ttl h4.title_line_anim span.animate_title1 {
        width: calc(13.03780964797914vw - 20px);
        max-width: initial;
    }
    .abtus_bridginggaps_ttl h4.title_line_anim span.animate_title2 {
        width: calc(26.07561929595828vw - 20px);
        max-width: initial;
    }
    .vertical_textslider_inner {
        padding: 0 12.55vw;
    }
    .textslider_center {
        padding: calc(var(--gridcell) * 2.64) 0;
    }
    .pillars_info_item h5,
    .profile_accordian_title h5,
    .textslider_center h6 {
        font-size: 3.650586701434159vw;
    } 
    .profile_accordian_title h3 {
        font-size: 3.650586701434159vw;
    }
    .textslider_hold {
        flex-wrap: wrap;
        justify-content: space-between;
        padding-top: 3.129074315514994vw;
    }
    .vert_txtslider_container {
        width: calc(100% - 9.126466753585397vw);
        height: 10.951760104302476vw;
    }
    .and_text {
        margin: 0;
        position: relative;
        top: 1.955671447196871vw;
    }
    .and_text img {
        width: 7.301173402868318vw;
        max-width: 100%;
        height: auto; 
    }
    .textslider_hold .vert_txtslider_container:last-child {
        position: relative;
        top: 1.694915254237288vw;
    }
    .vert_txtslider_item h4 {
        font-size: 11.473272490221643vw;
        line-height: 7.301173402868318vw;
    }
    .howweteach_lottie_banner lottie-player {
        width: 80vw;
    }
    .pi_text_wrp {
        padding: 0 0 24px;
    }
    .marquee_right_mdltext .section_edge {
        padding: 94px 0 44px;
    }
    .pedagogy_mdl_page {
        width: 100%;
    }
    .pedagogy_mdl_page p {
        width: 50%;
        font-size: 16px;
        line-height: 23px;
    }
    .pedagogy_mdl_page h4 {
        font-size: 48px;
    }
    .readmore_item p {
        font-size: 16px;
        line-height: 23px;
        margin-bottom: 10px;
    }
    .readmore_item {
        padding-bottom: 78px;
    }
    .readmore_item h4 {
        font-size: 26px;
        line-height: 16px;
    }
    a.readmore_text_cta {
        font-size: 13px;
    }
    .quotes_slider_wpr {
        padding: 45px 0;
    }
    .quotes_slider_gap {
        background-position: right -28px top -60px;
        background-size: 105px;
        padding: 80px 0 35px;
    }
    .quotes_slider_wpr.section_activated:after,
    .quotes_slider_wpr.section_activated:before {
        width: 150px;
        height: 45px;
    }
    .quotes_slider_wpr:before {
        top: 45px;
        width: 150px;
    }
    .quotes_slider_wpr:after {
        bottom: 45px;
        width: 150px;
    }
    .quotes_slider_container {
        width: calc(100% - 40px);
    }
    .quotes_slide h4 {
        font-size: 24px;
        line-height: initial;
    }
    .quotes_slide p {
        font-size: 24px;
        line-height: initial;
    }
    .quotes_text_container {
        width: 100%;
        padding: 0 38px 0 20px;
    }
    .quotes_text_wrapper {
        width: 100%;
        padding: 14px 0 106px;
    }
    .quotes_slide_text span.author_txt {
        font-size: 20px;
        line-height: initial;
    }
    .quotes_pagination {
        margin: initial;
    }
    .quotes_btn_wrp {
        margin-left: auto;
    }
    .pagination_of {
        padding-bottom: 10px;
    }
    .textrail_caption_btm_item {
        padding-top: 30px;
    }
    .textrail_caption_btm_inner {
        width: 100%;
    }
    .textrail_bottom_js .slick-next {
        left: inherit;
        right: 0;
    }
    .gridcell_slider_size {
        width: calc(100% - 40px);
        padding: 12.51vw 0 21.773142112125164vw;
        overflow: hidden;
    }
    .gridcell_size_blgdetail {
        width: 100%;
    }
    .gridcell_slide_item picture img {
        height: 62.32073011734028vw !important;
        max-width: 100%;
         
    }
    .grid_sldr_pagination_wrp {
        position: static;
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        padding-top: 10px;
    }
    .grid_sldr_mblbar {
        display: block;
        position: static;
        margin: 0 0 3.911342894393742vw;
        width: 100%;
        height: 3px;
        background: #dcdcdc;
    }
    .brandlogo_pagination span,
    .grid_sldr_mblbar span {
        display: block;
        position: static !important;
        height: 4px;
        background: #000 !important;
    }
    .gridcell_btn_next,
    .gridcell_btn_prev {
        width: 4.432855280312908vw;
        height: 4.432855280312908vw;
    }
    .gridcell_slide_text_item {
        height: 24.771838331160364vw;
        padding-top: 5.9973924380704045vw;
    }
    .gridcell_slide_text_item p {
        font-size: 2.346805736636245vw;
        line-height: 3.650586701434159vw;
        padding: 0;
        width: 100%;
    }
    .success_section_heading img {
        width: 11.734028683181226vw;
        max-width: 100%;
        height: auto; 
    }
    .success_section_heading h4 {
        padding: 0 0 0 35.6vw;
        font-size: 7.561929595827902vw;
        line-height: initial;
    }
    .profilecard_inner {
        padding: 0 0 12.385919165580182vw;
    }
    .profile_accordian_box {
        flex-wrap: wrap;
    }
    .profile_accordian_img {
        width: 100%;
        order: 2;
    }
    .profile_image_holding {
        padding: 5.215123859191656vw 0;
    }
    .profilecard_hold {
        padding: 0;
        width: calc(100% - 40px);
    }
    .profilecard_sec_heading {
        padding: 24.11994784876141vw 0 0;
    }
    .profilecard_sec_heading .sidebarheading h4 {
        font-size: 4.69361147327249vw;
        line-height: 4.69361147327249vw;
    }
    .profilecard_sec_heading .sidebarheading p {
        font-size: 4.69361147327249vw;
        line-height: 4.69361147327249vw;
    }
    .prgrm_dtl_sidebarheading h4 label:nth-child(1) span {
        top: 3.5202086049543677vw;
        height: 0.5215123859191656vw;
    }
    .profilecard_alignment {
        padding: 18.73vw 0 12.677053455019557vw;
    }
    .faculty_card_items .profilecard_item {
        width: calc(50% - 20px);
        margin: 12.320730117340286vw 0 0;
    }
    .course_leader {
        width: 26%;
        top: 21.52764vw;
        right: 10.03781vw;
    }
    .clickaccordian,
    .profile_accordian_item,
    .profile_accordian_title {
        height: 20vw;
    }
   /* .clickaccordian,
    .profile_accordian_item,
    .profile_accordian_title {
        height: 12.503259452411996vw;
    }*/
    .profile_accordian_item {
        padding: 0 20px;
    }
    .course_leader h4 {
        font-size: 9.126466753585397vw;
        line-height: 9.126466753585397vw;
    }
    .course_leader p {
        font-size: 9.126466753585397vw !important;
        line-height: 9.126466753585397vw !important;
    }
    .profile_accordian_img img {
        height: initial;
        min-width: 250px;
        max-width: 360px;
        margin: 0 auto;
        display: block;
        width: 100%; 
    }
    .profile_accordian_descrition {
        width: 100%;
        padding: 0;
        order: 1;
    }
    .profile_accordian_info {
        padding: 0;
    }
    .profile_accordian_info p {
        -webkit-line-clamp: 6;
    }
    .profile_accordian_item.active {
        height: 700px;
    }
    .profile_accordian_title span.faculty_profile {
        font-size: 2.607561929595828vw;
        line-height: initial;
    }
    .rightside_inner_item,
    .rightsidedate_item {
        padding: 15px 20px;
    }
    .rightside_inner_item div h4,
    .rightsidedate_item p {
        font-size: 26px;
    }
    .rightside_inner_item div h5,
    .rightsidedate_item h6 {
        font-size: 22px;
    }
    .rightside_inner_item div,
    .rightsidedate_item>div {
        margin-bottom: 50px;
    }
    .download_cross_arrow a {
        font-size: 26px;
        line-height: 34px;
    }
    .download_cross_arrow a span svg {
        width: 17px;
        height: 17px;
    }
    .notice_cross_arrow_wrp {
        padding: 30px 20px;
    }
    .table_wrp {
        display: none;
    }
    .entranceexams_mbl {
        padding: 0 20px 36px;
    }
    .entranceexams_inner {
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 0;
        position: relative;
        z-index: 1;
    }
    .entranceexams_inner .entranceexams_item {
        border-width: 1px 0 0;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 15px 0 10px;
    }
    .entranceexams_inner .entranceexams_item:last-child {
        border-width: 1px 0;
    }
    .entranceexams_item h4 {
        font-family: acumin-pro-condensed, sans-serif !important;
        font-weight: 400;
        font-size: 24px;
        color: #000;
        padding: 0;
        margin: 0;
    }
    .entranceexams_item ul {
        margin: 0;
        padding: 3px 0 0;
        display: flex;
        flex-wrap: wrap;
    }
    .entranceexams_item ul li {
        font-family: acumin-pro, sans-serif;
        font-weight: 300;
        font-size: 16px;
        color: #e13212;
        list-style: none;
        padding: 0 20px 5px 15px;
        position: relative;
    }
    .entranceexams_item ul li:before {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        border: 1px solid #000;
        border-radius: 50%;
        left: 0;
        top: 50%;
        transform: translate(0, -50%);
    }
    .lateral_stroke_admsn {
        top: 28.683181225554105vw;
    }
    .lateral_stroke_admsn.leftbar_line_text h5 {
        font-size: 7.822685788787484vw;
    }
    .syncslide_top_wrp {
        padding-top: 23.6vw;
        width: calc(100% - 40px);
    }
    .lifeiiad_syncslider_inner {
        display: none;
    }
    .mbl_syncslider_lifeiiad {
        padding: 17.1vw 20px 0;
    }
    .mbl_syncslider_lifeiiad .mbl_course_border {
        border: 0;
        padding: 0 0 2.607561929595828vw;
    }
    .mbl_syncslider_lifeiiad .mbl_course_inner {
        width: 100%;
    }
    .mbl_syncslider_lifeiiad .mbl_course_item {
        width: 47%;
        padding-bottom: 6.51890482398957vw;
    }
    .mbl_syncslider_lifeiiad .mbl_crse_img {
        padding: 2.607561929595828vw 0 0;
    }
    .mbl_syncslider_lifeiiad .mbl_crse_img img {
        height: 49.95443285528031vw;
        object-fit: cover;
        max-width: 100%; 
    }
    .mbl_syncslider_lifeiiad .mbl_crse_copy {
        height: 40.4735332464146vw;
        padding: 3.389830508474576vw 0;
    }
    .mbl_syncslider_lifeiiad .mbl_crse_copy p {
        text-overflow: ellipsis;
        overflow: hidden;
        -webkit-line-clamp: 8;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        line-height: 3.650586701434159vw;
        font-size: 2.346805736636245vw;
    }
    .marq_state_wrp {
        padding: 0 10px;
        width: 70px;
    }
    .marq_state_wrp div img {
        width: 18px;
        max-width: 100%;
        height: auto; 
    }
    .marq_state_wrp div {
        font-size: 14px;
    }
    .rightside_contactinfo {
        width: 100%;
        padding: 0 20px;
    }
    .contact_timinginfo {
        padding-top: 30px;
    }
    .contact_timinginfo p {
        font-size: 22px;
        padding-bottom: 2px;
    }
    .contact_timinginfo label {
        font-size: 14px;
        padding: 1px 0 0;
    }
    .contact_numberinfo_wrap {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .numberinfo_item>a,
    .social_list_link li a {
        font-size: 18px;
    }
    .locateus_map a,
    .numberinfo_item>p {
        font-size: 14px;
    }
    .numberinfo_item {
        padding-top: 12px !important;
    }
    .social_list_link {
        padding-top: 5px;
    }
    .contact_form_inner {
        display: block;
    }
    .contact_form_wrp {
        padding: 0 20px;
    }
    .contact_form_inner {
        width: 100%;
        border-width: 0 1px;
        border-style: solid;
        border-color: #e0e0e0;
        padding: 115px 0 0;
    }
    .contact_form_left,
    .form_papper_wrp .npf_wgts iframe {
        width: 100%;
        padding: 0;
    }
    .form_papper_wrp .npf_wgts {
        height: 490px;
    }
    .form_section_heading {
        padding: 0 0 30px;
    }
    .contact_form_right {
        width: 100%;
        border: 0;
        padding: 50px 0 90px;
    }
    .form_description_info {
        border: 0;
        padding: 0;
    }
    .form_description_info h4 {
        font-size: 22px;
    }
    .form_description_info p {
        font-size: 16px;
        line-height: 23px;
    }
    .form_description_info h4+p {
        padding-top: 16px;
    }
    .form_description_info p+h4 {
        padding-top: 45px;
        margin: 0;
    }
    .contact_map_wrp {
        height: calc(var(--gridcell) * 14);
    }
    .location_map_inner {
        width: calc(100% - 40px);
        padding-top: 11.734028683181226vw;
    }
    .location_map_heading {
        height: 13.2vw;
    }
    .location_map_heading h4 {
        font-size: 8.88888888888889vw;
    }
    .brandlogo_pagination,
    .nav_pagination_brandlog {
        display: block;
        width: 100%;
    }
    .brandlogo_pagination {
        position: static;
        margin: 0 0 20px;
        height: 3px;
        background: #dcdcdc;
    }
    .brand_leftright_nav {
        width: 100%;
    }
    .home-desi-cat,
    .postfigure {
        height: 27.77053455019557vw;
    }
    iframe.slider_frame {
        height: 27.249022164276404vw;
    }
    .postfigure_page {
        height: 30.117340286831812vw;
    }
    .indus-iframe,
    iframe.slider_frame_page {
        height: 29.726205997392434vw;
    }
    .about_banner_caption h2 span:nth-child(2) {
        width: 22.164276401564535vw;
    }
    .about_banner_caption h2 span:nth-child(3) {
        width: 0;
        margin: 0;
    }
    .about_banner_caption h2 span:nth-child(4),
    .about_banner_caption h2 span:nth-child(5) {
        width: 3.0555555555555554vw;
    }
    .about_banner_caption h2 span:nth-child(6) {
        width: 12%;
        margin: 0;
    }
    .about_banner_caption h2 span:nth-child(7) {
        width: 7.822685788787484vw;
    } 
    .about_banner_caption h1 span:nth-child(2) {
        width: 22.164276401564535vw;
    }
    .about_banner_caption h1 span:nth-child(3) {
        width: 0;
        margin: 0;
    }
    .about_banner_caption h1 span:nth-child(4),
    .about_banner_caption h1 span:nth-child(5) {
        width: 3.0555555555555554vw;
    }
    .about_banner_caption h1 span:nth-child(6) {
        width: 12%;
        margin: 0;
    }
    .about_banner_caption h1 span:nth-child(7) {
        width: 7.822685788787484vw;
    } 
    .prg_overview_banner_caption h2 span:nth-child(2) {
        width: 42%;
    }
    .prg_overview_banner_caption h2 span:nth-child(3) {
        width: 12%;
    }
    .prg_overview_banner_caption h1 span:nth-child(2) {
        width: 42% !important;
    }
    .prg_overview_banner_caption h1 span:nth-child(3) {
        width: 12% !important;
    }
    .fd_caption h2 span:nth-child(1) {
        width: 40%;
    }
    .fd_caption h2 span:nth-child(2) {
        display: inline-block;
        width: 22.11994784876141vw;
        margin-left: 0;
    }
    .fd_caption h2 span:nth-child(3) {
        width: 56.14993481095176vw;
    }
    .fd_caption h2 span:nth-child(4) {
        width: 4.215124vw;
    }
    .fd_caption h2 span:nth-child(5) {
        display: none;
    }
    .lifeiiad_banner_caption h2 span:nth-child(1) {
        width: 43%;
    }
    .lifeiiad_banner_caption h2 span:nth-child(2) {
        width: 6.111111111111111vw;
    }
    .lifeiiad_banner_caption h2 span:nth-child(3) {
        width: 9.444444444444445vw;
    }
    .iiadindusty_banner_caption h2 span:nth-child(1) {
        width: 75%;
        opacity: 0;
    }
    .iiadindusty_banner_caption h2 span:nth-child(2) {
        width: 6.64vw;
    }
    .iiadindusty_banner_caption h2 span:nth-child(3) {
        width: 0;
        margin: 0;
    }
    .iiadindusty_banner_caption h2 span:nth-child(4) {
        width: 10vw;
    }
    .iiadindusty_banner_caption h2 span:nth-child(5) {
        width: 0;
        margin: 0;
    }
    .iiadindusty_banner_caption h2 span:nth-child(6) {
        width: 10vw;
    }
    .iiadindusty_banner_caption h1 span:nth-child(1) {
        width: 75%;
        opacity: 0;
    }
    .iiadindusty_banner_caption h1 span:nth-child(2) {
        width: 6.64vw;
    }
    .iiadindusty_banner_caption h1 span:nth-child(3) {
        width: 0;
        margin: 0;
    }
    .iiadindusty_banner_caption h1 span:nth-child(4) {
        width: 10vw;
    }
    .iiadindusty_banner_caption h1 span:nth-child(5) {
        width: 0;
        margin: 0;
    }
    .iiadindusty_banner_caption h1 span:nth-child(6) {
        width: 10vw;
    }
    .admission_caption h2 span:nth-child(1) {
        width: 5.333333333333332vw;
    }
    .admission_caption h2 span:nth-child(2) {
        opacity: 1;
        width: 30px;
        margin: 0 5px 2.0860495436766624vw;
    }
    .admission_caption h2 span:nth-child(3) {
        width: 0;
        margin: 0;
    }
    .admission_caption h2 span:nth-child(4) {
        width: 9.444444444444445vw;
    }
    .admission_caption h2 span:nth-child(5) {
        width: 3vw;
        opacity: 0;
    }
    .admission_caption h2 span:nth-child(6) {
        width: 7.777777777777778vw;
        opacity: 1;
    }
    .admission_caption h2 span:nth-child(7) {
        opacity: 0;
    }
    .admission_caption h1 span:nth-child(1) {
        width: 5.333333333333332vw;
    }
    .admission_caption h1 span:nth-child(2) {
        opacity: 1;
        width: 30px;
        margin: 0 5px 2.0860495436766624vw;
    }
    .admission_caption h1 span:nth-child(3) {
        width: 0;
        margin: 0;
    }
    .admission_caption h1 span:nth-child(4) {
        width: 9.444444444444445vw;
    }
    .admission_caption h1 span:nth-child(5) {
        width: 3vw;
        opacity: 0;
    }
    .admission_caption h1 span:nth-child(6) {
        width: 7.777777777777778vw;
        opacity: 1;
    }
    .admission_caption h1 span:nth-child(7) {
        opacity: 0;
    }
    .fc_caption h2 span:nth-child(1) {
        width: 44%;
    }
    .fc_caption h2 span:nth-child(2) {
        width: 54%;
        display: inline-block;
    }
    .fc_caption h2 span:nth-child(3) {
        width: 41%;
    }
    .fc_caption h2 span:nth-child(4) {
        width: 30%;
    }
    .fc_caption h2 span:nth-child(5) {
        display: none;
    }
    .cd_caption h2 span:nth-child(1) {
        width: 45%;
    }
    .cd_caption h2 span:nth-child(2) {
        width: 35%;
        display: inline-block;
    }
    .cd_caption h2 span:nth-child(3) {
        width: 20%;
    }
    .cd_caption h2 span:nth-child(4) {
        width: 6%;
        opacity: 0;
    }
    .cd_caption h2 span:nth-child(5) {
        display: none;
    }
    .cd_caption h2 span:nth-child(6) {
        width: 22%;
    }
    .iad_caption h2 span:nth-child(1) {
        width: 40%;
    }
    .iad_caption h2 span:nth-child(2) {
        display: inline-block;
        width: 19%;
    }
    .iad_caption h2 span:nth-child(3) {
        width: 22%;
        opacity: 0;
    }
    .iad_caption h2 span:nth-child(4) {
        display: inline-block;
        width: 62.5%;
    }
    .iad_caption h2 span:nth-child(5) {
        width: 9%;
    }
    .iad_caption h2 span:nth-child(6) {
        display: none;
    }
    .fbm_caption h2 span:nth-child(1) {
        width: 45%;
    }
    .fbm_caption h2 span:nth-child(2) {
        display: inline-block;
        width: 15.77574967405476vw;
    }
    .fbm_caption h2 span:nth-child(3) {
        width: 28%;
        opacity: 0;
    }
    .fbm_caption h2 span:nth-child(5) {
        display: none;
    }
    .fbm_caption h2 span:nth-child(6) {
        width: 1.303780964797914vw;
        opacity: 0;
    }
    .fbm_caption h2 span:nth-child(7) {
        width: 16%;
        opacity: 0;
    }
    .fcom_caption h2 span:nth-child(1) {
        width: 45%;
    }
    .fcom_caption h2 span:nth-child(2) {
        display: inline-block;
        width: 15.77574967405476vw;
    }
    .fcom_caption h2 span:nth-child(3) {
        width: 28%;
        opacity: 0;
    }
    .fcom_caption h2 span:nth-child(5) {
        display: none;
    }
    .fcom_caption h2 span:nth-child(6) {
        width: 1.303780964797914vw;
        max-width: 10px;
        opacity: 0;
    }
    .fcom_caption h2 span:nth-child(7) {
        width: 16%;
        opacity: 0;
    }
    .content_page .section_edge {
        padding: 20.860495436766623vw 0 66px;
    }
    .default-chatbot-indicator {
        display: none !important;
    }
}

@media only screen and (max-width: 766px) {
    .postfigure_page {
        height: 35.900783289817234vw;
    }
    .indus-iframe,
    iframe.slider_frame_page {
        height: 35.50913838120104vw;
    }
}

@media only screen and (max-width: 720px) {
    .svg_tags_item svg text {
        font-size: 1.7361111111111112vw;
    }
    .home-desi-cat,
    .postfigure {
        height: 36.52777777777778vw;
    }
    iframe.slider_frame {
        height: 35.97222222222222vw;
    }
    .postfigure_page {
        height: 35.833333333333336vw;
    }
    .indus-iframe,
    iframe.slider_frame_page {
        height: 35.27777777777778vw;
    }
}

@media only screen and (max-width: 667px) {
    .ftr_balls {
        width: 60%;
    }
    .gototop {
        height: 73px;
    }
    .svg_tags_item svg text {
        font-size: 1.8740629685157422vw;
    }
    .profilecard_inside_tab {
        padding: 0 20px 12.429335071707953vw;
    }
    .profilecard_alignment {
        padding: 8.704954367666231vw 0 12.677053455019557vw;
    }
    .admissions_btm_lottie {
        top: 15vw;
    }
    .tranferiiad_lotte_border {
        padding: 57vw 0 0;
        border: 0;
    }
    .form_papper_wrp .npf_wgts {
        height: 500px;
    }
}

@media only screen and (max-width: 600px) {
    ul.mbl_menu_items>li>a {
        font-size: 18px;
        padding: 13px 20px 13px 34px;
    }
    i.mbl_menu_expend_icon {
        height: 51px;
        width: 80px;
    }
    i.mbl_menu_expend_icon span {
        width: 22px;
    }
    ul.mbl_menu_items>li>ul {
        padding: 0 0 18px 50px;
    }
    .home_tags_heading h4 {
        margin: -9.45vw 0 0;
    }
    .sidebarheading h2,
    .sidebarheading h4 {
        font-size: 28px;
    } 
    .sidebarheading p {
        font-size: 28px;
    }
    .people_career_heading h4 {
        font-size: 36px;
        line-height: 38px;
    }
    .leftbar_line_text h5 {
        font-size: 52px;
        line-height: 48px;
    }
    .sidebarheading h2 label:nth-child(1) span,
    .sidebarheading h4 label:nth-child(1) span {
        top: 20px;
    } 
    .sidebarheading p label:nth-child(1) span {
        top: 20px;
    }
    .left_subtitle {
        padding-top: 0;
    }
    .left_subtitle h6 {
        font-size: 24px;
    }
    i.and_size_hometitle:after {
        width: 18px;
        height: 18px;
        margin: 0 4px;
    }
    .left_group_logo img {
        width: 188px;
        max-width: 100%;
        height: auto; 
    }
    .kingston_stokeline_heading h4 {
        font-size: 10.583333333333334vw;
    }
    .date_announcement_item {
        padding: 0 0 20px;
    }
    .date_announcement_item h5 {
        font-size: 20px;
        line-height: 26px;
    }
    .date_announcement_item p {
        font-size: 18px;
        line-height: 20px;
    }
    .yellow_box_top_ttl h4 .mbl_redyell_spn_5 {
        width: 105px;
        height: 0.8578947368421052vw;
    }
    .ftr_heading>a.mdl_ftr_logo {
        width: 115px;
    }
    .ftr_heading h4 {
        font-size: 52px;
        line-height: 54px;
    }
    .ftr_heading p {
        font-size: 52px;
        line-height: 54px;
    }
    .ftr_contact_info p,
    .ftr_menu_list li a,
    .profilecard_title span {
        font-size: 16px;
        line-height: 18px;
    }
    .ftr_balls {
        width: 67%;
    }
    .banner_caption {
        top: 36.6%;
    }
    .bottom_edge_text h1,
    .bottom_edge_text h2,
    .bottom_edge_text h4,
     .bottom_edge_text p.p1	{
        font-size: 36px;
        line-height: 38px;
        white-space: initial;
        text-align: left;
        margin-bottom: -4px;
    }
    .press_hold {
        bottom: 3.5000000000000004vw;
        right: 16.833333333333332vw;
        width: 16.666666666666664vw;
        height: 16.666666666666664vw;
    }
    .press_hold p {
        font-size: 2.666666666666667vw;
        line-height: 2.666666666666667vw;
    }
    .svg_tags_item svg text {
        font-size: 2.083333333333333vw;
    }
    .filter_tabs_btn li.nav-item a {
        font-size: 16px;
        height: 45px;
    }
    .tags_category_heading h4 {
        font-size: 10vw;
    }
    .story_card_wpr {
        padding: 0.33333333333333337vw 20px 0;
    }
    .story_cell_wrp.grid_cell_item:after {
        background-position: 0 45px;
    }
    .story_post_category {
        font-size: 2.3333333333333335vw;
        padding: 2.5vw 2.3333333333333335vw 0;
        line-height: initial;
    }
    .story_post_heading {
        font-size: 3vw;
        line-height: 3.6666666666666665vw;
        padding: 1.6666666666666667vw 2.3333333333333335vw 0;
        height: 9.333333333333334vw;
        -webkit-line-clamp: 2;
        margin: 0 0 2.5vw;
    }
    .story_sort_desc {
        font-size: 2.666666666666667vw;
        line-height: 3.5000000000000004vw;
        padding: 0 2.3333333333333335vw;
        margin: 0 0 6.833333333333333vw;
        height: 7.833333333333334vw;
    }
    .story_postdate {
        font-size: 2.3333333333333335vw;
        padding: 0 2.3333333333333335vw 1.6666666666666667vw;
        line-height: initial;
    }
    .story_postfigure iframe.thecircle_video,
    .story_postfigure img {
        height: calc(var(--gridcell) * 3);
        max-width: 100%; 
    }
    .loadmore_cta {
        height: 12.833333333333332vw;
    }
    .popup_body_hold_form {
        width: 100%;
    }
    .popup_form_area .npf_wgts {
        height: calc(100vh - 60px);
    }
    .stroketext_anim_inner h4 {
        font-size: 7.666666666666666vw;
    }
    .profilecard_space {
        padding-bottom: 12.2vw;
    }
    .faculty_tabs_button li.nav-item a {
        height: 12.3vw;
    }
    .profilecard_inside_tab .profilecard_profile_img picture img {
        height: 37.32vw;
    }
    .profilecard_title h5 {
        font-size: 22px;
        line-height: 24px;
        margin: 0 0 5px;
    }
    .profilecard_title h3 {
        font-size: 22px;
        line-height: 24px;
        margin: 0 0 5px;
    }
    .popup_short_view {
        height: 35.99vw;
    }
    .career_anim_space {
        display: none;
    }
    .popup_body_hold {
        min-width: 100%;
        height: 100vh;
    }
    .header_popup {
        height: initial;
        padding: 5px 16px 8px;
    }
    .profile_name span {
        font-size: 13px;
        line-height: 15px;
    }
    .popup_description {
        padding: 26px 16px 60px;
    }
    .popup_description p {
        font-size: 15px;
        line-height: 24px;
    }
    .popup_description h6 {
        margin: 18px 0 8px;
    }
    .popup_description h6+ul {
        margin-top: 0;
    }
    .popup_description a {
        word-break: break-all;
        font-size: 15px;
    }
    .popup_description ul li {
        font-size: 15px;
    }
    .profile_name h5 {
        font-size: 24px;
        line-height: 28px;
        margin: 0 0 2px;
    }
    .underline_link_list li a {
        font-size: 20px;
    }
    .mbl_course_inner,
    .mbl_course_item {
        width: 100%;
    }
    .mbl_crse_copy {
        height: initial;
    }
    .pedagogy_right {
        width: 100%;
        background: #ffd815;
    }
    .inception_wrp .lottie_inception {
        height: 57.333333333333336vw;
    }
    .inception_wrp .lottie_inception lottie-player {
        width: 107.5vw;
        height: 57.333333333333336vw;
        left: 48vw;
    }
    .our_pursuip_wrp .lottie_inception {
        height: 61.33333333333333vw;
    }
    .our_pursuip_wrp .lottie_inception lottie-player {
        width: 107.33333333333333vw;
        height: 61.33333333333333vw;
        left: 48vw;
    }
    .our_pursuip_wrp .section_edge_left {
        padding-top: 59.166666666666664vw;
    }
    .zigzag_flex .zigzag_item {
        padding-top: 10px !important;
    }
    .Pillter_top_title h4 {
        padding: 0;
        margin-bottom: 15px;
        font-size: 26px;
        line-height: 34px;
    }
    .Pillter_top_title h5 {
        padding: 0;
        font-size: 26px;
        line-height: 23px;
    }
    .flower_lottie {
        width: 60vw;
        height: 60vw;
        top: 120px;
        right: -36%;
    }
    .pillars_info_wrp {
        padding: 180px 0 0;
    }
    .pillars_info_item h5 {
        font-size: 22px;
        line-height: initial;
        padding: 0 0 6px;
    }
    .pillars_info_item p {
        font-size: 16px;
        line-height: initial;
    }
    .sticky_heading_star {
        padding: 110px 0 0;
    }
    .sticky_heading_star h4 {
        font-size: 45px;
        line-height: 45px;
        margin: 0;
    }
    .five_lottie {
        width: 19.166666666666668vw;
        right: -20%;
    }
    .commoncaption_fivepoint {
        padding: 38px 0 0;
    }
    .bottomtxt_anima_abt_spc {
        padding: 50px 0;
    }
    .bottomline_animation_inner span {
        font-size: 20px;
        line-height: 38px;
    }
    .accordian_content p,
    .mega_accor_heading p {
        line-height: 23px;
        font-size: 16px;
    }
    .custom_accordian_item.active .mega_accor_heading {
        padding-bottom: 15px;
    }
    .mega_accor_heading h4 {
        font-size: 32px;
        line-height: 36px;
        padding: 0 0 6px;
    }
    .mega_accor_heading p {
        text-overflow: ellipsis;
        overflow: hidden;
        -webkit-line-clamp: initial;
        -webkit-box-orient: vertical;
        padding: 0;
    }
    .fullwith_sec_title h6 {
        margin-bottom: 50px;
    }
    .fullwith_sec_title h4 {
        font-size: 9.588579795021962vw;
        line-height: 9.661786237188873vw;
    }
    .vertical_textslider_wrp {
        height: calc(var(--gridcell) * 14);
    }
    .textslider_center {
        padding: calc(var(--gridcell) * 1.8) 0;
    }
    .textslider_center h6 {
        font-size: 6vw;
    }
    .textslider_hold {
        padding-top: 94vw;
    }
    .and_text {
        top: 2vw;
    }
    .and_text img {
        width: 8.333333333333332vw;
        max-width: 100%;
        height: auto; 
    }
    .abt_common_aliiances {
        padding: 5px 0 0;
    }
    .abt_common_aliiances h5 {
        font-size: 22px;
        line-height: 28px;
    }
    .brand_text_wrp {
        padding: 30px 0 0;
    }
    .commoncaption_partnership h5,
    ul.dashleft li {
        font-size: 22px;
        line-height: 24px;
    }
    .logo_and_content div.left_logo,
    .quotes_slider_wpr.section_activated:after,
    .quotes_slider_wpr.section_activated:before,
    .quotes_slider_wpr:after,
    .quotes_slider_wpr:before {
        width: 90px;
    }
    .left_logo+.right_txt_copy {
        width: calc(100% - 110px);
    }
    .mbl_commoncaption_partnership h5 {
        font-size: 22px;
        line-height: 28px;
    }
    .mbl_commoncaption_partnership .logo_and_content {
        padding-top: 10px;
    }
    .howweteach_lottie_banner lottie-player {
        width: 90vw;
    }
    .quotes_slide h4 {
        font-size: 22px;
    }
    .quotes_slide p {
        font-size: 22px;
    }
    .quotes_text_container {
        padding: 0 20px;
    }
    .quotes_pagination,
    .quotes_slide_text span.author_txt {
        font-size: 16px;
    }
    .quotes_btn_wrp {
        width: 64px;
    }
    .quotes_btn_next,
    .quotes_btn_prev {
        width: 24px;
        height: 24px;
    }
    .navtabs_cta li a {
        height: 64px;
        font-size: 28px;
        line-height: 58px;
    }
    .accordian_heading p,
    .gridcell_slide_text_item p {
        font-size: 16px;
        line-height: 23px;
        -webkit-line-clamp: initial;
    }
    .gridcell_slide_text_item {
        padding-top: 5vw;
        height: initial;
    }
    .gridcell_slide_text_item p {
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        -webkit-box-orient: vertical;
        display: -webkit-box;
    }
    .grid_sldr_mblbar {
        margin-bottom: 7.000000000000001vw;
    }
    .gridcell_btn_next,
    .gridcell_btn_prev {
        width: 5vw;
        height: 5vw;
    }
    .blog_slider_wrp .explore_more_cta,
    .home_blogslider_wrp .explore_more_cta {
        display: none;
    }
    .cta_pagination_nav {
        flex-wrap: wrap;
        padding-top: 20px;
        flex-direction: initial;
    }
    .success_leftright_nav {
        width: 100%;
    }
    .profile_pagination_nav {
        flex-wrap: wrap;
    }
    .stories_pagination,
    .success_pagination {
        position: static;
        margin: 0 0 30px;
        width: 100%;
        height: 3px;
        background: #dcdcdc;
    }
    .stories_pagination span,
    .success_pagination span {
        display: block;
        position: static !important;
        height: 4px;
        background: #000 !important;
    }
    .profile_accordian_title>div,
    .success_section_heading {
        display: block;
    }
    .leftbar_pi_icon img,
    .success_section_heading img {
        width: 90px;
        max-width: 100%;
        height: auto; 
    }
    .success_section_heading h4 {
        font-size: 56px;
        line-height: 56px;
        padding: 0;
        width: 50%;
        margin: 0 0 0 auto;
    }
  /*  .clickaccordian, .profile_accordian_title 
    .profile_accordian_item {
        height: 25vw;
    }  */
    .profile_accordian_title {
        flex-wrap: wrap;
        width: 100%;
        align-items: center;
    }
    .profile_accordian_title h5 {
        width: 100%;
        font-size: 24px;
    }
    .profile_accordian_title h3 {
        width: 100%;
        font-size: 24px;
    }
    .profile_accordian_title span.faculty_profile {
        width: 100%;
        display: block;
        font-size: 18px;
    }
    .profile_accordian_item .profile_accordian_title .plusminus_anim {
        position: absolute;
        right: 20px;
        top: 34px;
    }
    ul.dashleft li {
        font-size: 18px;
        padding: 0 0 10px 21px;
    }
    ul.dashleft li:before {
        width: 14px;
        top: 12px;
    }
    .common_caption h5 {
        font-size: 22px;
        line-height: 34px;
    }
    .admissions_btm_lottie {
        top: 16vw;
    }
    .tranferiiad_lotte_border {
        padding: 60vw 0 0;
        border: 0;
    }
    .lateral_stroke_admsn {
        top: 31vw;
    }
    .lateral_stroke_admsn.leftbar_line_text h5 {
        font-size: 8.333333vw;
    }
    .syncslide_top_wrp {
        padding-top: 22.7vw;
    }
    .syncslide_top_title h4 {
        font-size: 10vw;
    }
    .mbl_syncslider_lifeiiad {
        padding: 14.65vw 20px 0;
    }
    .mbl_syncslider_lifeiiad .mbl_course_border {
        padding: 0 0 2.257561929595828vw;
    }
    .mbl_syncslider_lifeiiad .mbl_course_item {
        width: 100%;
    }
    .mbl_syncslider_lifeiiad .mbl_crse_img img {
        height: 87.5vw;
        max-width: 100%; 
    }
    .mbl_syncslider_lifeiiad .mbl_crse_copy {
        height: 15.9535332464146vw;
    }
    .mbl_syncslider_lifeiiad .mbl_crse_copy p {
        font-size: 3vw;
        line-height: 4.666666666666667vw;
        -webkit-line-clamp: 5;
    }
    .brandlogo_content_wrp .section_edge_brandlogo {
        padding-bottom: 80px;
    }
    .leftbar_pi_icon img {
        width: 72px;
    }
    .industry_speak_wrp .leftbar_line_text h5 {
        width: 50%;
        margin: 0 0 0 auto;
        font-size: 8.88888888888889vw;
        line-height: 10vw;
    }
    .industry_speak_wrp .explore_more_cta {
        display: none;
    }
    .blogdetail_heading_wrp .section_edge {
        padding: 40px 0 0;
    }
    .post_info_item p {
        font-size: 14px;
        line-height: 18px;
    }
    .common_caption p+h4 {
        padding-top: 40px;
    }
    .notfound_inner h2 {
        font-size: 80px;
    }
    .gobal_searh_form form input.search_field {
        font-size: 18px;
    }
    .gobal_searh_form form input.search_submit {
        font-size: 16px;
        width: 100px;
    }
    .show_notice_alert {
        padding: 0 10px 4px;
        height: 30px;
    }
    .notification_alert>div p {
        font-size: 12px;
        text-align: center;
    }
    .notification_alert>div {
        width: 90%;
    }
    .notification_alert>a.close_notification {
        right: 6px;
        top: -6px;
    }
    .content_page .section_edge {
        padding: 23vw 0 66px;
    }
}

@media only screen and (max-width: 580px) {
    ul.mbl_menu_items>li>a {
        padding: 13px 20px 13px 30px;
    }
    .pillars_info_item {
        padding-top: 22px;
    }
    .home-desi-cat,
    .postfigure {
        height: 41.03448275862069vw;
    }
    iframe.slider_frame {
        height: 40.3448275862069vw;
    }
    .postfigure_page {
        height: 40.17241379310345vw;
    }
    .indus-iframe,
    iframe.slider_frame_page {
        height: 39.48275862068966vw;
    }
}

@media only screen and (max-width: 560px) {
    .svg_tags_item svg text {
        font-size: 2.232142857142857vw;
    }
}

@media only screen and (max-width: 520px) {
    .kingston_stokeline_heading h4 {
        font-size: 9.9vw;
    }
    .date_announcement_item h5 {
        font-size: 18px;
        line-height: 24px;
    }
    .date_announcement_item p {
        font-size: 16px;
        line-height: 18px;
    }
    .ftr_balls {
        width: 64%;
    }
    .gototop {
        height: 60px;
    }
    .svg_tags_item svg text {
        font-size: 2.403846153846154vw;
    }
    .story_card_wpr {
        padding: 0 20px;
    }
    .tabs_result_wrp {
        padding: 9.423076923076923vw 0 0;
    }
    .story_card_item_hold {
        height: calc(var(--gridcell) * 10);
    }
    .story_post_category {
        font-size: 2.6923076923076925vw;
        padding: 3.076923076923077vw 3.076923076923077vw 0;
        line-height: 5.555555555555555vw;
    }
    .story_card_item_hold {
        width: 100%;
    }
    .story_post_heading {
        font-size: 3.8461538461538463vw;
        line-height: 5vw;
        height: 19.230769230769234vw;
        padding: 3.076923076923077vw 3.076923076923077vw 0;
        margin: 0 0 2.5vw;
        -webkit-line-clamp: 3;
    }
    .story_sort_desc {
        font-size: 3.4615384615384617vw;
        line-height: 4.615384615384616vw;
        height: initial;
        margin: 0 0 17.115384615384617vw;
        padding: 0 3.076923076923077vw;
    }
    .story_postdate {
        font-size: 2.6923076923076925vw;
        padding: 0 3.076923076923077vw 10px;
        line-height: initial;
    }
    .story_postfigure iframe.thecircle_video,
    .story_postfigure img {
        height: calc(var(--gridcell) * 5);
        max-width: 100%; 
    }
    .loadmore_cta span {
        font-size: 3.6111111111111107vw;
    }
    .loadmore_cta .svg_border {
        width: 12.522222222222221vw;
    }
    .loadmore_cta .svg_border svg {
        width: 4.722222222222222vw;
    }
    .popup_body_hold_form {
        min-width: 100%;
    }
    .popupslider_sidebarheading h4 {
        font-size: 24px;
    }
    .popupslider_sidebarheading h4 label span {
        height: 3px;
        margin: -4px 10px 0 0;
    }
    .profilecard_mdl_people .profilecard_item {
        width: 100%;
        margin-top: 40px;
    }
    .profilecard_profile_img picture img {
        height: 74.95vw;
        max-width: 100%; 
    }
    .profilecard_space {
        overflow: hidden;
    }
    .faculty_tabs_wrp .faculty_tabs_button {
        flex-wrap: nowrap;
        overflow-y: hidden;
        min-width: 100%;
    }
    .faculty_tabs_button li.nav-item {
        min-width: 140px;
        padding: 0;
    }
    .faculty_tabs_button li.nav-item a {
        font-size: 16px;
    }
    .profilecard_inside_tab {
        padding: 0 20px 12.229335071707953vw;
    }
    .profilecard_inside_tab .profilecard_item {
        width: 100%;
    }
    .open_popup {
        width: 20px;
        height: 20px;
    }
    .profilecard_top_heading {
        padding: 14px;
    }
    .profilecard_top {
        height: 17.307692307692307vw;
    }
    .profilecard_profile_img {
        padding-top: 20vw;
    }
    .profilecard_inside_tab .profilecard_profile_img picture img {
        height: 74.75vw;
    }
    .popup_short_view {
        height: 56.65vw;
        padding: 0 14px;
    }
    .popup_body_hold.active {
        overflow: scroll;
        height: -webkit-fill-available;
    }
    .popup_description {
        padding: 26px 16px 8px;
        height: auto;
    }
    .footer_popup {
        position: sticky;
        padding: 0.7320644216691069vw 0.928258vw;
    }
    .flower_lottie {
        width: 64vw;
        height: 64vw;
        top: 158px;
        right: -40%;
    }
    .fullwith_sec_title h4 {
        font-size: 40px;
        line-height: 40px;
    }
    .abtus_bridginggaps_ttl h4.title_line_anim span.animate_title2 {
        width: calc(24.075619vw - 20px);
    }
    .core_philosophy_wrp .abt_common_text h4 {
        font-size: 26px;
        line-height: 34px;
    }
    .pi_text_wrp lottie-player {
        width: 80px;
    }
    .pi_text_wrp p,
    .pi_text_wrp span {
        font-size: 30px;
        margin-bottom: 9px;
    }
    .profilecard_sec_heading {
        padding-top: 22.30769230769231vw;
    }
    .course_leader {
        width: 27%;
        top: 20.5vw;
        right: 8.5vw;
    }
    .course_leader h4 {
        font-size: 8.88888888888889vw;
        line-height: 11.538461538461538vw;
    }
    .course_leader p {
        font-size: 8.88888888888889vw;
        line-height: 11.538461538461538vw;
    }
    .profilecard_sec_heading .sidebarheading h4 {
        font-size: 6.666666666666667vw;
        line-height: initial;
    }
    .profilecard_sec_heading .sidebarheading p {
        font-size: 6.666666666666667vw;
        line-height: initial;
    }
    .prgrm_dtl_sidebarheading h4 label:nth-child(1) span {
        top: 4.807692307692308vw;
    }
    .profilecard_alignment {
        padding: 6.038462vw 0 12.392307692307692vw;
    }
    .faculty_card_items .profilecard_item {
        width: 100%;
        margin-top: 12.403846153846153vw;
    }
    .home-desi-cat,
    .postfigure {
        height: 47.5vw;
    }
    iframe.slider_frame {
        height: 46.53846153846154vw;
    }
    .postfigure_page {
        height: 35.96153846153846vw;
    }
    .indus-iframe,
    iframe.slider_frame_page {
        height: 35.38461538461539vw;
    }
}

@media only screen and (max-width: 519px) {
    .postfigure_page {
        height: 61.27167630057804vw;
    }
    .indus-iframe,
    iframe.slider_frame_page {
        height: 60.69364161849711vw;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1023px) {
    .ftr_menu_list li {
        width: 31%;
    }
    .ftr_menu_list li:nth-child(3n+1) {
        width: 34.4%;
    }
    .ftr_menu_list li:nth-child(3n+2) {
        width: 34.2%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1023px) {
    .date_announcement_item:nth-child(3n+1) {
        width: calc(33.33% - 13px);
    }
    .date_announcement_item {
        width: 34.2%;
    }
}

@media only screen and (min-width: 601px) {
    .stories_pagination {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .mobile_toggle {
        width: 12.8vw;
    }
    .grid_rowline_one:after {
        background-position: -1px 119px;
    }
    .by_year_heading {
        height: 60px;
    }
    .by_year_heading h4 {
        font-size: 72px;
        line-height: 32px;
    }
    .moving_arrow_link a span.movinglink_text {
        font-size: 13px;
        line-height: 15px;
    }
    .marquee_track li a {
        font-size: 15px;
    }
    .marquee_track li img {
        width: 12px;
        max-width: unset !important;
        height: auto; 
    }
    .success_leftright_nav {
        width: 100%;
        padding-bottom: 10px;
    }
    .cta_pagination_nav {
        flex-wrap: wrap;
        padding-top: 20px;
        flex-direction: initial;
    }
    .stories_pagination {
        position: static;
        margin: 0 0 20px;
        width: 100%;
        height: 3px;
        background: #dcdcdc;
    }
    .stories_pagination span {
        display: block;
        position: static !important;
        height: 4px;
        background: #000 !important;
    }
    .svg_tags_item svg text {
        font-size: 2.604166666666667vw;
    }
    ul.mbl_menu_items>li>a {
        padding: 13px 20px 13px 25px;
    }
    .press_hold {
        bottom: 2.5vw;
        right: 15.833333333333332vw;
        width: 18.88888888888889vw;
        height: 18.88888888888889vw;
    }
    .press_hold p {
        font-size: 3.3333333333333335vw;
        line-height: 3.888888888888889vw;
    }
    .svg_small_pusle {
        width: 9.722222222222223vw;
        height: 9.722222222222223vw;
    }
    .stroketext_anim_inner h4 {
        font-size: 9.166666666666666vw;
    }
    .profilecard_inside_tab .profilecard_item {
        margin: 12.5vw 0 0;
    }
    .people_career_heading h4 {
        font-size: 32px;
        line-height: 34px;
    }
    .corecouncil_linetext {
        width: 100%;
        padding: 0 0 10px;
    }
    .leftbar_line_text h5 {
        font-size: 46px;
        line-height: 42px;
    }
    .home_banner_item,
    .homemain_banner_inner,
    .homemain_banner_wrp {
        height: calc(100vh - 36px);
    }
    .home_door_image {
        height: 100%;
    }
    .inception_wrp .lottie_inception {
        height: 60.62499999999999vw;
    }
    .inception_wrp .lottie_inception lottie-player {
        width: 113.75vw;
        height: 60.62499999999999vw;
        left: 46vw;
    }
    .our_pursuip_wrp .lottie_inception {
        height: 65vw;
    }
    .our_pursuip_wrp .lottie_inception lottie-player {
        width: 113.54166666666667vw;
        height: 65vw;
        left: 46vw;
    }
    .our_pursuip_wrp .section_edge_left {
        padding-top: 62.083333333333336vw;
    }
    .zigzag_flex .zigzag_item {
        width: 72%;
    }
    .five_lottie {
        width: 30vw;
        right: -33.2%;
    }
    .logo_grid_wrp {
        background: 0 0;
    }
    .logo_grid_wrp div.logo_grid_item {
        width: 48%;
    }
    .slidebar_lottie {
        width: 240px;
    }
    .pagination_of span,
    .quotes_slide h4 {
        font-size: 18px;
    }
    .quotes_slide p {
        font-size: 18px;
    }
    .quotes_slide_text span.author_txt {
        font-size: 14px;
    }
    .leftspace_section_wrp {
        padding: 70px 0 0;
    }
    .textrail_caption h4 {
        font-size: 28px;
    }
    .textrail_caption_btm_item {
        padding-top: 30px;
    }
    .textrail_caption_btm_inner p {
        font-size: 16px;
        line-height: 23px;
    }
    .custom_accordian_inner {
        padding: 0;
    }
    .navtabs_cta li a {
        height: 54px;
        font-size: 22px;
        line-height: 50px;
    }
    .plusminus_anim {
        width: 16px;
        height: 16px;
        right: 0;
    }
    .accordian_heading h4,
    .profile_accordian_title h5 {
        font-size: 22px;
    } 
    .accordian_heading h3 {
        font-size: 22px !important;
		line-height: initial !important;
    }  
    .profile_accordian_title h3 {
        font-size: 22px;
    }
    .custom_accordian_item {
        padding: 20px 20px 15px;
    }
    .gridcell_slide_text_item p {
        font-size: 16px;
        line-height: 22px;
        -webkit-line-clamp: initial;
    }
    .grid_sldr_mblbar {
        margin-bottom: 20px;
    }
    .gridcell_btn_next,
    .gridcell_btn_prev {
        width: 6.666666666666667vw;
        height: 6.666666666666667vw;
    }
    .success_section_heading img {
        width: 76px;
        max-width: 100%;
        height: auto; 
    }
    .success_section_heading h4 {
        font-size: 46px;
        line-height: 46px;
    }
    .profile_accordian_title span.faculty_profile {
        font-size: 16px;
    }
    .entranceexams_item ul li {
        width: initial;
        padding: 0 20px 0 15px;
        margin: 5px 0 0;
    }
    .lateral_stroke_admsn {
        top: 34vw;
    }
    .lateral_stroke_admsn.leftbar_line_text h5 {
        font-size: 8.333333vw;
    }
    .mbl_syncslider_lifeiiad .mbl_crse_copy p {
        font-size: 3.75vw;
        line-height: 5.833333333333333vw;
    }
    .content_page .section_edge {
        padding: 27vw 0 66px;
    }
}

@media only screen and (max-width: 420px) {
    ul.mbl_menu_items>li>a {
        padding: 13px 20px;
    }
    i.mbl_menu_expend_icon {
        width: 50px;
    }
    i.mbl_menu_expend_icon span {
        width: 18px;
    }
    ul.mbl_menu_items>li>ul {
        padding: 0 0 18px 30px;
    }
    .nav_tgl_btn {
        width: 26px;
        height: 20px;
    }
    .nav_tgl_btn span:nth-child(2) {
        top: 6px;
    }
    .nav_tgl_btn span:nth-child(3) {
        top: 12px;
    }
    .nav_tgl_btn span:nth-child(4) {
        top: 18px;
    }
    .nav_tgl_btn.open span:nth-child(2),
    .nav_tgl_btn.open span:nth-child(3) {
        top: 10px;
    }
    .sidebarheading h1 label:nth-child(1) span,
    .sidebarheading h2 label:nth-child(1) span,
    .sidebarheading h4 label:nth-child(1) span {
        top: 16px;
    } 
    .sidebarheading p label:nth-child(1) span {
        top: 16px;
    }
    .sidebarheading h1,
    .sidebarheading h2,
    .sidebarheading h4 {
        font-size: 26px !important;
        line-height: 30px !important; position: relative;
    } 
    .sidebarheading p {
        font-size: 26px;
        line-height: 30px;
    }
    .left_subtitle h6 {
        font-size: 20px;
    }
    i.and_size_hometitle:after {
        width: 15px;
        height: 15px;
        margin: 0 2px -1px;
    }
    .grid_rowline_one:after {
        background-position: -1px 109px;
    }
    .by_year_heading {
        height: 50px;
    }
    .by_year_heading h4 {
        font-size: 72px;
        line-height: 34px;
    }
    .moving_arrow_link a span.movinglink_text {
        font-size: 13px;
        line-height: 15px;
    }
    .moving_arrow_link {
        width: 50%;
    }
    .moving_arrow_link a span.movinglink_svg svg {
        width: 20px;
    }
    .yellow_box_top_ttl h4 .mbl_redyell_spn_5 {
        width: 112px;
    }
    .yellow_box_bottom_desc div {
        font-size: 16px;
        line-height: initial;
    }
    .yellow_box_bottom_desc svg {
        margin-top: 0;
        width: 45px;
    }
    .ftr_inner {
        padding: 35px 0 50px;
    }
    .ftr_heading>a.mdl_ftr_logo {
        width: 106px;
    }
    .ftr_heading h4 {
        font-size: 46px;
        line-height: 52px;
    }
    .ftr_heading p {
        font-size: 46px;
        line-height: 52px;
    }
    .ftr_menu_list li {
        padding: 10px 0 0;
    }
    .ftr_balls {
        width: 100%;
    }
    .ftr_balls img {
        width: 82.5%;
        max-width: 100%;
        height: auto; 
    }
    .gototop {
        width: 17.5%;
        height: 73px;
    }
    .gototop a svg {
        width: 25px;
        height: 25px;
    }
    .home_ftr_top_lnks {
        padding: 0 0 180px;
    }
    .circle_svg_tag {
        padding: 0 0 7.380952380952381vw;
    }
    .svg_tags_item {
        min-width: 25vw;
    }
    .svg_tags_item svg text {
        font-size: 2.976190476190476vw;
    }
    .tabs_result_wrp {
        padding: 5.555555555555555vw 0 0;
    }
    .story_post_category {
        font-size: 3.3333333333333335vw;
        padding: 3.076923076923077vw 3.076923076923077vw 0;
        line-height: 5.555555555555555vw;
    }
    .story_card_item_hold {
        width: 100%;
    }
    .story_post_heading {
        font-size: 4.444444444444445vw;
        line-height: 5.833333333333333vw;
        height: 20vw;
        padding: 1.9230769230769231vw 3.076923076923077vw 0;
        margin: 0 0 2.5vw;
        -webkit-line-clamp: 3;
    }
    .story_sort_desc {
        font-size: 4.444444444444445vw;
        line-height: 5.555555555555555vw;
        height: initial;
        margin: 0 0 13.095238095238097vw;
        padding: 0 3.076923076923077vw;
    }
    .story_postdate {
        font-size: 3.6111111111111107vw;
        padding: 0 3.076923076923077vw 1.9230769230769231vw;
        line-height: 5vw;
    }
    .loadmore_cta span {
        font-size: 3.6111111111111107vw;
        color: #000 !important;
    }
    .loadmore_cta .svg_border {
        width: 12.35vw;
    }
    .loadmore_cta .svg_border svg {
        width: 4.722222222222222vw;
    }
    .profilecard_inside_tab .profilecard_item {
        margin: 12.45vw 0 0;
    }
    .banner_caption {
        top: 36.85%;
    }
    .inception_wrp .lottie_inception {
        height: 68.57142857142857vw;
    }
    .inception_wrp .lottie_inception lottie-player {
        width: 128.57142857142858vw;
        height: 68.57142857142857vw;
        left: 42vw;
    }
    .our_pursuip_wrp .lottie_inception {
        height: 73.80952380952381vw;
    }
    .our_pursuip_wrp .lottie_inception lottie-player {
        width: 128.57142857142858vw;
        height: 73.80952380952381vw;
        left: 42vw;
    }
    .our_pursuip_wrp .section_edge_left {
        padding-top: 71.9047619047619vw;
    }
    .flower_lottie {
        width: 70vw;
        height: 70vw;
        top: 170px;
        right: -45%;
    }
    .fullwith_sec_title h6 {
        font-size: 24px;
    }
    .fullwith_sec_title h4 {
        font-size: 9.1vw;
        line-height: 10.1vw;
    }
    .abtus_bridginggaps_ttl h4.title_line_anim span.animate_title1 {
        width: calc(10.03780964797914vw - 20px);
        max-width: initial;
    }
    .abtus_bridginggaps_ttl h4.title_line_anim span.animate_title2 {
        width: calc(18.075619vw - 20px);
        max-width: initial;
    }
    .profilecard_alignment {
        padding: 6.038462vw 0 12.312307692307692vw;
    }
    .profile_accordian_item.active {
        height: 682px;
    }
}

@media only screen and (max-width: 380px) {
    .gototop {
        height: 60px;
    }
    .svg_tags_item svg text {
        font-size: 3.289473684210526vw;
    }
    .right_spacebar_popup {
        padding: 20px 28px 0;
    }
    .popup_slider_nav {
        width: calc(100%);
    }
    .profilecard_inside_tab .profilecard_item {
        margin: 12.415vw 0 0;
    }
    .flower_lottie {
        width: 70vw;
        height: 70vw;
        top: 170px;
        right: -45%;
    }
    .pillars_info_wrp {
        padding: 180px 0 0;
        width: 80vw;
    }
    .success_section_heading img {
        width: 72px;
        max-width: 100%;
        height: auto; 
    }
    .success_section_heading h4 {
        font-size: 42px;
        line-height: 44px;
    }
    .content_page .section_edge {
        padding: 32vw 0 66px;
    }
}

@media only screen and (max-width: 360px) {
    .banner_caption {
        top: 36.85%;
    }
    .banner_caption h2 {
        font-size: 12.083333333333334vw;
        line-height: 12.63888888888889vw;
    }
    .banner_caption h1 {
        font-size: 12.083333333333334vw;
        line-height: 12.63888888888889vw;
    }
    
    .sidebarheading h4 {
        font-size: 24px;
    }
    .sidebarheading h3 {
        font-size: 24px;
    }
    .sidebarheading p {
        font-size: 24px;
    }
    .grid_rowline_one:after {
        background-position: -1px 105px;
    }
    .by_year_heading {
        height: 46px;
    }
    .by_year_heading h4 {
        font-size: 55px;
        line-height: 30px;
    }
    .svg_tags_item svg text {
        font-size: 3.4722222222222223vw;
    }
    .story_card_wpr {
        padding: 0 20px;
    }
    .profilecard_inside_tab .profilecard_item {
        margin: 12.375vw 0 0;
    }
    .leftbar_line_text h5 {
        font-size: 42px;
        line-height: 40px;
    }
    .inception_wrp .lottie_inception {
        height: 79.16666666666666vw;
    }
    .inception_wrp .lottie_inception lottie-player {
        width: 148.61111111111111vw;
        height: 79.16666666666666vw;
        left: 35vw;
    }
    .our_pursuip_wrp .lottie_inception {
        height: 85vw;
    }
    .our_pursuip_wrp .lottie_inception lottie-player {
        width: 148.61111111111111vw;
        height: 85vw;
        left: 35vw;
    }
    .our_pursuip_wrp .section_edge_left {
        padding-top: 83.33333333333334vw;
    }
    .flower_lottie {
        width: 80vw;
        height: 80vw;
        top: 160px;
        right: -52%;
    }
    .fullwith_sec_title h4 {
        font-size: 9.1vw;
        line-height: 10.1vw;
    }
    .textrail_caption h4 {
        font-size: 22px;
    }
    .success_inside_top h5 {
        font-size: 18px;
    }
    .success_inside_top h3 {
        font-size: 18px;
    }
    .success_inside_info_part span {
        font-size: 14px;
    }
    .profilecard_inner {
        padding: 0 0 12.0795919165580182vw;
    }
    .profile_accordian_item.active {
        height: 629.3px;
    }
    .textrail_bottom {
        padding-bottom: 18px;
    }
    .success_story_wrp .success_story_inner {
        padding-top: 40px;
    }
    .studio_section .section_edge {
        padding: 92px 0 6px;
    }
    .story_slider_inner {
        padding-top: 30px;
    }
    .syncslide_top_title h4 {
        font-size: 48px;
    }
    .syncslide_top_wrp {
        padding-top: 21.7vw;
    }
    span.linewidth {
        height: 1.1111111111111112vw;
        margin: 1.6666666666666667vw 0.5555555555555556vw 0;
    }
    .mbl_syncslider_lifeiiad {
        padding: 12.3vw 5.555555555555555vw 0;
    }
    .mbl_syncslider_lifeiiad .mbl_crse_copy p {
        font-size: 4.444444444444445vw;
        line-height: 6.388888888888888vw;
    }
    .home-desi-cat,
    .postfigure {
        height: 56.111111111111114vw;
    }
    iframe.slider_frame {
        height: 54.44444444444444vw;
    }
    .postfigure_page {
        height: 58.88888888888889vw;
    }
    .indus-iframe,
    iframe.slider_frame_page {
        height: 57.22222222222222vw;
    }
}

@media only screen and (max-width: 320px) {
	 .svg_tags_item svg text {
        font-size: 3.90625vw;
    }
}

.rightspace_item_right .key_features {
    display: flex;
}

.key_features .key_feature {
    width: 25%;
}

.course_commig .course_commig_right img,
.key_features .key_feature img,
.learn_four_c .learn_four_c_right img,
.think_with .think_with_right img {
    max-width: 100%;
    height: auto; 
}

.key_features~.textrail_syncslider {
    padding-top: 1.4641288433382138vw;
}

.learn_four_c {
    background-color: #5926c4;
}

.learn_four_c .learn_four_c_container {
    width: 59.6875%;
    margin: var(--zerounit) auto;
    padding: 2.23958333333vw 0 2.3vw;
    position: relative;
}

.learn_four_c .learn_four_c_inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.learn_four_c .learn_four_c_left {
    align-self: flex-end;
    padding: 0 0 3.239583vw;
}

.learn_four_c .learn_four_c_left h4 {
    color: #fff;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 5vw;
    font-weight: 700;
    line-height: 6.55vw;
    margin: 0 0 0-0.366vw;
    white-space: nowrap;
}

.learn_four_c .learn_four_c_left,
.learn_four_c .learn_four_c_right {
    width: calc(50% - 0.8463541666666666vw);
}

.tabs_accordian_wrp_cust_padd {
    padding: 6.71875vw 0;
}

.curriculum_tabs .custom_accordian_item:first-child {
    border-top: 1px solid #bebcbd80;
}

.curriculum_tabs .custom_accordian_item:last-child {
    border-bottom: 1px solid #bebcbd80;
}

.faq_wrp,
.faq_wrp .custom_accordian_item {
    background-color: #e9eeee;
}

.faq_wrp.tabs_accordian_wrp .section_edge {
    background: #e9eeee;
}

.quotes_slider_wpr.bgyellow_bar:after,
.quotes_slider_wpr.bgyellow_bar:before {
    content: "";
    background: var(--lightyellow);
    position: absolute;
    transition: 0.3s linear;
}

.quotes_slider_gap.bgyellow {
    background-color: var(--lightyellow);
    padding: 8.392387vw 0 6.588579795021962vw;
    position: relative;
    background-image: url(../images/quotes-white.png);
    background-repeat: no-repeat;
    background-position: right -7.320644216691069vw top 5.124450951683748vw;
    background-size: 19.98535871156662vw 18.669106881405565vw;
}

.program_for_you .date_announcement_item {
    padding: 0 10px 3.1478770131771596vw 0;
}

.program_for_you .date_announcement_item h5 {
    color: var(--black);
    font-weight: 700;
}

.program_for_you .date_announcement_item p {
    color: var(--black);
}

.think_with .think_with_container {
    width: 73.125%;
    margin: var(--zerounit) auto;
    padding: 6.695vw 0;
    position: relative;
}

.think_with .think_with_inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.think_with .think_with_left {
    padding: 0 0 2.23958333333vw;
}

.think_with .think_with_left h4 {
    color: #fff;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 4.6875vw;
    font-weight: 700;
    line-height: 4.947916666666667vw;
    margin: 0;
    white-space: normal;
}

.think_with .think_with_left,
.think_with .think_with_right {
    width: calc(50% - 0.8463541666666666vw);
}

.think_with h4 span:nth-child(1) {
    width: 2.635431918008785vw;
}

.think_with h4 span:nth-child(2) {
    width: 27%;
    opacity: 0;
}

.think_with h4 span:nth-child(3) {
    width: 49%;
    width: 3.95314787701vw;
}

.think_with h4 span:nth-child(4) {
    width: 5.27086383602vw;
}

.think_with h4 span:nth-child(5) {
    width: 7.90629575403vw;
}

.think_with h4 span:nth-child(6) {
    width: 2.635431918008785vw;
}

.think_with h4 span:nth-child(7) {
    width: 0.9%;
    opacity: 0;
}

.think_with h4 span:nth-child(8) {
    width: 5.27086383602vw;
}

.think_with.bgblack {
    background-color: var(--black);
}

.course_commig .course_commig_container {
    width: 59.6875%;
    margin: var(--zerounit) auto;
    position: relative;
    padding: 2.23958333333vw 0 4.47916666667vw;
}

.course_commig .course_commig_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.course_commig .course_commig_left {
    width: calc(65% - 0.8463541666666666vw);
}

.course_commig .course_commig_left_row {
    display: flex;
    align-items: flex-start;
}

.course_commig .course_commig_left_col2 {
    width: 50%;
    color: #fff;
}

.course_commig .course_commig_left_col2 h5 {
    font-weight: 700;
}

.course_commig .course_commig_left_col2 h5,
.course_commig .course_commig_left_col2 p,
.search_for_title p {
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    margin: 0;
}

.course_commig .course_commig_left_col2 h5,
.course_commig .course_commig_left_col2 p {
    color: #fff;
    font-size: 1.6276041666666667vw;
    line-height: 1.8880208333333333vw;
    white-space: normal;
}

.course_commig .course_commig_left_col2 p {
    font-weight: 400;
}

.course_commig .course_commig_left_col2 p span {
    display: block;
    font-size: 0.98125vw;
    line-height: 1.5625vw;
    margin-top: -0.5208333333333334vw;
}

.course_commig .course_register_now {
    margin-top: 3.359375vw;
}

.course_commig .course_register_now a {
    padding: 0.6510416666666666vw 1.3020833333333333vw;
    background-color: #ef4b38;
    font-size: 1.5625vw;
    line-height: 2.8645833333333335vw;
    color: #fff;
    text-decoration: none;
}

.course_commig .course_register_now a img {
    margin-left: 1.34375vw;
    margin-bottom: 0.4557291666666667vw;
    width: 30px;
    max-width: 100%;
    height: auto; 
}

.course_commig .course_commig_right {
    width: calc(35% - 0.8463541666666666vw);
}

.profile_accordian_wrp_padd_fix {
    padding: 6.55vw 0 0 6.63vw;
}
#menu-item-35127{display:none;}
#menu-item-35136{display:none;}
#menu-item-35137{display:none;}
.desk_hide{display:none;}

@media only screen and (max-width: 1024px) {
    .pagination_of {
        width: 50vw;
    }
    .pagination_of .course_leftside h4 {
        font-size: 20px;
    }
    .pagination_of .course_leftside h2 {
        font-size: 20px;
    }
    .pagination_of .course_leftside h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1023px) {
    .nav_tgl_btn span {
        width: 100%;
    }
    .home_common_text.home-add-margin h4 {
        margin-left: 0;
    }
    .program_for_you .if_you_child {
        max-width: calc(33.33%);
    }
    .tabs_accordian_wrp_cust_padd {
        padding: 0 20px;
    }
    .profile_accordian_wrp_padd_fix {
        padding: 0;
        padding-top: 8.35889540567vw;
    }
    .wdth-mobh2 h2 {
        width: 50%;
    }
    .gridcell_slider_container {
        overflow: hidden;
    }
}

@media only screen and (max-width: 991px) {
    .course_commig .course_commig_container {
        width: 73.125%;
    }
    .course_commig .course_commig_left_col2 h5,
    .course_commig .course_commig_left_col2 p {
        font-size: 24px;
        line-height: 30px;
    }
    .course_commig .course_commig_left_col2 p span {
        font-size: 12px;
        line-height: 14px;
    }
}

@media only screen and (max-width: 768px) {
    .rightspace_item_right .key_features {
        flex-wrap: wrap;
    }
    .key_features .key_feature {
        width: 50%;
        margin-top: 3.359375vw;
    }
    .key_features .key_feature:nth-child(-n+2) {
        margin-top: 0;
    }
    .program_for_you .if_you_child:nth-child(-n+4) {
        margin-top: 2.23958333333vw;
    }
    .program_for_you .if_you_child:nth-child(-n+2) {
        margin-top: var(--zerounit);
    }
    .program_for_you .if_you_child {
        max-width: calc(50%);
    }
    .course_commig .course_commig_container,
    .think_with .think_with_container {
        width: 85%;
    }
}

@media only screen and (max-width: 767px) {
	#menu-item-35127{display:block;}
	.desk_hide{display:block;}
	.mob_hide{display:none;}
	.mobile_navbar{        align-items: center;}
	.mobile_navbar a.10year{color:#000 !important;}
    .think_with .think_with_left h4 {
        font-size: 23px;
    }
    .learn_four_c .learn_four_c_left h4 {
        font-size: 40px;
        line-height: 44px;
    }
    .program_for_you .if_you_child>h4 {
        font-size: 20px;
        line-height: 30px;
    }
    .program_for_you .if_you_child>p {
        font-size: 16px;
        line-height: 23px;
    }
    .course_commig .course_register_now a {
        font-size: 20px;
    }
    .course_commig .course_register_now a img {
        margin-bottom: 7px;
        width: 20px;
        max-width: 100%;
        height: auto; 
    }
    .blackbox_left_top_content.blackbox_left_top_content_paddb {
        padding: 40px 20px;
    }
    .profile_accordian_wrp_padd_fix {
        padding-top: 8.65889540567vw;
    }
}

@media only screen and (max-width: 520px) {
    .learn_four_c .learn_four_c_container {
        width: 100%;
        padding: 12.5vw 0;
    }
    .learn_four_c .learn_four_c_inner {
        width: 100%;
        flex-wrap: wrap;
    }
    .learn_four_c .learn_four_c_left,
    .learn_four_c .learn_four_c_right {
        width: 100%;
        padding-left: calc(12.5vw / 2 - 20px);
    }
    .learn_four_c .learn_four_c_right {
        margin-top: 12.5vw;
    }
    .program_for_you .if_you_child:nth-child(-n+2) {
        margin-top: 2.23958333333vw;
    }
    .program_for_you .if_you_child:nth-child(-n+1) {
        margin-top: var(--zerounit);
    }
    .program_for_you .if_you_child {
        max-width: calc(100%);
    }
    .think_with .think_with_container {
        width: 100%;
    }
    .think_with .think_with_inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .think_with h4 span:nth-child(2) {
        width: 33%;
    }
    .think_with .think_with_right {
        width: calc(100%);
        margin-top: 6.71874999999vw;
    }
    .course_commig .course_commig_container {
        width: 100%;
        padding: 12.5vw 0;
    }
    .course_commig .course_commig_inner {
        flex-wrap: wrap;
    }
    .course_commig .course_commig_left {
        width: 100%;
        order: 2;
        margin-top: 6.71874999999vw;
    }
    .course_commig .course_register_now {
        margin-top: 6.71874999999vw;
    }
    .course_commig .course_commig_right {
        width: 100%;
        order: 1;
    }
}

@media only screen and (max-width: 480px) {
    .fullwith_sec_title h6 {
        margin-bottom: 46px;
    }
}

@media only screen and (max-width: 375px) {
    .fullwith_sec_title h4 {
        font-size: 9.1vw;
    }
}

.navigation.pagination .svg-icon,
.sub-menu,
.sub-menu-toggle,
ul.mainmenu_left_wrp>li>ul {
    display: none;
}

.search_result {
    padding: 93px 0;
}

.wrap_all_result {
    padding: 30px 8.49194729136164vw;
}

.search_for_title {
    padding: 0 0 20px;
}

.search_for_title p {
    font-size: 20px;
    font-weight: 200;
}

.wrap_all_result article {
    border-top: 1px solid #dcdcdc;
    padding: 20px 0 0;
    margin: 20px 0 0;
}

.wrap_all_result .entry-content p a,
.wrap_all_result article:hover header.entry-header h2 a,
a.next,
a.next.page-numbers,
a.page-numbers,
span.cat-links a {
    color: #e13212;
}

header.entry-header h2 {
    font-size: initial;
    line-height: initial;
}

.wrap_all_result .entry-content p,
header.entry-header h2 a {
    color: var(--black);
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    margin: 0;
}

header.entry-header h2 a {
    font-size: 28px;
    transition: 0.2s;
}

header.entry-header h2 a:hover {
    text-decoration: none;
}

.wrap_all_result .entry-content {
    padding: 0 0 25px;
}

.wrap_all_result .entry-content p {
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box !important;
}

.navigation.pagination,
.wrap_all_result footer span {
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 18px;
    font-weight: 200;
    margin: 0;
    color: #9b9b9b;
}

.navigation.pagination {
    border-top: 1px solid #dcdcdc;
    padding: 20px 0 0;
    margin: 20px 0 0;
}

@media only screen and (max-width: 767px) {
    .blg_dtl_content ol {
        padding: 0 0 0 4vw;
    }
    .blg_dtl_content ol li {
        padding-left: 5px;
    }
    .layoutchange_accordian_grid .plusminus_anim {
        display: none;
    }
    .tab-padd {
        padding: 30px 20px 0;
    }
}

@media only screen and (max-width: 600px) {
    .search_result {
        padding: 50px 0;
    }
    .leftside_desc_info p.smalltext {
        line-height: 24px;
    }
    .people_crr_sidebar_grp {
        padding-top: 0;
    }
    .pedagogy_mdl_page p {
        width: 100%;
    }
    .pedagogy_mdl_page p br {
        display: none;
    }
    .wrap_all_result {
        padding: 30px 20px;
    }
    header.entry-header h2 a {
        font-size: 20px;
        line-height: initial;
    }
    .search_for_title p {
        font-size: 18px;
    }
    .wrap_all_result .entry-content p {
        font-size: 14px;
    }
}

.custom_accordian_item .accordian_heading_admsn div {
    padding-bottom: 15px;
}

.custom_accordian_item.active .accordian_heading_admsn div p {
    -webkit-line-clamp: initial;
}


.wp-block-image figure {
    margin-left: initial !important;
    margin-right: initial !important;
    padding-top: 20px !important;
}

.wp-block-image figure img {
    max-width: 100% !important;
}

.home_search_icon>span:after,
.megamenu_hold>li>a:after {
    height: var(--threeunit);
    width: 100%;
    content: "";
    background-color: #000;
    transform-origin: right top;
    transform: scaleX(1);
    position: absolute;
    left: 0;
    opacity: 0;
    transition: 0.2s linear;
}

.home_search_icon>span:after {
    bottom: -1.4vw;
}

a.home_search_icon:hover>span:after {
    opacity: 1;
}

.megamenu_hold>li>a:after {
    bottom: 0;
}

.megamenu_hold>li:hover>a:after {
    -webkit-transform-origin: left top;
    -transform-originansform-origin: left top;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
}

.popup_description p+p {
    margin: 0 0 20px;
}

@media only screen and (max-width: 520px) {
    .redu-mob-padd {
        padding: 25px 0 40px !important;
    }
    .set-mob-flex {
        align-items: flex-start;
    }
    .set-mob-flex .explore_arrow {
        margin: 10px 0 0 12px !important;
    }
    .blackbox_left_top_content>p {
        line-height: 30px;
    }
    .leftside_desc_info p.smalltext {
        line-height: 24px;
        margin-top: 30px;
    }
    .common_caption h2,
    .common_caption h4 {
        font-size: 24px;
        line-height: 32px;
    }
    .common_caption h3{
        font-size: 24px !important;
        line-height: 32px !important;
    }
    .entranceexams_mbl {
        padding-bottom: 0;
    }
    .add-mob-margin {
        margin-top: 36px;
    }
    .inline_contact>div>p {
        padding: 0;
    }
    .inline_contact>p {
        padding-bottom: 20px;
    }
    .profile_accordian_title>div>span {
        font-size: 16px;
        line-height: 18px;
    }
    .banner_image_hided {}
    .success_story_wrp .success_story_inner {
        padding: 40px 0 30px;
    }
}

@media only screen and (max-width: 400px) {
    .more_profile_link a {
        font-size: 18px !important;
        line-height: 18px !important;
    }
}

@media only screen and (max-width: 375px) {
    .profile_accordian_item .profile_accordian_title .plusminus_anim {
        top: 30px;
    }
    .mbl_redyell_spn_5 {
        width: 80px !important;
    }
}


/* body {
    cursor: none;
} */

.cursor-dot,
.cursor-dot-outline {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0s ease-in-out, transform 0s ease-in-out;
}

.cursor-dot {
    width: 24px;
    height: 24px;
    background-color: #ffd815;
    z-index: 99999999;
}

.cursor--outer {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 0.1px solid #ffd815;
    border-width: thin !important;
    background-color: #ffd815;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: fixed;
    left: -12px;
    top: -12px;
    pointer-events: none;
    z-index: 99999999;
}

.cursor--inner {
    background-color: red;
    width: 0px;
    height: 0px;
    position: fixed;
    left: 24px;
    top: 24px;
    border-radius: 50%;
    z-index: 99999999;
}

.cursor-outer-box-sha-bla {
    box-shadow: 0px 0px 1px 0.5px #000000;
}

.cursor-outer-box-sha-yell {
    box-shadow: 0px 0px 1px 0.5px #000000;
}

.cursor-outer-box-sha-whit {
    box-shadow: 0px 0px 1px 0.5px #ffffff;
}

.blog-author-img-blk {
    display: flex;
    width: 100%;
}

.blog-author-desc {
    padding-top: 30px;
}

.blog-author-desc>h4 {
    font-size: 2.367496vw;
}

.blog-author-desc .blog-author-img {
    width: 15vw;
}

.blog-author-img .circle-author-image {
    margin: 18px 0 0;
}

.blog-author-img-blk .blog-author-name {
    margin-left: 2vw;
    display: flex;
    align-items: center;
    width: 83vw;
}

.blog-author-desc-detail {
    margin: 20px 0 0;
}

.blog-author-desc-detail>p {
    font-size: 1.210541727672035vw;
    line-height: 1.781845vw;
    display: inline;
}

.blog-author-desc-detail a {
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .blog-author-desc-detail>p {
        font-size: 12px;
        line-height: 18px;
    }
}

@media only screen and (max-width: 520px) {
    .more_profile_link a {
        font-size: 20px;
    }
    .padd-mobBot {
        padding-bottom: 60px !important;
    }
    .cursor-dot,
    .cursor--outer {
        display: none;
    }
    .home_banner_caption {
        padding: 8.942386vw 0 12.516297262059975vw;
    }
    .banner_caption {
        top: 32.9%;
    }
    /*.banner_caption {
        top: 28.9%;
    }*/
    .npf_chatbots {
        height: 85% !important;
    }
    .home_textslider_js2 {
        margin-top: 12vw;
    }
    .homebanner_inner {
        top: 14vw;
        font-size: 10.734029vw;
        line-height: 10.516297vw;
    }
    .home_txtslider_item {
        font-size: 10.734029vw;
        line-height: 7.518905vw;
    }
    .profile_accordian_title>div>span {
        font-size: 14px;
    }
    .about_banner_caption {
        top: 36.6% !important;
    }
    .break-anchor-mob li a span {
        display: block;
        font-size: 14px;
        line-height: 20px;
    }
    .entranceexams_mbl {
        padding: 0 20px;
    }
    .add-mob-margin {
        margin-top: 36px;
    }
    .inline_contact p {
        padding-top: 0;
    }
    .set-mob-flex {
        align-items: start;
    }
    .set-mob-flex .explore_arrow {
        margin: 10px 0 0 12px;
    }
    .yellow_box_top_ttl h4 .mbl_redyell_spn_1,
    .yellow_box_top_ttl h4 .mbl_redyell_spn_4 {
        width: 20px;
    }
    .core_philosophy_wrp .section_edge {
        padding-bottom: 0;
    }
    .popup_description ul li:last-child {
        margin-bottom: 20px;
    }
    .popup_description {
        overflow: scroll;
    }
}

.homecat-img>img {
    width: 100% !important;
}

.cta_cell_group #programme_text {
    width: 62%;
    line-height: 1.8vw;
}

#jarallax-container-0 img,
.fix-mob-banner,
.fix-mob-banner #jarallax-container-0 {
    height: 100vh !important;
    -webkit-transform: translate3d(0px, -5.96094px, 0px);
    margin-top: 0 !important;
}

.fix-mob-banner .banner_caption {
    top: 36.9%;
}

.toctrl-mobdot .slick-dots {
    bottom: 55px;
    display: flex;
    background: #cbc7c7;
    height: 3px;
}

.toctrl-mobdot .slick-dots li {
    width: 25%;
    height: 100%;
    margin: 0;
}

.toctrl-mobdot .slick-dots li.slick-active {
    background: rgba(0, 0, 0, 0.5);
}

.toctrl-mobdot .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
}

.toctrl-mobdot .slick-dots li button:before {
    content: none !important;
}

.add-mobshow {
    display: none;
}

.press-hold {
    position: absolute;
    left: 25%;
    top: 45%;
    transform: translate(-10%, -50%);
    z-index: 10;
    width: 60%;
}

.profilecard_title span:nth-child(2) {
    display: inline;
}

.profile_name .des0 {
    display: inline;
    margin-right: 8px;
}

.profile_name>span {
    margin-left: 0 !important;
}

.profile_name>span::before {
    content: "" !important;
}

.profile_name span:nth-child(even) {
    position: relative;
    display: inline;
    margin-left: 8px;
}

.profile_name span:nth-child(even)::before {
    content: "|";
    position: absolute;
    left: -10px;
    top: 0;
}

.profilecard_mdl_people .profilecard_title span:nth-child(1)::after {
    content: "";
}

@media only screen and (max-width: 991px) {
    .add-mobhide {
        display: none;
    }
    .add-mobshow {
        display: block;
    }
    .pagination_of {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .ftr_contact_info p,
    .ftr_menu_list li a {
        font-size: 15px;
    }
}

@media only screen and (max-width: 600px) {
    .profilecard_title span:nth-child(1) {
        display: inline-block;
        position: relative;
        margin-right: 15px;
    }
    #kingstonuniversity .profilecard_inside_tab .profilecard_item .profilecard_title span:nth-child(1)::after,
    #studentcouncil .profilecard_inside_tab .profilecard_item .profilecard_title span:nth-child(1)::after {
        content: none;
    }
    .desk-show {
        display: none;
    }
    .mob-show {
        display: flex;
    }
    .mob-tb-mr {
        margin: 20px 0;
    }
    .ftr_menu_list li a {
        font-size: 15px;
        line-height: 20px;
        padding-right: 8px;
    }
    .profilecard_profile_img picture img {
        height: 88vw;
    }
    .profile_accordian_item.active {
        height: 650px;
    }
    .profilecard_inside_tab .profilecard_profile_img picture img {
        height: 87vw;
    }
    .admission_caption h2 span:nth-child(1) {
        width: 4.333333vw;
    }
    .admission_caption h2 span:nth-child(2) {
        width: 15px;
    }
    .admission_caption h1 span:nth-child(1) {
        width: 4.333333vw;
    }
    .admission_caption h1 span:nth-child(2) {
        width: 15px;
    }
    .cd_caption h2 span:nth-child(6) {
        width: 8%;
    }
    .iad_caption h2 span:nth-child(3) {
        width: 0;
        opacity: 0;
    }
    .tohide5child h2 span:nth-child(5),
    .tohide5child h2 span:nth-child(7) {
        width: 5px !important;
    }
    .tohide5child h1 span:nth-child(5),
    .tohide5child h1 span:nth-child(7) {
        width: 5px !important;
    }
    .iiadindusty_banner_caption h2 span:nth-child(2) {
        width: 4.64vw;
    }
}

.toadd-ml p {
    margin-left: 4vw;
}

.to-dot-border .swiper-pagination span {
    border: 1px solid #fff;
}

.mob-show {
    display: none;
}

.desk-show {
    display: flex;
}

.add-mobhide {
    display: block;
}

.flex-end {
    align-items: flex-end;
}

.ftr_logo {
    flex-wrap: wrap;
    width: 33%;
}

.footer-copywrite {
    padding: 28px 0 0;
}

.footer-copywrite p,
.tcp {
    color: #fff;
    margin: 0;
    font-family: "acumin-pro", sans-serif;
    font-weight: 200;
    font-size: 1.1vw !important;
}

.clr-ylw,
.clr-ylw a {
    color: #ffd815 !important;
}

.mob-tandc-copyright {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 22px;
}

.mob-tandc-copyright.mob-show a,
.mob-tandc-copyright.mob-show p {
    color: #fff;
    font-size: 3vw;
    margin: 0;
}

.h2span span {
    font-weight: 300;
    margin-left: 2px;
    display: contents;
}

.hide-second-line h2 label:nth-child(1) .ttl_xl_longer {
    width: 100%;
}

.hide-second-line h2 label:nth-child(n+2) .ttl_xl_longer {
    width: 70%;
}

.stories_slide_item_hold .postdate span {
    margin: 0 4px;
    position: relative;
    top: -1px;
}

.header_popup .profile_name {
    width: 100%;
}

.header_popup .close_popup {
    padding-top: 5px;
}

.mob-pipe span {
    position: relative;
    margin-right: 10px !important;
}

.mob-pipe span::after {
    content: "|";
    position: absolute;
    right: -8px;
}

.popup_body_hold_inner {
    position: relative;
    height: 100vh;
}

@media only screen and (max-width: 1199px) {
    .toadd-ml p {
        margin-left: 0;
    }
}

@media only screen and (max-width: 768px) {
    .custom_tabs_inner .navtabs_cta li a {
        text-align: center;
    }
    .hide-second-line h2 label:nth-child(1) .ttl_xl_longer {
        width: 35px;
    }
    .hide-second-line h2 label:nth-child(n+2) .ttl_xl_longer {
        display: none;
    }
    .blg_dtl_content ol {
        padding: 0 0 0 1.9vw;
        padding-top: 16px;
    }
    .blg_dtl_content ol li {
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .desk-show {
        display: none;
    }
    .mob-show {
        display: flex !important;
    }
    footer.cmn_sec_cls {
        padding: 0;
    }
    .ftr_heading {
        padding-left: 20px;
        padding-bottom: 20px;
    }
    .ftr_heading h4 {
        padding: 0 0 30px;
    }
    .ftr_heading p {
        padding: 0 0 30px;
    }
    .toadd-topborder-botmargn {
        margin-bottom: 35px;
    }
    ul.toadd-topborder-botmargn li:nth-child(1) {
        position: relative;
    }
    ul.toadd-topborder-botmargn li:nth-child(1)::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 1px;
        background: #4a3737;
        top: 5px;
        left: 0;
    }
    .ftr_menu_list li {
        width: 100%;
        padding: 0 20px 10px;
    }
    .mob-footer-title-items {
        color: #fff;
        font-size: 16px;
        text-transform: uppercase;
        font-family: acumin-pro, sans-serif;
        font-weight: 600;
    }
    footer .explore_txt {
        color: #fff;
    }
    .mob-tandc-copyright.mob-show a,
    .mob-tandc-copyright.mob-show p {
        font-size: 2vw;
    }
    .explore_more_cta {
        margin: 0;
    }
    .right_spacebar_popup {
        padding: 20px 28px 0;
    }
    .ftr_inner .ftr_heading h4 {
        top: 0;
    }
    .ftr_inner .ftr_heading p {
        top: 0;
    }
    .think_with .think_with_left h4 {
        font-size: 6vw;
        line-height: 6.947917vw;
    }
    .setcommondash h4 span:nth-child(2) {
        display: none;
    }
    .setcommondash span.commondash {
        width: 2.635431918008785vw;
        height: 0.596vw !important;
        margin-right: 4px;
    }
}

@media only screen and (max-width: 600px) {
    .mob-tandc-copyright.mob-show a,
    .mob-tandc-copyright.mob-show p {
        font-size: 2.5vw;
    }
    .pagination_of .course_leftside h4 {
        font-size: 16px;
    }
    .pagination_of .course_leftside h2 {
        font-size: 16px;
    }
    .pagination_of .course_leftside h3 {
        font-size: 16px;
    }
    .success_story_inner .swiper-container {
        height: auto;
    }
}

@media only screen and (max-width: 345px) {
    .ftr_heading h4 {
        font-size: 42px;
        line-height: 48px;
    }
	.ftr_heading p {
        font-size: 42px;
        line-height: 48px;
    }
    .custom_cta_btn {
        width: 284px;
    }
}

.popup-body-preloader {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999999;
    background-image: url(../images/spinner.gif);
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: center;
}

.facu-detail-modal.show {
    background: rgba(89, 38, 196, 0.8);
}

.facu-detail-modal .modal-dialog {
    width: 50%;
    margin-right: 0;
    min-width: 50%;
}

.profile-description {
    padding: 2.9282576866764276vw;
    height: calc(100vh - 9.51683748169839vw);
    overflow-x: hidden;
}

.profile-description img {
    margin-bottom: 15px;
}

@media only screen and (max-width: 600px) {
    .blg_dtl_content ol {
        padding: 16px 0 8px 4.1vw;
    }
    .campus_wrp .section_edge .dotsslider_wrp .swiper-wrapper {
        max-height: 48vw;
    }
    .marquee_track {
        overflow: hidden;
    }
    .main_body {
        margin-bottom: 0 !important;
    }
    .marq_state_wrp div img {
        min-width: 18px;
    }
    .core_philosophy_wrp .abtus_bridginggaps_ttl h4 {
        width: 100%;
    }
    .profile-description {
        height: auto;
        padding: 15px;
    }
    .profile-description a {
        word-break: break-all;
    }
    .profile-description img {
        width: 100%;
    }
    .more_profile_link a {
        width: 50%;
        z-index: 99999 !important;
        visibility: visible !important;
    }
    .more_profile_link a.next_faculty {
        text-align: right;
    }
    .footer_popup .more_profile_link {
        padding: 0 12px;
    }
    .mob-spc li.nav-item a {
        font-size: 16px;
        height: 45px;
        line-height: 45px;
    }
    .ctrl-mob-hgt {
        height: unset !important;
    }
    /* .nav_tgl_btn {
        right: 2.5vw;
    } */
    .home_svgtags_item a svg {
        height: auto;
    }
    .main_banner_inner {
        height: 406px;
    }
    /*.main_banner_inner {
        height: 560px;
    }*/
    #blog-detail-banner .main_banner_inner {
        height: 330px;
    }
    #blog-detail-banner img {
        height: 330px !important;
    }
    .facu-detail-modal .modal-dialog {
        width: 100%;
        min-width: 100%;
        margin: 0 !important;
    }
    .facu-detail-modal .modal-header {
        display: flex;
        padding: 0 2.9282576866764276vw 0.36603221083455345vw 2.9282576866764276vw;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        left: 0;
        top: 0;
        width: 100%;
        min-height: 4.34407vw;
        border-bottom: #e0e0e0 1px solid;
        background: #fff;
        z-index: 1;
    }
    .facu-detail-modal .modal-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        min-height: 0.7320644216691069vw;
        padding: 0.7320644216691069vw 2.9282576866764276vw;
        border-top: #e0e0e0 1px solid;
        background: #fff;
    }
    .modal-body-descr {
        min-width: 95%;
        width: 95%;
        padding: 20px;
        height: auto;
        overflow-y: scroll;
        overflow: scroll;
    }
    .rmmob-top-pad {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .ad-mob-marg {
        width: 100%;
        height: initial;
        margin: 0;
        padding: 20px;
        background: #fff;
    }
}

.megamenu_left_wrap>ul>li>a:after,
.megamenu_right_inner ul li a:after {
    width: 0;
    height: 0;
    display: none !important;
}

.anchor-cur .footer_popup .more_profile_link a {
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .swipe-width50 {
        width: unset;
    }
    figure.size-large img {
        height: auto;
    }
    .blog-author-desc .blog-author-img {
        width: 10rem !important;
    }
}

.right-blog-content .common_caption .wp-block-image {
    margin: 0;
    padding-top: 3.464129vw;
    padding-bottom: 1vw;
}

.common_caption.blg_dtl_content h5 {
    color: var(--black);
}

.common_caption.blg_dtl_content ol li::marker {
    font-weight: bolder;
}

.common_caption figure+h5 {
    padding: 1.001464vw 0 0;
}

.common_caption ol+h5 {
    padding: 3.001464128843338vw 0 0;
}
.common_caption h1{
    color: var(--black);
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    margin: 0;
    font-size: 3.3674963396778916vw;
    line-height: 4.24597364568082vw;
}
.rightsidedate_item small { margin: 0 0 0.36603221083455345vw;
    font-family: acumin-pro,sans-serif; 
    font-size: 18px;
    color: #fff;
    font-weight: 500;
line-height: 2.4890190336749636vw;}

.desk_none{display:none;}
.purple_banner img{aspect-ratio: 759/278;}
@media only screen and (max-width:767px){
	.sidebarheading h2 label.active span, .sidebarheading h2 label.active span {
    width: 35px !important;
    min-width: 3.3674963396778916vw;
} 
	.mob_none{display:none;}
	.desk_none{display:block;}
	.purple_banner img{aspect-ratio: 120/167; width: 375px !important;
        height: 522px;}
	.mob-bannerimg img{aspect-ratio: 180/277;}
	.postfigure img,
.postfigure_page img {   aspect-ratio: 158 / 101;
        aspect-ratio: 158 / 101;
        width: 368px;
        height: 196px;
        object-fit: cover;
        object-position: top;
}
.dotsslider_item picture img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 318/179);
}
	}

.leftbar_heading_small h3 {
    font-size: 1.610542vw;
}
.sidebarheading h3 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
   
    line-height: 2.635432vw;
    letter-spacing: normal;
    display: inline-block;
    margin: 0;
   
    text-transform: uppercase;
   
    width: 100%;
}

.date_announcement_item h4, .date_announcement_item p {
    font-size: 1.610541727672035vw;
    line-height: 2.049780380673499vw;
    margin: 0 0 1.43923865300146414vw;
    color: #fff;
    font-family: acumin-pro-condensed, Sans-serif;
    font-weight: 500;
}

.sidebarheading h2 label span.title_dashline {
    content: "";
    height: var(--threeunit);
    background: #000;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    margin: 0.29282576866764276vw 0.5856515373352855vw 0 0;
    min-width: 3.3674963396778916vw;
}
.sidebarheading h2 label.active span, .sidebarheading h2 label.active span {
    width: 100%;
    min-width: 3.3674963396778916vw;
}


.sidebarheading h2 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
   
    font-size: 2.635431918008785vw;
    line-height: 2.635431918008785vw;
    letter-spacing: normal;
    display: inline-block;
    margin: 0;
    color: #000;
    text-transform: uppercase;
   /*width:62%;*/
    }

.left_subtitle h2 {
        font-size: 32px;
    }

.left_subtitle h2, .leftspace_item_left h4 {
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 2.562225475841874vw;
    font-weight: 700;
    margin: 0;
}
.textred {
    color: var(--red);
}
.textwhite {
    color: var(--white);
}


.left_subtitle h2, .leftspace_item_left h4 {
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 1.999225475841874vw;
    font-weight: 700;
    margin: 0;
    }

#cursor.white, .common_caption.white_clr h3 {
    color: #fff;
}
.common_caption> :first-child {
    padding-top: 0;
    margin-top: 0;
}
.abt_common_text h3 {
    font-size: 2.635431918008785vw;
    line-height: 3.806734992679356vw;
}
.common_caption h3 {
   
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
    margin: 0;
	font-size: 2.7674963396778916vw;
    line-height: 3.47vw;     font-weight: 300; padding-top: 2.264129vw;
}
.common_caption ul h4 {
   
        padding-top: 0 !important;
}
.common_caption table{vertical-align: top;
    text-align: center; margin-top: 2.264129vw; margin-bottom: 1.264129vw;}
.common_caption table p{padding-top:0;}

.common_caption .graduate {
    font-size: 3.3674963396778916vw;
    line-height: 4.24597364568082vw;
    }


.yellow_box_top_ttl .yellow {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 700;
    font-size: 6.69vw;
    line-height: 6.69vw;
    color: #fff;
    z-index: 2;
    position: relative;
    text-transform: uppercase;
    margin: 0;
}

.home_common_text h5 {
    font-family: acumin-pro, sans-serif;
    font-weight: 200;
color: var(--black);
    font-size: 3.3674963396778916vw;
    line-height: 4.24597364568082vw;
    margin: 0;
}
.home_bridging_inner p {
    color: #ffd815;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 4.978038067349927vw;
    font-weight: 700;
    line-height: 5.563689604685212vw;
    text-transform: uppercase;
    margin: 0 0 0 -0.29282576866764276vw;
}

/*.banner_caption h1 {
    font-size: 6.588579795021962vw;
    text-transform: uppercase;
    color: #fff;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    display: inline-block;
    line-height: 6.661786237188873vw;
    margin-left: -0.3125vw;
    margin-bottom: 0;
}*/

.prg_overview_banner_caption h1 span:nth-child(4) {
    width: 5.847953216374268vw;
}
.prg_overview_banner_caption h1 span:nth-child(2) {
    width: 60%;
    opacity: 0;
}
.prg_overview_banner_caption h1 span:nth-child(3) {
    width: 50%;
    opacity: 0;
}

.bottom_edge_text h2 {
    color: #fff;
    font-family: acumin-pro-condensed, acumin-pro, sans-serif;
    font-size: 6.808199121522694vw;
    font-weight: 700;
    line-height: 5.572916666666667vw;
    white-space: nowrap;
    margin: 0 0 -1px;
}

/*.sidebarheading h2 label span.title_dashline {
    content: "";
    height: var(--threeunit);
    background: #000;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    margin: 0.29282576866764276vw 0.5856515373352855vw 0 0;
    min-width: 3.3674963396778916vw;
}*/
span.title_dashline_small {
    width: 2.4890190336749636vw;
    min-width: 3.3674963396778916vw;
}
.swiper-slide-active .syncslider_caption h3 {
    color: #000;
    position: relative;
    margin-left: 0;
    padding-left: 0;
}
.syncslider_caption h3 {
    font-family: acumin-pro-condensed, sans-serif;
    font-weight: 600;
    line-height: 6.652046783625732vw;
    font-size: 4.751461988304094vw;
    padding: 0;
    color: #ccc;
    margin-left: 2vw;
    padding-left: 4.1vw;
    position: relative;
}

.pedagogy_wrp h2 {
    font-family: acumin-pro-extra-condensed, acumin-pro, sans-serif;
    font-size: 10.526315789473683vw;
    line-height: 4.45vw;
    letter-spacing: -0.29px;
    padding: 0;
    margin-left: -0.5856515373352855vw;
    height: var(--gridcell);
}
 .pedagogy_wrp h2 {
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.admission_sec .admission_by_year { 
    padding: 0 0 2.881405563689605vw 0.14641288433382138vw; 
}
.admission_sec .date_announcement_item.date_announcement_item1{width:100%; padding-bottom:3.881405563689605vw;}
.admission_sec .date_announcement_item h4{
    font-size: 1.810542vw;
    line-height: 2.049780380673499vw;
    margin: 0 0 0.73923865300146414vw;
    color: #fff;
    font-family: acumin-pro-condensed, Sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: underline;
}
.admission_sec .date_announcement_item h5{
    font-size: 1.510542vw;
    line-height: 2.049780380673499vw;
    margin: 0 0 0.43923865300146414vw;
    color: #fff;
    font-family: acumin-pro-condensed, Sans-serif;
    font-weight: 500 
}

@media only screen and (max-width: 520px){
	.admission_sec .date_announcement_item h4{
    font-size: 18px; line-height: 24px;}
	.admission_sec .date_announcement_item h5{
    font-size: 15px; line-height: 18px; margin-bottom: 6px;}
	.admission_sec .by_year_sortinfo { width: 100%; }
	 .admission_sec .mbl_adms_black_box {
        padding: 15px 0;
    }
	.admission_sec .sidebarheading h3 {
        font-size: 24px;
    }
}




.blog_post_heading {
    font-family: acumin-pro, sans-serif;
    font-weight: 300;
    letter-spacing: normal;
    font-size: 1.4641288433382138vw;
    line-height: 1.8301610541727673vw;
    color: var(--blue);
    padding: 0.5856515373352855vw 1.3177159590043925vw var(--zerounit);
    height: 6.222547584187408vw;
    margin: 0 0 0.7320644216691069vw var(--zerounit);
    -webkit-line-clamp: 3;
    display: -webkit-box;
}

.blog_post_heading  {
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
}



.sidebarheading p label {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin: 0;
    /* cursor: none; */
}

.sidebarheading p label {
    width: 100%;
}

.banner-gif{padding-top:7vw;}
.banner-gif .banner1{ 
    /*height: 85vh;*/
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
} 
.banner-gif img{/*height: 85vh;*/
    object-fit: cover;
    object-position: left;} 
 .envolve.common_caption p.envolve1 {
    font-size: 3.3674963396778916vw;
    line-height: 4.24597364568082vw; color:#000;
}
.lineup.home_overview_wrp{    margin-top: -8px;
    border-top: 2px solid #fff;
    z-index: 999; }
@media only screen and (max-width:767px){
	#homeBanner{display:none;}
	.mob-bannerimg{display:none;}
	.banner-gif .banner1{ 
    height: 60vh;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
} 
.banner-gif img {
    height: 60vh;
    object-fit: cover;
    object-position: left;
}
.home_dotslider_wrp .home_dotslider_inner{display:none; }

.envolve.common_caption p.envolve1 {
    font-size: 20px;
        line-height: 28px;
} 
.lineup.home_overview_wrp {
    margin-top: -3px;
    border-top: 4px solid #fff;
    z-index: 999;
}} 
  
:root :where(.wp-block-image figcaption) { 
    font-size: 1.210541727672035vw !important;  padding-top: 10px;
}
 .common_caption figure img {
    width: calc(100%);
    height: calc(100%) !important;
} 
ul.contents li:before{display:none;} 
ul.contents li{padding:0; margin-bottom: -7px;}
ul.contents li a{font-size: 1.610541727672035vw;
    line-height: 2.581844802342606vw;}
.blogpage ul.contents{padding-top:0px !important; margin-left: 0vw !important;}
img.ksa{width:475px; margin-bottom:10px; margin-top:30px; }
.banner-gifc{padding-top: 7vw;}
@media screen and (min-width:320px) and (max-width:767px){img.ksa{width:270px; }
.banner-gifc{padding-top: 18vw;}
	.common_caption h1 {
    color: var(--black);
    font-family: acumin-pro,sans-serif;
    font-weight: 400;
    margin: 0;
    font-size: 6.367496vw;
    line-height: 8.245974vw;
} 
}
.ftr_contact_info .explore_more_cta a:hover .explore_txt:after {
    background-color: #fff;
}
 .explore_txt:after {
    content: "";
    height: var(--oneunit);
    width: 0;
    position: absolute;
    bottom: 0;
    transition: all ease-out .3s;
    background-color: #fff;
    left: 0;
}
.common_caption h2 { 
    padding-top: 2.264129vw;
	color: #e13212;}

/* .common_caption h2 { 
    font-family: acumin-pro-condensed,sans-serif;
    font-weight: 500;
    font-size: 2.1961932650073206vw;
    line-height: 2.781844802342606vw;
    text-transform: uppercase;
    margin-top: 10px;
	color: #e13212;
} */
	
.faq-table{
	
}
.faq-table table{
	border: 1px solid #000;
}
.faq-table table tr th{
	border: 1px solid #000;
}
.faq-table table tr td{
	border: 1px solid #000;
}
.notice_section_wrp .bottom_edge_text h1 {
    font-size: 4.508199vw; line-height: 3.572917vw;
} 
.pagination_of .course_leftside h2 { 
    font-size: 20px !important;
}
.success_profile_img img{filter: grayscale(1);}
.icon_image{width:30px;height:30px;margin:-9px 10px 0px 0px}
.intext-cta__blog-title {
    scroll-margin-top: 70px;
}

.common_caption ul li h3{padding-top: 0 !important;} 




@media screen and (min-width:993px) and (max-width:1240px){ .megamenu_left_wrap>ul>li>ul {
    
    padding: 10px 0 0 10px;
}}
@media screen and (min-width:1024px) and (max-width:1370px){  
    
   ul.mainmenu_left_wrp>li>a {
    color: #000;
    font-size: 0.9248901903367496vw;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    padding: 1.281112737920937vw 0;

}
.megamenu_left_wrap>ul>li>ul>li>a {
    color: #999;
    border: 1px solid #999;
    border-radius: 8px;
    padding: 1px 6px;
    font-size: 11px;
    font-weight: 200;
}}

#menu-item-21016 a{color: #ef4136;
    font-weight: 700;}
	ul.mbl_menu_items>li.menu-item-35136>a {font-weight: 800;}
	
#content_section{overflow-x: hidden;}



 