@font-face {
    font-family: 'cera light';
    src: url(../fonts/Cera-Pro-Light.ttf);
}

@font-face {
    font-family: 'cera regular';
    src: url(../fonts/Cera-Pro-Regular.otf);
}

@font-face {
    font-family: 'cera medium';
    src: url(../fonts/Cera-Pro-Medium.ttf);
}

@font-face {
    font-family: 'cera bold';
    src: url(../fonts/Cera-Pro-Bold.ttf);
}

@font-face {
    font-family: 'cera black';
    src: url(../fonts/Cera-Pro-Black.ttf);
}

@font-face {
    font-family: 'cera thin';
    src: url(../fonts/Fontspring-DEMO-cerapro-thin.otf);
}

:root {
    --lightOlive: #DAD1BF;
    --white: #ffffff;
    --skin: #e8e3d8;
    --primary: #630e37;
    --primary-hover: #4a0a1b;
    --yellow: #fec84c;
    --yellow-dark: #ff9900;
}

.inner-page-banner {
    padding: 2rem 0;
    background: rgb(232, 227, 216);
    background: linear-gradient(90deg, rgba(232, 227, 216, 1) 60%, rgba(218, 209, 191, 1) 60%);
}

p {
    line-height: 1.4 !important;
}

.bg-skin {
    background-color: var(--skin);
}

.text-skin {
    color: var(--skin);
}

.bg-yellow {
    background-color: var(--yellow);
}

.text-secondary{
    color: var(--yellow);
}

.text-yellow {
    color: var(--yellow);
}

.text-dark-yellow {
    color: var(--yellow-dark);
}

body {
    font-family: cera medium;
    scrollbar-width: thin;
    /* "auto" or "thin" */
    scrollbar-color: blue orange;
    /* scroll thumb and track */
}

.text-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-justify {
    text-align: justify;
}

.cera-black {
    font-family: cera black !important;
}

.cera-bold {
    font-family: cera bold !important;
}

.cera-medium {
    font-family: cera medium !important;
}

.cera-regular {
    font-family: cera regular !important;
}

.cera-light {
    font-family: cera light !important;
}

.country-card {
    text-decoration: none;
}

.country-card img {
    max-height: 4rem;
}

.scaleHover {
    transition: all 0.3s;
}

.scaleHover:hover {
    transform: scale(1.1);
    box-shadow: rgba(0, 0, 0, .15) 0 0 5rem;
}

ol {
    counter-reset: li;
}

ol li {
    list-style: none;
    position: relative;
}

ol li:before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    top: -8px;
    left: -8px;
    box-sizing: border-box;
    width: 1.5rem;
    margin-right: 8px;
    background: var(--primary);
    font-weight: bold;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    text-align: center;
    height: 1.5rem;
    color: #fff;
    border-radius: 15px;
}

.font-weight-semibold {
    font-weight: 600;
}

.text-primary {
    color: var(--primary) !important;
}

.btn {
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 3px;
    font-size: 13px;
    padding: 10px 17px;
}

.btn-lg {
    font-size: 16px;
}

.bg-primary {
    background-color: var(--primary) !important;
    color: #fff;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--yellow) !important;
}

.btn-outline-primary {
    background-color: transparent !important;
    border-color: var(--primary) !important;
    color: var(--primary);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: #1f1e5a !important;
    border-color: #1f1e5a !important;
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: #fff !important;
}

.heading {
    margin-bottom: 30px;
}

.heading::after {
    width: 30px;
    height: 4px;
    content: "";
    background-color: #ffcc29;
    display: inline-block;
}

.banner {
    position: relative;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f9f2e4+31,ffffff+59,ffffff+87,f9f2e4+100 */
    background: #f9f2e4;
    /* Old browsers */
    background: -moz-linear-gradient(left, #f9f2e4 31%, #ffffff 59%, #ffffff 87%, #f9f2e4 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #f9f2e4 31%, #ffffff 59%, #ffffff 87%, #f9f2e4 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #f9f2e4 31%, #ffffff 59%, #ffffff 87%, #f9f2e4 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f9f2e4', endColorstr='#f9f2e4', GradientType=1);
    /* IE6-9 */
}

.main-menu {
    z-index: 100;
    position: sticky;
    top: 0;
}

.main-menu .nav-link {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.7rem;
    text-transform: uppercase;
    border-radius: 0;
    padding: 0.5rem 0.6rem !important;
    white-space: nowrap;
}

.main-menu .dropdown-menu {
    border-radius: 0;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)!important;
    margin-top: 0;
    border: 0;
}

.main-menu li:hover .nav-link,
.main-menu li .nav-link.show,
.main-menu li.active .nav-link {
    background-color: var(--yellow);
    color: #1f1e5a !important;
}

.mx-n2 {
    margin-left: -0.5rem!important;
    margin-right: -0.5rem;
}

.bg-secondary {
    background-color: var(--lightOlive) !important;
}

.btn-secondary {
    background-color: var(--lightOlive) !important;
    color: var(--primary);
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: var(--lightOlive) !important;
    color: #1f1e5a;
}

.text-secondary {
    color: var(--lightOlive) !important;
}

.owl-carousel {
    padding: 0;
    list-style: none;
}

.owl-nav {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.owl-prev,
.owl-next {
    position: absolute;
    height: 100%;
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

.owl-prev span,
.owl-next span {
    font-size: 40px;
}

/* .owl-carousel.owl-drag .owl-item {
    height: 300px;
} */

.owl-carousel.owl-drag .owl-item li.item {
    height: 300px;
    background-color: #333;
    text-align: center;
}

.owl-carousel.owl-drag .owl-item li.item .col {
    height: 100%;
}

.owl-carousel.owl-drag .owl-item li.item .col img {
    height: auto;
    width: auto !important;
    display: inline-block !important;
}

@media screen and (max-width:700px) {
    .main-menu .nav-link {
        padding: 0.5rem;
        font-size: 11px;
    }
}

ol {
    font-size: 13px;
    padding-left: 15px;
}

ol li {
    margin-bottom: 10px;
    padding: 10px 25px;
    position: relative;
    background: var(--lightOlive);
    margin-bottom: 17px;
    border-radius: 5px;
    font-weight: 600;
}

ol.without-bg li {
    background-color: transparent;
}

.why-content-box {
    border-radius: 1.5rem;
    color: #414062;
    margin-bottom: 1.2rem;
    height: 100%;
}

.why-content-box p,
.why-content-box ul {
    font-size: 0.7rem;
    text-align: justify;
}

.text-gradient {
    background: -webkit-linear-gradient(183deg, #FDFF8E, #5F192C 60.94%), #5F192C;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.shadow-sm {
    box-shadow: rgba(0, 0, 0, 0.5) 0 0 5px;
}

.why p {
    font-size: 14px;
}

.icon-list li {
    margin-bottom: 0.5rem;
}

.icon-list .icon {
    min-width: 3.5rem;
    height: 3.5rem;
    background: var(--lightOlive);
    border-radius: 1rem 0px 1rem 0px;
    text-align: center;
    display: flex;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.icon-list .icon i {
    align-self: center;
}

.icon-list .text {
    width: auto;
    padding-left: 1.5rem;
}

.programs {
    transition: all 0.3s;
    color: var(--white);
}

.programs .card-body {
    background-color: var(--primary);
}

.programs:hover {
    box-shadow: rgba(0, 0, 0, 0.5) 0 0 5px;
}

.programs:hover .card-body {
    background-color: white;
    color: #1f1e5a;
}

.border-left-3 {
    border-left-width: 3px !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.border-secondary {
    border-color: var(--lightOlive) !important;
}

@media only screen and (min-width:768px) {
    .ml-md-n3 {
        margin-left: -2.5rem;
    }
}

@media only screen and (max-width:1067px) {
    .container {
        max-width: 100%;
    }
}

@media only screen and (max-width:767px) {
    html {
        font-size: 12px;
    }
    .h2,
    h2 {
        font-size: 1.5rem;
    }
    .h1,
    h1 {
        font-size: 1.85rem;
    }
}

.launch-popup {
    background-color: var(--skin);
    background-image: url(../images/bg-map.png);
    top: 0;
    display: none !important;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
    display: flex;
    background-size: cover;
    background-position: center;
}

.with-popup {
    overflow: hidden;
}

.with-popup .launch-popup {
    display: flex !important;
}

.location-tab.nav-tabs .nav-link {
    color: black;
    font-size: 1.2rem;
    font-weight: 500;
}

.location-tab.nav-tabs .nav-item.show .nav-link,
.location-tab.nav-tabs .nav-link.active {
    border-top: var(--primary) 3px solid;
    font-weight: 600;
}

.form-signin {
    width: 100%;
    max-width: 420px;
    padding: 15px;
    margin: 0 auto;
}


/* 
.form-label-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-label-group>input {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none !important;
}

.form-label-group>input,
.form-label-group>label {
    padding: .5rem 0rem;
}

.form-label-group>label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0;
    line-height: 1.5;
    color: #495057;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: all .1s ease-in-out;
}

.form-label-group input::-webkit-input-placeholder {
    color: transparent;
}

.form-label-group input:-ms-input-placeholder {
    color: transparent;
}

.form-label-group input::-ms-input-placeholder {
    color: transparent;
}

.form-label-group input::-moz-placeholder {
    color: transparent;
}

.form-label-group input::placeholder {
    color: transparent;
}

.form-label-group input:not(:placeholder-shown) {}

.form-label-group input:not(:placeholder-shown)~label {
    padding-top: 0px;
    padding-bottom: calc(var(--input-padding-y) / 3);
    font-size: 12px;
    color: #777;
    top: -7px;
} */

.go-to-top {
    z-index: 1000;
    right: 25px;
    width: 2.5rem !important;
    height: 2.5rem;
    position: fixed;
    padding: 0.8rem !important;
    bottom: 20px;
    line-height: 0 !important;
    border: 0;
}

.modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.table p {
    margin-bottom: 0;
}

.test-prep>p {
    text-align: justify;
}

.banner {
    position: relative;
    overflow: hidden;
}

.banner {
    position: relative;
    overflow: hidden;
}

.banner video {
    object-fit: cover;
}

.country {
    display: inline-block;
    opacity: 0;
    animation: placeword 2s linear forwards;
    position: relative;
    z-index: 100;
    color: var(--primary);
}

.country:nth-child(1) {
    animation-delay: 0s;
}

.country:nth-child(2) {
    animation-delay: 1.5s;
}

.country:nth-child(3) {
    animation-delay: 3s;
}

.country:nth-child(4) {
    animation-delay: 4.5s;
}

.country:nth-child(5) {
    animation-delay: 6s;
}

.right-button-strip {
    position: fixed;
    right: 0;
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform-origin: bottom right;
    top: 0;
    width: 42%;
    text-align: center;
    z-index: 100;
}

.bg-skin .table-bordered {
    border-color: rgba(0, 0, 0, 0.1);
}

.heading::after {
    content: "";
    border-top: #000 1px solid
}

.hover-skin:hover {
    background-color: var(--skin);
}

.hover-secondary:hover {
    background-color: var(--lightOlive);
}

.hover-scale:hover {
    transform: scale(1.1);
    transition: all 0.2s;
}

.user-salary {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: inline-flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.user-salary i {
    align-self: center;
    margin-bottom: 0;
}

.user-salary .dollar {
    position: absolute;
    width: 50%;
    left: 25%;
    top: 4.1rem;
}

@keyframes placeword {
    0% {
        transform: scale(2) translate(400px, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
        transform: scale(5) translate(20%, 20%);
    }
    70% {
        opacity: 1;
        transform: scale(5) translate(20%, 20%);
    }
    100% {
        opacity: 1;
        transform: scale(1)rotate(360deg);
    }
}

@media ( min-width:768px) {
    .bnr-main-image {
        width: 115%;
        margin-left: -15%;
    }
}

@media(max-width:767px) {
    .bnr-main-image {
        margin-left: 0;
        width: 100%;
    }
    .right-button-strip {
        height: 28px;
        width: 150%;
    }
}

.modal-body {
    h1 {
        font-weight: 900;
        font-size: 2.3em;
        text-transform: uppercase;
    }
    a.pre-order-btn {
        color: #000;
        background-color: gold;
        border-radius: 1em;
        padding: 1em;
        display: block;
        margin: 2em auto;
        width: 50%;
        font-size: 1.25em;
        font-weight: 6600;
        &:hover {
            background-color: #000;
            text-decoration: none;
            color: gold;
        }
    }
}

.icon-box {
    width: 5rem;
    height: 5rem;
    display: inline-block;
    margin-top: -2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'cera bold';
    text-align: center;
    font-size: 3rem;
    padding: 0.4rem 1rem;
}

.allied img {
    opacity: 0.85;
    height: 5rem;
    width: auto;
    display: inline-block;
}
.event-card .date{
  width: 9rem;
  background-color: white;
  text-align:center;
  padding: 1rem;
  border-radius: .5rem;
  margin-bottom:1.5rem;
  height: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-flow p{
    line-height:1.4;
    font-size: .8rem;
}
.border-outer-top{
  position:relative;
  padding: 1.5rem;
}
.border-outer-top::before{
    content:"";
    border: 2px var(--primary-blue) solid;
    border-bottom:0;
    border-radius:2rem 2rem 0 0;
    width: calc(100% + 2px);
    height:51%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    margin: -1px;
}

.border-outer-top.start::after {
    content: "";
    border: var(--primary-blue) 2px solid;
    border-radius: 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    left: -10px;
    bottom: calc(50% - 22px);
}

.border-outer-top.end::after {
    content: "";
    border: var(--primary-blue) 2px solid;
    border-radius: 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    right: -10px;
    bottom: calc(50% - 22px);
}
.border-outer-bottom{
  position:relative;
  padding: 1.5rem;
  color: white;
}
.border-outer-bottom h5,.border-outer-bottom p
{
  color:var(--primary-blue)
}
.border-outer-bottom::before{
    content:"";
    border:2px var(--primary-blue) solid;
    border-top:0;
    border-radius: 0 0 2rem 2rem;
    width: calc(100% + 2px);
    height:50%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: -1px;
}
.border-outer-top .card{
  border-radius: 1.1rem;
  border:0;
  height:100%;
}


.bg-primary-blue{
    background-color: var(--primary-blue);
}


.text-primary-blue{
    color: var(--primary-blue);
}

@media(max-width:767px){
  .border-outer-top::before{
    border:2px var(--primary-blue) solid;
    border-left: 0;
    border-radius: 0 2rem 2rem 0;
    height: 100%;
    margin: 0;
    width: 50%;
    right: 0;
    left: auto;
  }
  .border-outer-bottom::before{
    border:2px var(--primary-blue) solid;
    border-right: 0;
    border-radius:2rem 0 0 2rem;
    height: calc(100% + 4px);
    margin: -2px 0;
    width: 50%;
    right: auto;
    left: 0;
  }
 .border-outer-top.start::after {
    content: "";
    border: var(--primary-blue) 2px solid;
    border-radius: 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    left: calc(50% - 18px);
    top: -10px;
}

.border-outer-top.end::after {
    content: "";
    border: #fff 2px solid;
    border-radius: 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    left: calc(50% - 18px);
    top: -10px;
 }
} 