@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  margin: 0px;
  padding: 0px;
}

body::-webkit-scrollbar {
  width: 0.5em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #264653;
  --secondary-color: #E9C46A;
  --cyan-color: #2A9D8F;
  --peach-color: #F4A261;
  --orange-color: #E76F51;
}

*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p {
  font-size: 15px;
  color: #000;
}

ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  text-decoration: none;
}

button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}

section {
  padding: 70px 0 70px;
}

.inlineHeader {
  display: flex;
  padding: 0px 0;
  align-items: center;
  justify-content: space-between;
}

.large_heading {
  font-size: 55px;
}

.heading {
  font-size: 40px;
}

.sub_heading {
  font-size: 30px;
}

.small_heading {
  font-size: 22px !important;
}

.title {
  font-size: 18px !important;
}

.text {
  font-size: 16px;
}

.fontWeight300 {
  font-weight: 300;
}

.fontWeight400 {
  font-weight: 400;
}

.fontWeight500 {
  font-weight: 500;
}

.fontWeight600 {
  font-weight: 600;
}

.fontWeight700 {
  font-weight: 700;
}

.fontWeight800 {
  font-weight: 800;
}

.fontWeight900 {
  font-weight: 900;
}

.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  width: 100%;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  padding: 3px 0;
}

@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }

  50% {
    margin-top: -130px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }

  50% {
    margin-top: -130px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.fontHeading {
  font-family: "Raleway", sans-serif;
}

.text_secondary {
  color: var(--secondary-color);
}

.text_primary {
  color: var(--primary-color);
}

.text_cyan {
  color: var(--cyan-color);
}

.text_peach {
  color: var(--peach-color);
}

.text_orange {
  color: var(--orange-color);
}

.bgPeach {
  background: var(--peach-color);
}

.bgOrange {
  background: var(--orange-color);
}

.bgCyan {
  background: var(--cyan-color);
}

.bgPrimary {
  background: var(--primary-color);
}

.bgSecondary {
  background: var(--secondary-color);
}

.containerFull {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.header {
  padding: 10px 0;
  width: 100%;
}

.leftLogo {
  width: 150px;
}

.leftLogo img {
  max-width: 100%;
}

.btnTheme {
  display: inline-block;
  padding: 12px 35px;
  border: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  font-size: .9rem;
}

.btnTheme i {
  margin-right: 10px;
}

.rightMenu ul {
  display: flex;
}

.rightMenu ul li a {
  display: inline-block;
  padding: 15px;
  color: #333;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
}

.rightMenu ul li a:hover {
  color: var(--orange-color);
}

.hoverCyan:hover {
  background: var(--cyan-color) !important;
  color: #fff;
  border-color: transparent !important
}

.hoverPeach:hover {
  background: var(--peach-color);
  color: #fff;
}

.hoverPrimary:hover {
  background: var(--primary-color);
  color: #fff;
}

.hoverSecondary:hover {
  background: var(--secondary-color);
  color: #000 !important;
}

.hoverOrange:hover {
  background: var(--orange-color) !important;
  color: #fff;
  border-color: transparent !important;
}

.heroBanner {
  background: #F5F8FE;
  padding: 0rem 0;
  padding-bottom: 0;
  position: relative;
  z-index: 3;
  overflow: hidden;

}

.lefthero img {
  max-width: 100%;

}

.heroBanner:before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 50%;
  height: 100%;
  background: var(--peach-color);
  z-index: -2;
  transform: skew(10deg);
  -webkit-transform: skew(10deg);
  -moz-transform: skew(10deg);
  -ms-transform: skew(10deg);
  -o-transform: skew(10deg);
}

.heroBanner:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/bg/shape-bg-2.png');
  z-index: -1;
}

.text_orange {
  border-color: var(--orange-color) !important;
}

.iconAni {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 10%;
  right: 5%;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background: var(--secondary-color);
  animation: iconRotate 10s infinite linear;
  -webkit-animation: iconRotate 10s infinite linear;
}
#searchModal input:focus,
#searchModal button:focus {
  outline: none !important;
  box-shadow: none !important;
}


.iconAni2 {
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 10%;
  right: 8%;
  border: 2px dashed var(--orange-color);
  border-radius: 50%;
  animation: iconRotate 10s infinite linear;
  -webkit-animation: iconRotate 10s infinite linear;
  padding: 3px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.iconAni2 span {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes iconRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }

}

.itemBox {
  background: #ffffff;
  transition: all 0.3s ease-in-out;
}

.itemBox2 {
  background: #ffffff;
  transition: all 0.3s ease-in-out;
}

/* .itemBox:hover{
  box-shadow: var(--bs-box-shadow) !important;
  transform: translateY(-5px);
} */
.iconBox {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
  position: relative;
}

/* .iconBox:after {
  content: '';
  width: 100%;
  height: 100%;
  top: 85%;
  left: 0;
  position: absolute;
  background: var(--primary-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.itemBox:hover .iconBox:after {
  top: 0;
} */

.bgGray {
  background: #f4f4f4;
}

.bgShape {
  background: url('../images/bg/shape.jpg') no-repeat center center;
  background-size:cover;
}

.text_purple {
  color: #6a0dad;
}

.bgPurple {
  background: #6a0dad;
}

.iconAbout {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.itemAboutIcon {
  display: flex;
}

.rightAboutIcon {
  width: calc(100% - 65px);
  margin-left: 15px;
}

.iconShape {
  position: absolute;
  bottom: 60px;
  left: 5%;
  width: 150px;
  z-index: -1;
}

.iconShape img {
  max-width: 100%;
}

.iconCircle {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
  opacity: .7;
}

.studentNumber {
  position: absolute;
  bottom: 30px;
  left: -40px;
  padding: 10px 20px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  text-align: center;
  width: 270px;
}

.studentNumber img {
  margin-top: 5px;
  max-width: 70%;
}

.studentNumber {
  box-shadow: 7px 7px rgb(120 120 120 / 93%);
}

.grayGradient {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.itemProgram {
  padding: 0 10px 15px 0
}

.innerProgram {
  border: 1px solid #ccc;
}
.innerProgram h3{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.imgBox {
  overflow: hidden;
}

.imgBox img {
  width: 100%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  height: 250px;
  object-fit: cover;
}

.itemProgram:hover .imgBox img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.smallBtn {
  padding: 11px 0;
  font-size: 13px;
}

.btnLight {
  background: #f3f3f3;
}

.btnLight:hover {
  background: var(--orange-color);
  color: #fff !important;
}

.end-1 {
  right: 1rem;
}

.bottom-1 {
  bottom: 1rem;
}

.slick-next:before {
  content: '\f054' !important;
  left: 0px;
}

.slick-prev:before {
  content: '\f053' !important;
  right: 0px;
}

.slick-next,
.slick-prev {
  width: 35px !important;
  border-radius: 50px;
  height: 35px !important;
  background: var(--primary-color) !important;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  color: #fff;
}

.slick-next {
  z-index: 99;
  right: -10px !important;
}

.slick-prev {
  z-index: 99;
  left: -10px !important;
}

.slick-next:before,
.slick-prev:before {
  font-family: 'Font Awesome 5 Free' !important;
  font-size: 16px !important;
  width: 35px !important;
  height: 35px !important;
  line-height: 37px !important;
  top: -2px !important;
  font-weight: 700;
  position: relative;
  color: #fff;
  opacity: 1 !important;
}

.slick-next:hover,
.slick-prev:hover {
  background: var(--orange-color) !important;
}

.bgAction {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: url('../images/bg/bg-action.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

.bgAction:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.numberIcon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 600;
}

.rightNumber {
  width: calc(100% - 70px);
}

.checkList li {
  padding: 7px 5px;
  font-weight: 600;
  position: relative;
  padding-left: 2rem;
  font-size: 14px;
}

.checkList li:before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../images/icons/yes.svg);
  background-size: cover;
  position: absolute;
  left: 0px;
  top: 9px;
}

.checkHeight {
  height: 200px;
}

.itemProcess {
  text-align: center;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.iconProcess {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-size: 2.5rem;
  margin: 0 auto;
  background: linear-gradient(145deg, #dcdcdc, #ffffff);
  box-shadow: 20px 20px 60px #cfcfcf, -20px -20px 60px #ffffff;
  padding: 10px;
}

.innerCard {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.textCyanHover:hover .innerCard i,
.textCyanHover:hover {
  color: var(--cyan-color);
}

.textPrimaryHover:hover .innerCard i,
.textPrimaryHover:hover {
  color: var(--primary-color);
}

.textOrangeHover:hover .innerCard i,
.textOrangeHover:hover {
  color: var(--orange-color);
}

.textPeachHover:hover .innerCard i,
.textPeachHover:hover {
  color: var(--peach-color);
}

.itemProcess i {
  transition: all 0.3s ease-in-out;
}

.itemProcess h3 {
  transition: all 0.3s ease-in-out;
}

.innerTestimonial {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 30px;
  padding: 30px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  border-image: initial;
  backdrop-filter: blur(10px);
  margin: 0 5px;
  position: relative;
}

.innerTestimonial h4 {
  padding-left: 3rem;

}

.itemTestimonial {
  position: relative;
  z-index: 1;
  padding: 0 5px;
}

.innerTestimonial:after {
  content: '';
  position: absolute;
  top: 15px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: url(../images/icons/quotation.png) no-repeat;
  background-size: cover;
}

.testiFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.circleRight {
  width: 40px;
}

.circleRight img {
  max-width: 100%;
}

.circleLeft {
  width: 50px;
  height: 50px;
  border: 1px solid #666;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leftTestFooter {
  display: flex;
  align-items: center;
}

.leftTestFooter .nameRight {
  margin-left: 15px;
}
.nameRight p i{
  font-size: 15px;
}
.fixContentBox {
  height: 320px;
}

.leftExpert {
  padding: 2rem;
  border-radius: 1.3rem;
  -webkit-border-radius: 1.3rem;
  -moz-border-radius: 1.3rem;
  -ms-border-radius: 1.3rem;
  -o-border-radius: 1.3rem;
}

.rightExperts .checkList li {
  font-size: 16px;
  padding-left: 2.5rem;
}

.rightExperts .checkList li:before {
  width: 25px;
  height: 25px;
}

.bg1 {
  background: url(../images/bg/bg1.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.bgTransparentRight {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.bgTransparentRight:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0) 100%);
}

.itemList {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(194, 194, 194, 0.93);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  box-shadow: -5px 5px rgb(120 120 120 / 93%);
}

.itemSlider {
  padding: 0 10px;
}

.imgBlog img {
  width: 100%;
  height: 205px;
  object-fit:cover
}

.imgBlog {
  position: relative;
}

.innerSlider a {
  display: block;
}

.dateBlog {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid #fff
}

.dateBlog h3 {
  font-size: 15px;
  color: #fff;
}

.innerSlider p {
  color: #666;
}

.innerSlider p strong {
  color: #000;
}

.blogContent {
  padding: 20px;
  background: #fff;
  padding-top: 40px;
}

.blogContent h4 {
  color: var(--primary-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.innerSlider:hover h4 {
  color: var(--orange-color);
}

.footer-section {
  background-color: var(--primary-color);
}

.footer-copyright {
  padding-bottom: 10px;
  background-color: #1a3541;
}

.copyright-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.copyright-text {
  padding-top: 25px;
}

.copyright-text p {
  color: #fff;
  font-size: 15px;
}

.copyright-text p span,
.copyright-text p i {
  color: var(--secondary-color);
}

.copyright-text p a {
  color: var(--secondary-color);
}

.copyright-text p a:hover {
  text-decoration: underline;
}

.copyright-link {
  padding-top: 15px;
}

.copyright-link a {
  color: #fff;
  position: relative;
  margin-top: 10px;
  font-size:15px;
}

.copyright-link a+a {
  margin-left: 30px;
  font-size:15px;
}

.copyright-link a+a::before {
  position: absolute;
  content: "*";
  left: -20px;
  top: 3px;
}

.copyright-link a:hover {
  color: #fff;
}

.footer-widget-section {
  position: relative;
}

.footer-widget-section .shape-01 {
  position: absolute;
  top: 70px;
  left: 60px;
}

.footer-widget-section .shape-02 {
  position: absolute;
  top: auto !important;
  right: 60px !important;
  bottom: 30px !important;
}


.footer-widget {
  margin-top: 45px;
}

.footer-widget-title {
  font-size: 25px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.widget-newsletter {
  padding-top: 32px;
}
.widget-newsletter{
  padding-right: 40px;
}
.widget-newsletter p {
  color: #fff;
  line-height: 2.13;
}

.widget-newsletter .newsletter-form {
  margin-top: 35px;
}

.widget-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.widget-wrapper>* {
  padding-right: 30px;
}

.widget-wrapper>*:last-child {
  padding-right: 0;
}

.widget-link {
  padding-top: 20px;
}

.widget-link li a {
  display: inline-block;
  color: #fff;
  margin-top: 15px;
  font-size:15px;
}
.widget-location {
  padding-top: 20px;
}

.widget-location p {
  color: #fff;
  margin-top: 15px;
}

.section-padding {
  padding-top: 70px;
  padding-bottom: 70px;
}


.animation-rotate {
  -webkit-animation: rotate 5s linear 0s infinite normal forwards;
  animation: rotate 5s linear 0s infinite normal forwards;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  background-color: var(--orange-color);
  z-index: 999;
  width: 50px;
  height: 50px;
  text-align: center;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
  color: #fff;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

.whatsAppIcon {
  position: fixed;
  bottom: 90px;
  right: 15px;
  z-index: 99;
}

.whatsAppIcon a {
  display: inline-block;
  width: 55px;
  height: 55px;
  background: #40C351;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #fff;
  line-height: 55px;
  text-align: center;
  font-size: 30px;
}

.rightMenu ul li a i {
  font-size: 11px;
  padding-left: 1px;
  transform: translateY(-1px);
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
}

.rightMenu ul li {
  position: relative;
}

.rightMenu ul li ul {
  position: absolute;
  top: 70px;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  left: 0px;
  display: block;
  width: 300px;
  border: 1px solid #e0e0e0;
  background: #fff;
  padding: 10px 0;
}

.rightMenu ul li ul li a {
  font-size: 14px;
  text-transform: capitalize;
  display: block;
  padding: 8px 20px;
  color: #222;
}

.rightMenu ul li:hover ul {
  top: 55px;
  visibility: visible;
  opacity: 1;
  z-index: 9;
}

.rightMenu ul li ul li a:hover {
  background: #f5f5f5;
}

.bgImg {
  background: url(../images/bg/bg2.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.itemContact{
  display: flex;
  justify-content: space-between;
}
.contactItem{
  width: 45px;
  height: 45px;
  background:var(--orange-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.contactItem i{
  color: #fff;
}
.rightContact{
  width: calc(100% - 60px);
}
.textHeight {
    height: 180px !important;
}
.form-floating>.form-control:focus, .form-select:focus, .form-floating>.form-control:not(:placeholder-shown)
{
  border-color: var(--orange-color);
  -webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}
.formContact{
  margin-top:20px;
}
.formItem{
  margin-top: 5px;
}
.form-floating>label{
  padding: .8rem 1rem;
  font-size: 15px;
}
.form-floating>.form-control{
  border-color: #999;
  padding-left: 1rem;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.formContact{
  padding-left: 20px;
}
.form-floating>.form-control, .form-floating>.form-control-plaintext, .form-floating>.form-select{
  min-height: 50px;
  height: 50px;

}

/* about us */
.shortBanner{
  height: 480px;
  background-size:cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  align-items: center;
  display: flex;
  position: relative;
  z-index: 1;
}
.shortBanner:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.pageName{
  font-size: 14px;
  color: #fff;
  padding: 8px 20px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  font-weight: 600;
  background:rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border:1px solid #ffffffcb;
}
.rightCore .checkList li{
  font-size: 15px;
}
.columnList{
  display: flex;
  flex-wrap: wrap;
}
.columnList li{
  width: calc(100% / 2);
}
.border-orange{
  border-color: var(--orange-color) !important; 
}
.border-cyan{
  border-color: var(--cyan-color) !important; 
}
.itemPro{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rightPrograms{
  height: 100%;
}
.rightPrograms img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spacer{
  height: 70px;
}
.leftFunding ul li{
  font-size: 15px;
  padding-top: 10px;
}
.modal-body .textHeight{
  height: 110px !important;
}
.btnLink {
  display: inline-block;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
}
.singleImg img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}
.singleBlogDes p{
  margin-bottom: 15px;
}
.singleBlogDes h1, .singleBlogDes h2, .singleBlogDes h3, .singleBlogDes h4, .singleBlogDes h5, .singleBlogDes h6, .singleBlogDes ul, .singleBlogDes ol{
  margin-bottom: 15px;
  font-weight: 600;
}
.singleBlogDes ul{
  list-style-type: disc;
  margin-left: 20px;
}
.singleBlogDes ul li{
  padding: 3px 0;
  font-size: 15px;
}
.iconAuthor{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-size: 2.5rem;
}
.innerTextSlider{
  height: 110px;
}
.tabsAccordion{
  display: none;
}
.iconArrowDown{
  width: 30px;
  height: 30px;
  display: inline-block;
  background:#fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border:1px solid #ccc;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  line-height: 35px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.smallFont{
  font-size: 14px;
}
.stickyTop {
  position: sticky;
  position: -webkit-sticky;
  top: 80px;
  z-index: 9;
}
.column3 li{
  width: calc(100% / 3);
}
.terms-of-use ul{
  list-style-type: disc;
  margin-left: 30px;
  margin-top: 10px;
}
.btnMenu{
  border:none;
  background: none;
  font-size: 1.2rem;
}
.searchHeader{
  width: 20rem;
  border: 1px solid #dcdcdc;
  background: #fff;
  display: flex;
}
.searchHeader input{
  width: 90%;
  border:none;
  padding: 10px;
}
.searchHeader button{
  background: #fff;
  border: none;
  font-size: 1.2rem;
  color: #888;
  margin-right: 10px;
}
.bgHomeImg{
    background:url(../images/bg/bg-home-action.jpg) no-repeat;
    background-size:cover;
    background-attachment:fixed;
    position:relative;
    z-index:1;
    padding:8vh 0;
}
.bgHomeImg:after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.7);
    z-index:-1;
}
.socialIcons{
  margin-top: 2.5rem;
}
.socialIcons ul {
  display: flex;
  margin-top: 20px;
}
.socialIcons ul li a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  font-size: 22px;
  color: #fff;
  width: 35px;
  height: 35px;
}
.socialIcons ul li{
  margin: 0 5px;
}
.socialIcons ul li.facebook{
  background: #1877F2 ;
}
.socialIcons ul li.twitter{
  background: #fff;
}
.socialIcons ul li.twitter a{
  color: #000;
}
.socialIcons ul li.youtube{
  background: #ff0000;
}
.socialIcons ul li.instagram{
  background: #833ab4;
  background: linear-gradient(
    to right,
    #833ab4,#fd1d1d,#fcb045
  );
}
.socialIcons ul li.linkedin{
  background: #0077B5;
}
.whatsAppChat{
  position: fixed;
  bottom: -11px;
  right: 0px;
  z-index: 99;
}
.whatsAppChat a{
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding-right: 10px;
  height: 65px;
  border:1px solid #e0e0e0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.whatsAppChat img{
  width: 80px;
}
.chatText{
  
}
.linkedinProfile{
  position: absolute;
  bottom: 30px;
  left: -10%;
  padding: 10px;
  background: #fff;
}
.linkedinProfile a{
  display: inline-flex;
  align-items: center;
}
.iconLinkedin{
  width: 40px;
  height: 40px;
  background: #0077B5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #fff;
  font-size: 1.5rem;
}
.heroSection {
  position: relative;
  z-index: 1;
}
.heroSection video{
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}
.videoButtons{
  position:absolute;
  bottom:20px;
  left:15px;
  z-index:999;
}
.videoButtons ul{
  display:flex;
  align-items:center;
  gap:15px;
}
.videoButtons ul li{
  font-size:34px;
  color:#000;
  padding:0 8px;
  cursor:pointer;
}


/* programs */
.listProFeature{
  margin-top: 30px;
}
.listProFeature ul{
  display: flex;
}
.listProFeature ul li{
  padding: 5px 15px;
  font-weight: 500;
  color: #666;
}
.listProFeature ul li i{
  color: var(--orange-color);
}
.listProFeature ul li:first-child{
  padding-left: 0px;
}
.footer-section p{
    font-size:14px;
}
.footer-section .title{
    font-size:16px !important;
}