@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
body{
  box-sizing:border-box; 
  font-family: 'Poppins', sans-serif;
  margin: 0px;
  padding:0px;
}
body::-webkit-scrollbar {
  width: .5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  outline: 1px solid var(--secondary-color);
}
html{
  scroll-behavior: smooth;
}
:root {
  --primary-color:#004e8e;
  --yellow-color:#ffa726;
  --secondary-color:#00bbff;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
}
p{
    font-size: 15px;
    color: #222;
}
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:60px 0;
  overflow: hidden;
}
.leftLogo{
  width: 133px;
  transition: all .3s ease-in-out;
}
.leftLogo img{
  max-width: 100%;
}
.rightMenu ul li a{
  color: #000;
  padding:20px 5px;
  margin:0 10px;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  position: relative;
  font-weight: 500;
}
.rightMenu ul li a:after{
  content: '';
  position: absolute;
  top: 40px;
  transition: all 0.3s ease-in-out;
  width: 0;
  background: var(--primary-color);
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
}
.rightMenu ul li:hover a:after, .rightMenu ul li.active a:after{
  width: 100%;
}
.rightMenu ul li:hover ul li a:after{
  display: none;
}
.bgLight {
    background: #F1F8FE;
}
.rightMenu ul li:hover > a, .rightMenu ul li.active a{
  color: var(--primary-color);
}
.rightMenu ul li{
  position: relative;
}
.rightMenu ul li ul{
  position: absolute;
  top: 70px;
  left: 0px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  padding:10px 0;
  width: 250px;
  background: #fff;
  z-index: 1;
}
.rightMenu ul li:hover ul{
  top: 60px;
  visibility: visible;
  opacity: 1;
}
.sticky .rightMenu ul li:hover ul{
  top:55px;
}
.rightMenu ul li ul li a{
  padding:10px 15px;
  display: block;
  margin: 0px;
}
.rightMenu ul li ul li:hover a:after{
  display: none;
}
.rightMenu ul li ul li a:hover{
  background: var(--primary-color);
  color: #fff;
}
.bannerHome{
  background: url(../images/banner/home-banner.jpg) no-repeat;
  background-size: cover;
  background-position: center bottom;
  height: 100vh;
  background-attachment: fixed;
}
.large_heading{
  font-size: 46px;
  line-height: 56px;
}
.fontWeight700{
  font-weight: 700;
}
.bannerText{
  display: flex;
  justify-content: center;
  height: 100%;
  flex-wrap: wrap;
  flex-direction: column;
}
.bannerText ul li{
  color: var(--yellow-color);
}
.bannerText ul{
  display: inline-block !important;
  width:300px;
  top: 15px;
}
.small_heading{
  font-size: 22px;
}
.fontWeight600{
  font-weight: 600;
}
.btnBanner{
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--primary-color);
  display: inline-block;
  background-color:#fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 5px;
  position: relative;
  padding: 12px 40px;
}
.btnBanner i{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 28px;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.btnBanner:hover span{
  transform: translateX(-15px);
}
.btnBanner span{
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.btnBanner:hover i{
  visibility: visible;
  right: 22px;
}
.nectar-shape-divider
{
    width: 100%;
    left: 0;
    bottom: 0;
    height: 100%;
    position: absolute;
}
.shape{
  position: relative;
  margin-left: -51vw;
  width: 100%;
  position: absolute;
  top: auto;
  overflow: hidden;
  bottom: -82px;
  left: 51.2%;
  right: 0;
  z-index: 1;
  transform: translateZ(0);
}
.nectar-shape-divider path:last-child{
    fill:#fff;
}  
.nectar-shape-divider-wrap[data-style="curve_opacity"] svg path:nth-child(1),
.nectar-shape-divider-wrap[data-style="curve_opacity"] svg path:nth-child(2){
    display:none;
}
.sticky{
  position: sticky;
  position: -webkit-sticky;
  top: 0px;
  z-index: 999;
  background: #fff;
}
.sticky .leftLogo{
  width: 100px;
}
.title{
  font-size: 18px;
}
.text_secondary{
  color: var(--secondary-color);
}
.heading{
  font-size: 34px;
}
.text_primary{
  color: var(--primary-color);
}
.rightAboutHome ul, .rightMap ul{
  margin-top: 15px;
}
.rightAboutHome ul li, .rightMap ul li{
  padding:5px 0px;
  font-size: 16px;
  padding-left: 35px;
  position: relative;
}
.rightAboutHome ul li:before, .rightMap ul li:before
{
  content: '\f058';
  position: absolute;
  top: 7px;
  left: 0px;
  font-size: 15px;
  color: var(--primary-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}
.btnTheme{
  margin-top: 30px;
  display: inline-block;
  background: #004e8e;
  background: linear-gradient(to bottom right,#004e8e,#00bbff);
  padding: 10px 20px;
  color: #fff;
  font-size: 13px;
  border:none;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.btnTheme i{
  font-size: 12px;
}
.btnTheme:after{
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 0px;
  transition: all 0.3s ease-in-out;
  height:calc(100% - 6px);
  background: #fff;
  z-index: -1;
}
.btnTheme:hover:after{
  width: calc(100% - 6px);
}
.btnTheme:hover{
    box-shadow: 0 20px 38px rgba(0,0,0,.16)!important;
}
.leftAbout{
  padding-right: 60px;
  position: relative;
  z-index: 9;
}
.rightAboutHome{
  position: relative;
  z-index: 1;
}
.rightAboutHome:after{
  content: '';
  position: absolute;
  top: 40px;
  left: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  z-index: -1;
  background: linear-gradient(to right,#e5edf3,#fff);
}
.rowInline{
  margin: 40px 0;
  display: flex;
}
.bg1{
  background:#04F0E5;
}
.bg2{
  background:#02BCFF;
}
.bg3{
  background:var(--primary-color);
}
.bg4{
  background:#000;
}
.bg5{
  background:#0A605F;
}
.iconPillar{
  width: 160px;
  height: 160px;
  border-radius: 50%;
  position: relative;
  z-index: 99;
  padding:25px;
}
.innerIcon{
  background: #fff;
  border-radius: 50%;
  width: 100%;
  padding: 20px;
  height: 100%;
}
.innerIcon img{
  max-width: 100%;
}
.itemPillar{
  display: flex;
  width: 345px;
  align-items: center;
}
.pillarRight{
  width: calc(100% - 160px);
  padding:28px 0px;
  padding-right: 20px;
  position: relative;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 1;
}
.pillarRight p{
  color: #000;
  font-size: 13px;
  font-weight: 500;
}
.pillarBg:after{
  content: '';
  position: absolute;
  left:-40px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #04F0E5;
  z-index: -1;
}
.pillarBg2:after{
  content: '';
  position: absolute;
  left:-40px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #02BCFF;
  z-index: -1;
}
.pillarBg3:after{
  content: '';
  position: absolute;
  left:-40px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
}
.pillarBg4:after{
  content: '';
  position: absolute;
  left:-40px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -1;
}
.pillarBg5:after{
  content: '';
  position: absolute;
  left:-40px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #036364;
  z-index: -1;
}
.icon1:after{
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 40px;
  height: 40px;
  background:#04F0E5;
  z-index: -1;
}
.icon2:after{
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 40px;
  height: 40px;
  background:#02BCFF;
  z-index: -1;
}
.icon3:after{
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 40px;
  height: 40px;
  background:var(--primary-color);
  z-index: -1;
}
.icon4:after{
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 40px;
  height: 40px;
  background:#000;
  z-index: -1;
}
.icon5:after{
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 40px;
  height: 40px;
  background:#036364;
  z-index: -1;
}
.itemPillar{
  margin-right: 40px;
}
.rowSe{
  position: relative;
  left: 7vw;
}
.bgLightBlue{
  background: #E9F3F2;
}
.itemStory{
  background:var(--primary-color);
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  padding:20px 10px;
  width: calc(100% / 5 - 15px);
}
.storyIcon{
  width: 50px;
  margin:  0 auto;
}
.storyIcon img{
  max-width: 100%;
  filter: brightness(0) invert(1);
}
.sub_heading{
  font-size: 28px;
}
.itemStory p{
  color: #fff;
}
.itemStory .title{
  font-size: 17px;
}
.callAction{
  padding:20px;
  margin-top: -40px;
  background: linear-gradient(90deg, #00bbff 0%, #004e8e 100%);
  border-radius: 10px;
}
.rightAction a{
  background: var(--secondary-color);
  padding:10px 20px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
  letter-spacing: .5px;
  transition: all 0.3s ease-in-out;
}
.rightAction a:hover{
  transform: translateY(-5px);
}
.leftMap{
  position: relative;
}
.andhraPradesh{
  position: absolute;
  top: 43%;
  left: 50%;
}
.state{
  width: 260px;
  border-radius: 5px;
  background: #f1f1f1;
  padding:15px;
  position: absolute;
  top: -90px;
  display: none;
  left: 50%;
  transform: translateX(-50%);
}
.state p{
  color: #222;
}
.iconPlus{
  width: 30px;
  height: 30px;
  background:#DD3333;
  color: #fff;
  border-radius: 50%;
  display: flex;
  transition: all 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
}
.andhraPradesh:hover .state{
  display: block;
}
.andhraPradesh:hover .iconPlus{
  transform: rotate(180deg);
}
.telangana{
  position: absolute;
  top: 18%;
  left: 48%;
}
.karnataka{
  position: absolute;
  top: 45%;
  left: 22%;
}
.karnataka:hover .state{
  display: block;
}
.karnataka:hover .iconPlus{
  transform: rotate(180deg);
}
.telangana:hover .state{
  display: block;
}
.telangana:hover .iconPlus{
  transform: rotate(180deg);
}
.rightMap{
  padding-right: 70px;
}
.rightMap p{
  margin-top:20px;
}
.leftMap img{
  max-width: auto;
  width: 100%;
}
.founderLeft h3{
  font-size: 75px;
  line-height: 85px;
  margin-top: 20px;
}
.founderLeft p{
  color: #222;
}
.founderLeft h6{
  color: #666;
}
.founderLeft{
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.customerSlider{
  margin-top: 40px;
}
.customerLeft{
  padding-left: 30px;
}
.customerLeft img{
  max-width: 100%;
}
.customerLeft img{
  max-width: 100%;
  border-radius: 10px;
}
.inner-info {
  background: linear-gradient(90deg , #00bbff 0%, #004e8e 100%);
  padding: 27px;
  width: 120%;
  border-radius: 10px;
  position: relative;
  left: -100px;
  margin-top: 20vh;
}
.inner-info p{
  color: #fff;
}
.slick-next:before, .slick-prev:before{
  color: var(--primary-color) !important;
  font-size: 35px !important;
}
.callAction2{
  padding:40px;
  background: linear-gradient(90deg, #00EFE3 0%, #096765 100%);
  border-radius: 10px; 
}
.rightAction2 a{
  background: var(--primary-color);
  padding:10px 20px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
  letter-spacing: .5px;
  transition: all 0.3s ease-in-out;
}
.rightAction2 a:hover{
  transform: translateY(-5px);
}
.footer{
  background: #00001C;
  padding:60px 0 0 0;
}
.footerLeft p{
  color: #fff;
  font-size: 16px;
}
.textFooter{
  font-size: 12px !important;
}
.footerItem{
  padding-left: 15px;
}
.footerItem ul li a{
  color: #fff;
  padding:7px 10px;
  font-size: 15px;
  display: inline-block;
}
.copyRight{
  margin-top: 10vh;
  border-top:1px solid rgba(255,255,255,.18);
  padding-top: 30px;
  padding-bottom: 20px;
}
.copyRight p{
  text-align: center;
  color: #999;
  font-size: 12px;
}
.copyRight ul{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
.copyRight ul li a{
  font-size: 22px;
  padding:0 8px;
  color: #777;
}
.copyRight ul li a:hover{
    color:#fff;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: #fff;
  background-color: var(--secondary-color);
  z-index: 999;
  width: 30px;
  text-align: center;
  height: 30px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  -webkit-transition: .9s;
  transition: .9s;
  overflow: hidden;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}


/* about */
.innerBanner{
  background: url(../images/banner/about-us.jpg) no-repeat;
  background-size: cover;
  background-position: center bottom;
  height: 100vh;
  padding-bottom: 7vh;
}
.aboutLeft{
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.divider{
  height: 3px;
  margin:20px 0;
  background: #B8D5DB;
}
.widthTitle{
  width:75%;
}
.rightAboutHome p{
  margin-top: 15px;
}
.itemBranch{
  position: relative;
}
.itemBranch img{
  max-width: 100%;
  width: auto;
}
.branchContent{
  position: absolute;
  top: 0px;
  left: 0px;
  padding:35px 50px;
}
.branchContent .sub_heading{
  font-size: 24px;
}
.branchContent ul{
  padding:10px;
  margin-top: 10px;
  padding-right: 50px;
}
.branchContent ul li {
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  line-height: 18px;
  padding-left: 10px;
}
.branchContent ul li:before{
  content: '';
  position: absolute;
  top: 5px;
  left: -8px;
  width: 7px;
  height: 7px;
  background:#000;
  border-radius: 50%;
}
.bgLight{
  background:#007DBF;
}
.sliderDate ul{
  display: flex;
  align-items: center;
  justify-content: center;
}
.sliderDate ul li{
  color: #fff;
  opacity: .7;
  position: relative;
  cursor: pointer;
  font-size: 25px;
  font-weight: 400;
  padding:10px 20px;
  padding-top:0px;
}
.sliderDate{
  position: relative;
}
.sliderDate:after{
  content: '';
  position: absolute;
  top: 55px;
  left: 0px;
  width: 100%;
  background:#fff;
  height: 2px;
}
.sliderDate ul li:before{
  content: '\f0d8';
  position: absolute;
  top: 43px;
  left:50%;
  transform: translateX(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}
.iconDown{
  position: relative;
}
.iconDown:after{
  content: '';
  position: absolute;
  top:-15px;
  width: 30px;
  height: 30px;
  background: #007DBF;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.itemInfo{
  text-align: center;
}
.sliderInfo{
  padding:20px 0;
}
.slider-nav .slick-current{
  transform: scale(1.2);
}
.slider-nav .slick-current li{
  opacity: 1;
}
.itemInnerInfo{
  margin-bottom: 20px;
}
.itemInfo{
  height: 250px;
  overflow-y: auto;
}
.modal-body p{
  font-size: 13px;
  margin-bottom: 10px;
}
.modal-body ul{
  list-style-type: disc;
  padding-left: 15px;
}
.modal-body ul li{
  font-size: 13px;
}
.leaderShip img{
  width:  100%;
  height:375px;
  object-fit:cover
}
.leaderShip{
  position: relative;
  margin-bottom: 30px;
  cursor: pointer;
}
.leaderDesc{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  padding:20px;
  background: rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.leaderDesc p{
  color: #fff;
  opacity: 0;
  font-size: 25px;
  transform: translateX(-20px);
  transition: all 0.3s ease-in-out;
}
.leftDes h6{
  color: #ccc;
}
.leftDes h4{
  transform: translateY(45px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.leftDes h6{
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.leaderShip:hover h6, .leaderShip:hover h4, .leaderShip:hover p{
  transform: translate(0, 0);
  opacity: 1;
}
.leaderShip:hover .leaderDesc{
  opacity: 1;
}
.leaderBlock{
  position: fixed;
  top: 60px;
  right: -100%;
  background: #F2F2F2;
  width: 100%;
  height: 100%;
  /*cursor: url(../images/icons/close.png) 15 15, move;*/
  z-index: 99;
}
.rightLeader{
  height:calc(100vh - 60px);
}
.rightLeader img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leaderLeft{
  padding:40px;
  height:calc(100vh - 60px);
  overflow-y: auto;
}
.leaderLeft p{
  margin-top: 20px;
}
.leaderLeft ul li{
    padding:5px 10px;
}
.leaderLeft ul{
    margin-top:20px;
    margin-left:20px;
    list-style-type:disc;
}
.atag{
  font-size: 60px; 
  float:left; 
  font-weight: 600; 
  line-height: 60px;
}
.mesageImg{
  height: 500px;
}
.mesageImg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leftSchool{
  background:#fff;
  padding:90px;
}
.leftSchool p{
  margin-top: 20px;
}
.rightSchool{
  height: 100%;
}
.rightSchool img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bgGrey{
  background: #F4F4F4;
}
.itemGallery img{
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.gallerySlider{
  margin-top: 40px;
}
.gallerySlider .slick-slide {
  margin: 0 15px;
}
.gallerySlider .slick-list {
  margin: 0px -15px 0px -15px;
}
.slick-dots li.slick-active button:before{
  background:#f1f1f1 !important;
  border:2px solid #000 !important;
  border-radius: 50%;
  line-height: 17px !important;
}
.rightPolicies a{
  display: inline-block;
  border:2px solid rgba(0,0,0,.3);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color:#000;
  border-radius: 5px;
}
.polciesInner{
  border-bottom:1px solid rgba(0,0,0,.14);
  padding: 20px;
  position: relative;
  z-index: 1;
}
.polciesInner:before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: -1;
  height: 100%;
  transform: perspective(1000px) rotateX(90deg);
  transform-origin: 50% 100%;
  transition: all .4s cubic-bezier(.2,0,.15,1);
}
.polciesInner:hover:before{
  transform: perspective(1000px) rotateX(0);
  background:var(--primary-color);
}
.polciesInner:hover p, .polciesInner:hover a{
  color: #fff;
}
.polciesInner:hover a{
  border-color: #fff;
}
.policiesItems{
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 40px;
}
.polciesInner:last-child, .policiesItems:last-child{
  border-bottom: none;
}
.navPolicies ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.navPolicies ul li{
  padding:15px 45px;
  transition: all 0.3s cubic-bezier(.12,.75,.4,1);
  color: #888;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
}
.navPolicies{
  border-bottom: 1px solid #e0e0e0;
}
.navPolicies ul li.active{
  background: linear-gradient(to bottom right,#004e8e,#00bbff);
  box-shadow: 0 18px 50px #b2eaff;
  color: #fff;
}
.tableTh{
  font-size: 15px;
}
.tableTh th{
  background: var(--primary-color);
  color: #fff;
  vertical-align: middle;
}
.tableTh td{
  font-size: 14px;
  vertical-align: top;
}
.tableTh td:nth-child(odd){
    background-color: #dddddd;
}
.borderLeft{
  position: relative;
}
.borderLeft:before{
  content: '';
  position: absolute;
  top: 0px;
  left: -70px;
  width: 3px;
  height: 100%;
  background: var(--secondary-color);
  z-index: 9;
}
.itemProduct{
  padding: 10% 10%!important;
  border-radius: 35px;
  margin-bottom: 40px;
  box-shadow: 1px 1px 35px #d8d8d8;
  box-shadow: 0px 0px 72px -10px rgb(0 0 0 / 22%);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  background-color: #fff;
  text-align: center;
  height: 200px;
}
.itemProduct p{
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #444;
  line-height: 24px;
}
.zindex{
  position: relative;
  z-index: 9;
}
.itemProduct:hover{
  background: var(--primary-color);
}
.itemProduct:hover p{
  color: #fff;
}
.itemProduct:hover img{
  filter: brightness(0) invert(1);
}
.flipFront, .flipBack{
  text-align: center;
  height: 300px;
  background-size: cover;
  background-position: center;
  -ms-transition: transform 0.8s cubic-bezier(.4,.2,.2,1);
  transition: transform 0.8s cubic-bezier(.4,.2,.2,1);
  -webkit-transition: transform 0.8s cubic-bezier(.4,.2,.2,1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 35px;
  position: relative;
  z-index: 1;
}
.flipBack{
  background: rgb(0, 78, 142);
  ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  transform-style: preserve-3d;
}
.flipFront:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.5);
  border-radius: 35px;
  z-index: -1;
}
.flipFront{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.flipBox:hover .flipBack{
  -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.flipBox:hover .flipFront{
  -ms-transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.flipBox{
  position: relative;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.flipBack ul li{
  text-align: left;
  color: #fff;
}
.flipBack ul li{
  padding:5px 0px;
  font-size: 14px;
  padding-left: 35px;
  position: relative;
}
.flipBack ul li:before{
  content: '\f058';
  position: absolute;
  top: 7px;
  left: 0px;
  font-size: 15px;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}
.rightCircle:after{
  left: -100px;
  top: 150px;
}
.itemNetwork{
  padding:20px;
  background:#fff;
  height: 100%;
  box-shadow: 0 15px 30px rgb(0 0 0 / 6%);
  -webkit-box-shadow: 0 15px 30px rgb(0 0 0 / 6%);
}
.box1, .box2{
  border-top:5px solid var(--primary-color);
}
.box2{
  border-color: var(--secondary-color);
}
.itemNetwork ul{
  margin-top: 15px;
}
.itemNetwork ul li{
  font-size: 14px;
  padding:8px;
  padding-left:30px;
  position: relative;
  z-index: 1;
}
.itemNetwork ul li:after{
  content: '\f00c';
  position: absolute;
  top: 10px;
  left: 0px;
  font-size: 14px;
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
}
.box1 ul li:after{
  color: var(--primary-color);
}
.box2 ul li:after{
  color: var(--secondary-color);
}
.flipBack p{
  color: #fff;
  text-align: center;
}
.requiredDoc{
  margin-top: 20px;
}
.requiredDoc ul li{
  position: relative;
  padding-left: 35px;
  font-size: 14px;
  padding-top:5px;
}
.requiredDoc ul li:before{
  content: '';
  position: absolute;
  top: 14px;
  left: 5px;
  width: 17px;
  height: 2px;
  background: #999;
}
.customShadow{
  box-shadow: 0 30px 80px rgb(0 0 0 / 14%), 0 20px 70px rgb(0 0 0 / 12%);
}
.itemOpening{
  padding:20px 15px;
  border-bottom:2px solid rgba(0,0,0,.08);
}
.inlineOpening{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.leftOpening h5{
  color: #666
}
.btnPlus{
  width: 20px;
  height: 20px;
  background:none;
  border:1px solid #999;
  color: #999;
  border-radius: 50%;
  line-height: 20px;
  font-size: 13px;
}
.inlineOpening{
  cursor: pointer;
}
.itemOpening:hover h5, .itemOpening:hover .btnPlus{
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.jobDescItem ul li:before{
  content: '';
  position: absolute;
  top: 12px;
  left: 10px;
  width: 6px;
  height: 6px;
  background:#000;
  border-radius: 50%;
}
.jobDescription{
  margin-top: 40px;
}
.jobDescItem{
  margin-bottom: 40px;
}
.jobDescItem ul{
  margin-top: 20px;
}
.jobDescItem ul li{
  font-size: 14px;
  padding:5px 10px;
  padding-left: 30px;
  position: relative;
}
.contactImg img{
  width: 100%;
  height: 590px;
  transition: all 0.2s ease-in-out;
  object-fit: cover;
}
.contactImg{
  position: relative;
}
.contactBox{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding:60px;
  background:rgba(51,51,51,0.8);
}
.contactBox p{
  color: #fff;
}
.contactBox p span{
  transition: all 0.2s ease-in-out;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  transform: translateX(10px);
}
.contactBox:hover  p span{
  display: inline-block;
  border:1px solid #fff;
  text-align: center;
  transform: translateX(20px);
  transition: all 0.2s ease-in-out
}
.contactImg{
  overflow: hidden;
}
.contactImg:hover img{
  transform: scale(1.1);
}
.contactForm{
  box-shadow: 0 10px 50px rgb(0 0 0 / 8%), 0 13px 45px rgb(0 0 0 / 8%);
  padding:20px;
  border-radius: 10px;
  background:#fff;
}
.contactInner{
  margin-top: 20px;
  padding:15px;
}
.contactItem input, .contactItem select{
  width: 100%;
  border:1px solid var(--primary-color);
  background-color: #e8f1f9;
  font-size: .9em;
  font-weight: 400;
  height: 3.4rem;
  font-style: normal;
  padding: .5rem 1rem;
  line-height: 1.2em;
}
.contactItem input:focus, .contactItem select:focus{
  border-color: var(--secondary-color);
}
.contactItem{
  margin-bottom: 20px;
}
.contactItem textarea{
  width: 100%;
  border:1px solid var(--primary-color);
  background-color: #e8f1f9;
  font-size: 1em;
  font-weight: 400;
  height: 12.55rem;
  font-style: normal;
  padding: 1rem 1rem;
  line-height: 1.2em;
}
.contactItem textarea:focus{
  border-color: var(--secondary-color);
}
.error{
  font-size: 12px;
  color: #ff0000;
}
.btnTheme:hover{
  color: var(--primary-color);
}
.privacyPolicy p, .privacyPolicy ul, .privacyPolicy ol{
  margin-bottom: 15px;
  font-size: 15px;
}
.privacyPolicy ul{
  padding:10px;
  list-style-type: disc;
  margin-left: 15px;
}
.privacyPolicy ul li, .privacyPolicy ol li{
  font-size: 15px;
  padding:5px 0;
}
.headerYearly{
    display:flex;
    cursor:pointer;
    align-items:center;
    padding:15px 20px;
    justify-content:space-between;
}
.yearlyItem{
    margin-top:20px;
    background:#fff;
    border-radius:5px;
}
.yearlyBody{
    display:none;
    padding:15px;
    border-top:1px solid #999;
}
.yearlyItem.active .yearlyBody{
    display:block;
}
.headerYearly h4{
    color:var(--primary-color);
}
.stickyItem{
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    z-index: 999;
}
.rightImgMission{
    height:100%;
}
.rightImgMission img{
    width:100%;
    height:100%;
    object-fit:cover
}
.ilineHeaderPopup{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.rightHeaderPop{
    width:40px;
    transform:translateY(-5px);
}
.rightHeaderPop img{
    cursor:pointer;
    max-width:100%;
}
.leftHeaderPop{
    width:calc(100% - 60px);
}
.textLeft p{
    text-align:left;
    margin-top:10px;
    color:#ddd;
}
.text_black{
    color:#000;
}
#infoPop .modal-content{
    background:var(--primary-color);
}
#infoPop .modal-header{
    border-bottom:none;
}
.closeBtn{
    color:#fff;
    border:none;
    background:transparent;
}
.closeBtn i{
    font-size:25px;
}
#infoPop *{
    color:#fff;
}
#infoPop p{
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}