@charset "UTF-8";

/*global area*/
/*----------------------------------------------------*/
:root {
  --Base-White: #fff;
  --color-black: #000;
  --color-sienna: #FD8549;
  --color-blue: #54B6E0;
  --color-bg-blue: #F0FAFF;
  --color-dark-blue: #204B82;
  --color-light-gray: #fbfbfb;
  --font-family: "Be Vietnam Pro", sans-serif;
  --heading-font-family: "Poppins", sans-serif;
  --Inter-font-family: "Inter", sans-serif;
  --heading-span: rgb(253 133 73 / 50%);
  --color-bluedark: #1D4A81;
}

.bg-color---color-sienna {
  background-color: var(--color-sienna);
}

.bg-color---color-blue {
  background-color: var(--color-blue);
}

.bg-body---color-bg-blue {
    background-color: var(--color-bg-blue);
}

.bg-body---color-dark-blue {
    background-color: var(--color-dark-blue);
}

.bg-body---color-light-gray {
    background-color: var(--color-light-gray);
}

.bg-body---color-bluedark {
    background-color: var(--color-bluedark);
}


p:last-child {
    margin-bottom: 0;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.5;
  color: var(--color-black);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
}

.container {
    max-width: 1440px;
}

.space {
  padding-top: 80px;
  padding-bottom: 80px;
}

.space-top {
  padding-top: 80px;
}

.space-bottom {
  padding-bottom: 80px;
}


ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
  display: inline-block;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

a:hover, a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* section {
  overflow: hidden;
} */

button {
  cursor: pointer;
}

.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
input:visited,
input.active,
input:hover,
input:focus,
textarea:hover,
textarea:focus,
a:hover,
a:focus,
a:visited,
a.active,
select,
select:hover,
select:focus,
select:visited {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
  color: inherit;
}

.form-control {
  -webkit-box-shadow: none;
          box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--heading-font-family);
}

h1, .h1 {
  font-size: 80px;
  font-family: var(--Inter-font-family);
  font-weight: 500;
}

h2, .h2 {
    font-size: 40px;
}

h3, .h3 {
    font-size: 32px;
}

h4, .h4 {
    font-size: 28px;
}

h5, .h5 {
    font-size: 26px;
}

h6, .h6 {
    font-size: 22px;
}

.heading-blue {
    color: var(--color-dark-blue);
}
.heading-sienna {
    color: var(--color-sienna);
}

.sub-title {
    font-size: 24px;
}

.heading-blue {
    text-transform: uppercase;
}

.heading-blue span {
    text-transform: initial;
    color: var(--heading-span);
}

.main-wrapper {
    margin-top: 107px;
}

/*Header*/
header {
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 6;
    background-color: var(--Base-White);
}
.brand-logo {
  width: 250px;
}
nav.main-navigation-area {
    gap: 40px;
}
ul.menu-navigation {
    gap: 16px;
}
.menu-navigation li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    padding: 10px;
    display: block;
    font-family: var(--Inter-font-family);
}
.menu-navigation li a:hover {
    color: var(--color-sienna);
}
.button-wrp {
    text-decoration: none;
    cursor: pointer;
    border: 0;
    align-items: center;
    font-family: var(--Inter-font-family);
    font-size: 16px;
    color: var(--Base-White);
    line-height: 120%;
    font-weight: 500;
}
.button-wrp span {
    cursor: pointer;
    border: 0;
    padding: 10px 18px;
    background-color: var(--color-sienna);
    border-radius: 50px;
    text-align: center;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale3d(1, 1, 1);
    color: var(--Base-White);
}
.button-wrp .svg {
    width: 40px;
    height: 40px;
    background-color: var(--color-sienna);
    border-radius: 50px;
    fill: var(--Base-White);
    padding: 10px;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button-wrp .svg.left {
    transform: scale3d(.5, .5, 1);
    margin-right: -44px;
}
.button-wrp .svg.right {
    transform: scale3d(1, 1, 1);
    margin-left: 0;
}
.button-wrp:hover .svg.left {
    transform: scale3d(1, 1, 1);
    margin-right: 0;
}
.button-wrp:hover .svg.left {
    transform: scale3d(1, 1, 1);
    margin-right: 0;
}
.button-wrp:hover .svg.right {
    transform: scale3d(.5, .5, 1);
    margin-left: -44px;
    opacity: 0;
    visibility: hidden;
}
.button-wrp:hover span {
    transform: scale3d(1, 1, 1);
    color: var(--Base-White);
}


/*Hero Banner*/
.hero-banner {
    padding: 235px 0;
    background: url(../../assets/img/banner-home.jpg) no-repeat top center;
    background-size: cover;
}
.hero-banner h1 span {
    min-height: 96px;
}
.steps-wrp {
    margin-top: -60px;
}
.steps-block {
    padding: 16px;
    gap: 24px;
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    background-color: var(--color-blue);
}
.steps-block::before {
    content: "";
    background-color: var(--color-sienna);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.steps-block * {
    position: relative;
    z-index: 2;
}
.steps-block:hover::before {
    top: 0%;
}
.steps-block * {
    position: relative;
    z-index: 2;
}
.section-header .h3 {
    font-family: var(--font-family);
}
.about-overview {
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
}
.programes-list-content {
    gap: 24px;
}
/* .programes-lists {
    margin-top: 50px;
} */
.button-read-more {
    gap: 12px;
}
.button-read-more:hover {
    color: var(--color-sienna);
}
.button-read-more:hover svg * {
    stroke: var(--color-sienna);
}

/* Each card wrapper has 15vh top padding */
.card-wrapper {
    /*height: 70vh;
    padding-top: 15vh;*/
    position: relative;
    /* width: 50vw; */
    width: 100%;
    margin: auto;
}

/* The card fills the wrapper's width and remaining height in normal wrappers */
.card-wrapper .card {
    width: 100%;
    /* height: calc(70vh - 15vh); 55vh */
    margin: 50px auto 0;
    display: flex;
    flex-direction: row;
    /* justify-content: flex-end; */
    border-radius: 15px;
    padding: 35px;
    min-height: 50vh;
}


.card-box {
    background-color: var(--color-bg-blue);
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 8px;
    padding: 15px;
    transition: 0.5s;
}
.card-box .about-overview {
    height: 300px;
    margin-bottom: 25px;
}
.card-box .sub-title {
    margin-bottom: 25px;
}
.card-box:hover {
    transform: translateY(-10px);
}

.slide-item {
    padding-right: 24px;
}
.slide-items {
    background-color: var(--Base-White);
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .04);
}
.item-user {
    padding: 28px;
    background-color: var(--color-blue);
    border-radius: 12px;
}    
.item-cnt {
    padding: 40px 28px 28px 28px;
    position: relative;
}  
.item-user .h6 {
    font-family: var(--font-family);
}
.item-user p {
    font-size: 17px;
}
.item-cnt p {
    font-size: 16px;
    color: #737373;
}
.item-cnt .review {
    background: #fff;
    padding: 12px;
    border-radius: 7px;
    box-shadow: 0px 0px 73.85px 0px rgba(0, 0, 0, .06);
    gap: 6px;
    position: absolute;
    top: -20px;
    left: 100px;
}
.item-cnt .review svg {
    width: 16px;
    height: 16px;
}
ul.slick-dots {
    position: static;
    margin-top: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
ul.slick-dots li {
    width: 60px;
    height: 6px;
    border-radius: 24px;
}
ul.slick-dots li button {
    background: var(--heading-span);
    width: 100%;
    height: 100%;
    border-radius: 24px;
}
ul.slick-dots li button::before {
    display: none;
}
ul.slick-dots li.slick-active button {
    background: var(--color-sienna);
}
.support-queries-wrp form {
    border: 1px solid #eaeaea;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .04);
}
.support-queries-wrp form .h6 {
    font-size: 24px;
    text-transform: initial;
}
.support-queries-wrp form .row {
    row-gap: 16px;
}
.support-queries-wrp form textarea, .support-queries-wrp form input:not([type="submit"]), .support-queries-wrp form select {
    width: 100%;
    border: 1px solid #717276;
    border-radius: 8px;
    padding: 4px 15px;
    color: #717276;
}
.support-queries-wrp form p {
    color: #717276;
}
.support-queries-wrp form .row>div.radio-col {
    display: flex;
    align-items: center;
    justify-content: start;
}
.support-queries-wrp form .row>div.radio-col input {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}
.support-queries-wrp form .row>div.radio-col label {
    margin: 0;
    width: calc(100% - 24px);
}
textarea {
    min-height: 150px;
}
.form-check {
    padding-left: 0;
    display: flex;
    align-items: start;
    justify-content: start;
}
.support-queries-wrp form .form-check input#privacy {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    margin-top: 4px;
}
.support-queries-wrp form .form-check label {
    font-size: 16px;
    width: calc(100% - 16px);
}
.support-queries-wrp form input[type="submit"] {
    background-color: var(--color-dark-blue);
    border: 0;
    color: var(--Base-White);
    width: auto;
    border-radius: 24px;
    padding: 13px 55px;
    cursor: pointer;
}
.support-queries-wrp form input[type="submit"]:hover {
    background-color: var(--color-sienna);
    color: var(--Base-White);
}
footer.footer-area {
    background: var(--color-dark-blue);
    clear: both;
    overflow: hidden;
}
.footer-logo {
    width: 250px;
}
.widget-title {
    font-family: var(--Inter-font-family);
    font-size: 18px;
}
.contentB li {
    width: 100%;
    display: block;
    line-height: 120%;
    margin: 0 0 8px;
}
.contentB li:last-child {
    margin-bottom: 0px;
}
.contentB a {
    width: 100%;
    display: block;
    line-height: 120%;
    color: var(--Base-White);
}
.contentB a:hover {
    color: var(--color-sienna);
}
.footer-bottom-txt {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: clamp(60px, calc(100vw * 275 / 1300), 330px);
    color: rgb(255 255 255 / 50%);
    text-align: center;
    line-height: 73%;
}
.socialIcn {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.socialIcn a ,
.socialIcn a svg {
    width: 40px;
    height: 40px;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.socialIcn a:hover svg * {
    fill: var(--color-sienna);
}
.signup-form {
    width: 100%;
    position: relative;
}
.signup-form input[type="email"] {
    width: 100%;
    background: #F0EFEC;
    border: 0;
    padding: 13px 50px;
    border-radius: 8px;
    color: #717276;
}
.signup-form svg {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 14px;
    top: 16px;
}
.signup-form input[type="submit"] {
    border: 0;
    background: transparent url(../../assets/img/form-submit.svg);
    font-size: 0;
    width: 24px;
    height: 24px;
    padding: 0;
    position: absolute;
    right: 14px;
    top: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    cursor: pointer;
}

.inner-banner {
    background: transparent url(../../assets/img/about-banner.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    min-height: 500px;
}
.director-box p {
    font-size: 20px;
}
.contentBx {
    gap: 24px;
}
.contentBx h3{
    font-family: var(--font-family);
    color: var(--color-sienna);
}
.science-programs-box {
    background: var(--color-dark-blue);
    padding: 25px;
    border-radius: 16px;
}
.commerce-programs-box {
    padding: 25px;
    border-radius: 16px;    
}
.commerce-programs-box img {
    height: 375px;
    object-position: top center;
}
.listsB li {
    padding: 8px 0 8px 35px;
    background: url(../../assets/img/circle-check.svg) no-repeat left center;
    background-size: 24px;
    display: block;
    margin: 6px 0;
}


/* horizontal scroll */
#horizontal-scoll {
  padding: 150px 0 50px;
}

.horizontal-scoll-wrapper {
  overflow: hidden;
  height: 525px;
}

.horizontal {
  display: flex;
  height: 100%;
}

.horizontal > div {
  display: flex;
  flex-shrink: 0;
  padding: 0 5px;
}

.horizontal > div:first-child {
  padding: 0 15px 0 25px;
}

.horizontal > div:last-child {
  padding: 0 25px 0 15px;
}

.horizontal .card {
  align-items: stretch;
  width: 540px;
  padding: 50px 40px;
  background: var(--color-bluedark);
  border-radius: 24px;
  gap: 24px;
  transition: 0.5s;
}

.horizontal .card:hover {
    background: var(--color-sienna);
    transform: translateY(-10px);
    margin-top: 15px;
}
.horizontal .card:hover h3 {
    color: var(--color-bluedark);
}
.contact-overview iframe {
    width: 100%;
    border-radius: 8px;
    height: 480px;
    object-fit: cover;
    object-position: top center;
}
.getTouch {
    background: var(--color-bluedark) url(../../assets/img/Group-bCont.svg) no-repeat right -50px bottom -1px;
    padding: 40px;
    border-radius: 10px;
    background-size: 235px;
}
.getTouch h3 {
    font-family: var(--heading-font-family);
    font-size: 28px;
}
.getTouch p {
    font-size: 18px;
    font-family: var(--heading-font-family);
}
.contactInfo {
    display: inline-flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}
.contactInfo a {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 10px 0;
    font-size: 16px;
    font-family: var(--heading-font-family);
}
.contactInfo svg {
    width: 24px;
    height: 24px;
}
.contactInfo span {
    width: calc(100% - 50px);
}
.contactInfo a:hover {
    color: var(--color-sienna);
}
.contactInfo a:hover svg * {
    fill: var(--color-sienna);
}
.contact-overview .support-queries-wrp form .row {
    row-gap: 24px;
}
.contact-overview .support-queries-wrp form textarea, .contact-overview .support-queries-wrp form input:not([type="submit"]), .contact-overview  .support-queries-wrp form select {
    border: 0;
    border-bottom: 2px solid #717276;
    border-radius: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
}
.contactDts {
    background: var(--color-bluedark);
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 24px;
    text-align: center;
    font-size: 22px;
    color: var(--Base-White);
}
.contactDts svg {
    width: 50px;
    height: 50px;
    transition: 0.5s;
}
.contactDts svg * {
    fill: var(--color-sienna);
}
.contactDts:hover {
    color: var(--color-sienna);
    transform: translateY(-10px);
}
.about-overview-details .getTouch {
    background-size: 150px;
    position: sticky;
    top: 140px;
}
.item-user .user1-overview {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    margin: 0 auto;
    border: 6px solid var(--color-sienna);
}
.achievements .item-user {
    background-color: transparent;
    position: relative;
    padding-bottom: 0;
}
.achievements .item-user img {
    position: relative;
    z-index: 2;
}
.achievements .item-user::after {
    content: "";
    background-color: var(--color-blue);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 60%;
    border-radius: 12px;
}
.bd-course__item {
    font-size: 18px;
    font-style: italic;
}
.item-user .awards-img {
    width: 65px;
    height: 65px;
    padding: 10px;
    background: var(--color-dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 50%;
    position: absolute;
    margin: 0 auto;
    left: 95px;
    top: 125px;
}
.item-user .awards-img img {
    width: 100%;
    height: 100%;
}















/*Responsive CSS*/
@media (max-width: 1400px) {

body {
  font-size: 16px;
}

h1, .h1 {
  font-size: 50px;
}

h2, .h2 {
    font-size: 33px;
}

h3, .h3 {
    font-size: 27px;
}

h4, .h4 {
    font-size: 26px;
}

h5, .h5 {
    font-size: 24px;
}

h6, .h6 {
    font-size: 20px;
}

.sub-title {
    font-size: 22px;
}

.hero-banner {
    padding: 175px 0;
}
.hero-banner h1 span {
    min-height: 62px;
}

.bd-course__item {
    font-size: 16px;
}

.item-user .awards-img {
    left: 60px;
}
.getTouch p,
.director-box p,
.item-user p {
    font-size: 16px;
}
.brand-logo {
    width: 200px;
}
.footer-logo {
    width: 200px;
}

}


@media (max-width: 1200px) {
nav.main-navigation-area {
    gap: 20px;
}
ul.menu-navigation {
    gap: 8px;
}
.brand-logo {
    width: 175px;
}
.footer-logo {
    width: 175px;
}
.main-wrapper {
    margin-top: 90px;
}
.inner-banner {
    min-height: 275px;
}
.getTouch {
    padding: 30px 15px;
}
.contact-overview .support-queries-wrp form .row>div.radio-col {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.contentBx {
    gap: 16px;
}

}


@media (max-width: 992px) {
.menu-button svg {
    width: 35px;
    height: 35px;
    margin-top: 10px;
    cursor: pointer;
}
.menu-button svg * {
    fill: var(--color-darksalmon-100);
}
.menu-wrap {
    background-color: #fff;
    position: fixed;
    height: 100%;
    width: 345px;
    max-width: 100%;
    right: -345px;
    overflow: auto;
    transition: .5s;
    z-index: 3;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .15);
    padding: 74px 0 50px 0;
    top: 0;
    align-items: start !important;
}
ul.menu-navigation {
    flex-direction: column;
}
ul.menu-navigation li {
    width: 100%;
    display: block;
}
.menu-navigation li a {
    padding: 12px 25px;
    display: block;
    width: 100%;
    text-transform: uppercase;
}
.menu-wrap.menu-show {
    right: 0;
}
.mobile-menu-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 26px;
    height: 26px;
    z-index: 1;
    cursor: pointer;
}
.mobile-menu-close:before, .mobile-menu-close:after {
    position: absolute;
    left: 11px;
    content: " ";
    height: 24px;
    width: 3px;
    background-color: var(--color-sienna);
    cursor: pointer;
}
.mobile-menu-close:before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.mobile-menu-close:before, .mobile-menu-close:after {
    height: 22px;
    width: 1.5px;
}
.mobile-menu-close:after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.mobile-menu-close:before, .mobile-menu-close:after {
    height: 22px;
    width: 1.5px;
}
.science-programs-box .or-f1,
.director-box .or-f1 {
    order: 1;
}
.science-programs-box .or-f2,
.director-box .or-f2 {
    order: 2;
}


.hero-banner {
    padding: 125px 0;
}
.programes-list-content {
    gap: 16px;
}
footer.footer-area .contentB {
    margin-top: 30px;
}
.heading-blue span {
    text-align: left !important;
}
.yur-jurny .heading-blue span,
.achievements-wrp .heading-blue span {
    text-align: center !important;
}
.card-2992 .row.card {
    flex-direction: column-reverse;
}
.contentBx {
    gap: 16px;
}
.contactDts {
    padding: 30px 15px;
    font-size: 18px;
}
.contact-overview iframe {
    height: 300px;
}
.contactInfo {
    gap: 15px;
    margin: 15px 0;
}
#horizontal-scoll {
    padding: 25px 0 0;
}
.horizontal-scoll-wrapper {
    height: auto;
}
.horizontal {
    flex-direction: column;
    flex-wrap: wrap;
}
.horizontal > div {
    padding: 15px !important;
    width: 100%;
}
.horizontal .card {
    width: 100%;
    padding: 35px 25px;
    gap: 16px;
}

}


@media (max-width: 767px) {
.space {
  padding-top: 50px;
  padding-bottom: 50px;
}

.space-top {
  padding-top: 50px;
}

.space-bottom {
  padding-bottom: 50px;
}

.hero-banner {
    padding: 75px 0 125px 0;
}

h1, .h1 {
    font-size: 35px;
}
.hero-banner h1 span {
    min-height: 45px;
}


h2, .h2 {
    font-size: 30px;
}

h3, .h3 {
    font-size: 25px;
}

h4, .h4 {
    font-size: 24px;
}

h5, .h5 {
    font-size: 22px;
}

h6, .h6 {
    font-size: 18px;
}

.sub-title {
    font-size: 18px;
}

.card-wrapper .card {
    margin: 30px auto 0;
    padding: 25px 10px;
    min-height: initial;
}

.slide-item {
    padding-right: 0;
}
.item-user .user1-overview {
    width: 200px !important;
    height: 200px !important;
    margin: 0 0 20px 0;
}

.inner-banner {
    min-height: 200px;
}
.getTouch h3 {
    font-size: 26px;
}
.contact-overview .support-queries-wrp form .row>div.radio-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.commerce-programs-box img {
    height: 300px;
}

}


@media (max-width: 576px) {
.col-3.radio-col {
    width: 50%;
    flex: 0 0 50%;
    max-width: 100%;
}
.support-queries-wrp form .row>div.radio-col:last-child {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.socialIcn {
    gap: 14px;
}

}