@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400;1,500;1,600;1,700;1,800&family=Poppins:wght@200;300;400;500;600;700;800;900&family=Prompt:wght@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: #000;
  outline: 1px solid #000;
}
html{
  scroll-behavior: smooth;
}
:root {
  --primary-color:#7A8F27;
  --secondary-color:#6F3996;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p{
    font-size: 16px;
    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;
}
.inlineHeader{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.large_heading{
  font-size: 50px;
}
.heading{
  font-size: 33px;
}
.sub_heading{
  font-size: 26px;
}
.small_heading{
  font-size: 22px;
}
.title{
  font-size: 18px;
}
.fontWeight500{
  font-weight: 500;
}
.fontWeight600{
  font-weight: 600;
}
.fontWeight700{
  font-weight: 700;
}
.fontWeight800{
  font-weight: 800
}
.fontWeight900{
  font-weight: 900;
}
.text_primary{
  color: var(--primary-color);
}
.fontPrompt{
  font-family: 'Prompt', sans-serif;
}
.fontDisplay{
  font-family: 'Playfair Display', serif;
}
.leftlogo{
  width: 100px;
  transition: all 0.3s ease-in-out;
}
.leftlogo img{
  max-width: 100%;
}
.leftheader{
  display: flex;
  align-items: center;
}
.headerMenu{
  margin-left: 30px;
}
.headerMenu ul{
  display: flex;
}
.headerMenu ul li a{
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding:5px 10px;
  font-weight: 500;
  color: #444;
}
.headerMenu ul li a:hover, .headerMenu ul li.active a{
  color: var(--primary-color)
}
.headerMenu p{
  font-size: 14px;
  font-family: 'Prompt', sans-serif;
  font-weight: 500;
  color: #666;
  padding:10px 13px;
}
.headerMenu p a{
  font-weight: 700;
  color: var(--secondary-color);
}
.header{
  position: fixed;
  top: 0px;
  z-index: 9;
  width: 100%;
  padding:5px 0;
}
.btnTheme{
  display: inline-block;
  padding:12px 25px;
  background:var(--primary-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Prompt', sans-serif;
  border:1px solid transparent;
}
.btnTheme:hover{
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btnTheme2{
  display: inline-block;
  padding:12px 25px;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Prompt', sans-serif;
  border:1px solid var(--secondary-color);
}
.btnTheme2:hover{
  background: var(--secondary-color);
  color: #fff;
  border-color: transparent;
}
.bannerHome{
  padding-top: 220px;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.text_primary{
  color: var(--primary-color);
}
.text_secondary{
  color: var(--secondary-color);
}
.bannerHome:after{
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  background:#f0ebf4;
  z-index: -1;
}
.textGrey{
  color: #444;
}
.lefbanner .title{
  font-size: 17px;
}
.letterSpacing{
  letter-spacing: 1px;
}
.rightBanner{
  background:#fff;
  border-radius: 10px;
}
.rightBanner img{
  max-width: 100%;
  transform: translate(20px, -50px);
  border-radius: 10px;
}
.rightheader a:hover{
  background:#fff;
}
.circleHome{
  width: 200px;
  height: 200px;
  border:1px solid #a888c0;
  position: absolute;
  top: -70px;
  right: -70px;
  z-index: 1;
  border-radius: 50%;
}
.circleHome:after{
  content: '';
  position: absolute;
  top: -19px;
  right: -19px;
  border-radius: 50%;
  border:2px solid #a888c0;
  width: 250px;
  height: 250px;
  z-index: -1;
}
.circleHome:before{
  content: '';
  position: absolute;
  top: -37px;
  right: -37px;
  border-radius: 50%;
  border:3px solid #a888c0;
  width: 300px;
  height: 300px;
  z-index: -1;
}
.sticky{
  background:#fff;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.sticky .leftlogo{
  width: 80px;
}
.bgSecondary{
  background:var(--secondary-color);
}
.rightBannerBottom{
  text-align: right;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.btnWhite{
  display: inline-block;
  padding:12px 25px;
  background:transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Prompt', sans-serif;
  border:1px solid #fff;
}
.btnWhite:hover{
  background:#fff;
  border-color: transparent;
  color: var(--secondary-color);
}
.aboutLeft{
  padding:30px 10px 30px 30px;
  position: relative;
  z-index: 1;
  height: 100%;
}
.aboutLeft:before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 120px;
  height: 100%;
  background:#f1f3e9;
  z-index: -1;
}
.aboutLeft img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.listCheck li{
  padding:5px 30px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.listCheck li:before{
  content: "\f151";
  position: absolute;
  top: 11px;
  color: var(--primary-color);
  left: 3px;
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 12px;
}
.experienceBatch{
  padding:10px;
  background:#fff;
  position: absolute;
  width: 300px;
  bottom: 0px;
  right: -50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.batchIcon{
  width: 70px;
  padding:10px;
  height: 70px;
  background:var(--secondary-color);
}
.batchIcon img{
  max-width: 100%;
}
.rightExp{
  width: calc(100% - 90px);
}
.circleHome2{
  width: 200px;
  height: 200px;
  border:1px solid #a888c0;
  position: absolute;
  bottom: -70px;
  right: -70px;
  z-index: 1;
  border-radius: 50%;
}
.circleHome2:after{
  content: '';
  position: absolute;
  bottom: -19px;
  right: -19px;
  border-radius: 50%;
  border:2px solid #a888c0;
  width: 250px;
  height: 250px;
  z-index: -1;
}
.circleHome2:before{
  content: '';
  position: absolute;
  bottom: -37px;
  right: -37px;
  border-radius: 50%;
  border:3px solid #a888c0;
  width: 300px;
  height: 300px;
  z-index: -1;
}
.bgGrey{
  background:#f5f5f5;
}
.itemServices{
  text-align: center;
  margin-bottom: 30px;
}
.itemIconServices{
  width: 80px;
  height: 80px;
  background:#fff;
  margin:0 auto;
  padding:10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.itemIconServices img{
  max-width: 100%;
}
.itemServices h4{
  margin-top: 25px;
}
.iconTime{
  width: 65px;
  height: 65px;
  background:var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  color: #fff;
  padding: 7px;
}
.iconTime img{
  max-width: 100%;
}
.itemSchedule{
  border:1px solid #ccc;
  padding:15px;
  border-radius: 10px;
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-between;
}
.itemRightSchedule{
  width: calc(100% - 90px);
}
.itemSchedule{
  margin-bottom: 10px;
}
.itemSchedule p{
  font-size: 15px;
}
.itemSchedule:hover{
  border-color:var(--secondary-color);
}
.rightSchedule img{
  max-width: 100%;
}
.rightSchedule{
  padding:30px 30px 30px 30px;
  position: relative;
  z-index: 1;
  height: 100%;
}
.rightSchedule:before{
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  width: 120px;
  height: 100%;
  background:#f1f3e9;
  z-index: -1;
}
.rightSchedule img{
  width: 100%;
  height: 100%;
  object-fit:cover;
}
.bgLight{
  background:#F0EBF4;
}
.calendar{
  padding:15px;
  background:#fff;
  text-align: center;
}
.calendar img{
  max-width: 100%;
}
.itemTesti{
  padding:10px;
}
.testimonialInner{
  background:#fff;
  padding:30px;
  border-radius: 10px;
}
.iconTesti{
  width: 60px;
  margin-bottom: 30px;
}
.iconTesti img{
  opacity: .7;
  max-width: 100%;
}
.innerTesti{
  padding-left: 15px;
}
.testimonialInner{
  height: 320px;
}
.slick-arrow{
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  background:var(--primary-color) !important;
  z-index: 2 !important;
}
.slick-arrow i{
  color: #fff;
  font-size: 22px !important;
}
.slick-next:before, .slick-prev:before{
  display: none;
}
.slick-next{
  right: -10px !important;
}
.slick-prev{
  left: -5px !important;
}
.itemContact{
  display: flex;
  justify-content: space-between;
}
.contactItem{
  width: 40px;
  height: 40px;
  background:var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactItem i{
  color: #fff;
}
.rightContact{
  width: calc(100% - 60px);
}
.rightContact a{
  color: var(--primary-color);
  font-weight: 600;
  font-size: 18px;
}
.textHeight {
    height: 180px !important;
}
.form-floating>.form-control:focus, .form-select:focus, .form-floating>.form-control:not(:placeholder-shown)
{
  border-color: var(--primary-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: 1rem 1rem;
  font-size: 15px;
}
.form-floating>.form-control{
  border-color: #999;
  padding-left: 1rem;
}
.formContact{
  padding-left: 20px;
}
.socialLinks{
  margin-top: 25px;
}
.socialLinks ul{
  display: flex;
  align-items: center;
}
.socialLinks ul li a{
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  border-radius: 3px;
  margin: 0 5px;
  font-size: 18px;
  color: #fff;
}
.socialLinks ul li a.facebook{
  background:#3b5998;
}
.socialLinks ul li a.twitter{
  background:#1DA1F2;
}
.socialLinks ul li a.linkedin{
  background:#0A66C2;
}
.socialLinks ul li a.instagram{
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.footer{
  background:#222;
  padding:60px 0 20px;
}
.leftFooter p{
  font-size: 14px;
  color: #999;
}
.leftFooter p a{
  color: #999;
}
.leftFooter p a:hover{
  color: #fff;
}
.footerMenu ul{
  display: flex;
  justify-content: flex-end;
}
.footerMenu ul li a{
  color: #fff;
  display: inline-block;
  padding:10px 8px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: 'Prompt', sans-serif;
}
.footerMenu p{
  margin-top: 15px;
  font-size: 14px;
  color: #999;
  text-align: right;
}
.footerSocial{
  margin-top: 25px;
}
.footerSocial ul{
  display: flex;
  justify-content: flex-end;
}
.footerSocial ul li a{
  color: #999;
  font-size: 18px;
  display: inline-block;
  padding:10px;
}
.footerSocial ul li a:hover{
  color: #fff;
}
.copyRight{
  margin-top: 20px;
  padding-top: 20px;
  border-top:1px solid #333;
  text-align: center;
}
.copyRight p{
  font-size: 14px;
  color: #999;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 10px;
  color: #fff;
  background-color: var(--secondary-color);
  z-index: 999;
  width: 50px;
  text-align: center;
  height: 50px;
  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;
}
.shortBanner{
  height: 400px;
  padding-top:200px;
  background-repeat: no-repeat;
  background-size:cover;
  background-attachment: fixed;
  background-position: bottom;
  position: relative;
  z-index: 1;
}
.shortBanner:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background:rgba(255,255,255,.9);
  z-index: -1;
}
.shortBanner ul{
  display: flex;
  align-content: center;
  justify-content: center;
}
.shortBanner ul li a{
  color: #333; 
  display: inline-block;
  padding:0px 10px;
  font-size: 14px;
  font-weight: 600;
}
.shortBanner ul li{
  font-size: 14px;
  padding: 10px 0px;
}
.shortBanner ul li.active a{
  color: var(--secondary-color);
}
.circleHome3{
  width: 200px;
  height: 200px;
  border:1px solid #a888c0;
  position: absolute;
  bottom: -120px;
  left: -120px;
  z-index: 1;
  border-radius: 50%;
}
.circleHome3:after{
  content: '';
  position: absolute;
  bottom: -19px;
  left: -19px;
  border-radius: 50%;
  border:2px solid #a888c0;
  width: 250px;
  height: 250px;
  z-index: -1;
}
.circleHome3:before{
  content: '';
  position: absolute;
  bottom: -37px;
  left: -37px;
  border-radius: 50%;
  border:3px solid #a888c0;
  width: 300px;
  height: 300px;
  z-index: -1;
}
.zIndex{
  z-index: -1;
}
.rightAboutInner img{
  max-width: 100%;
}
.rightAboutInner{
  padding:10px;
}
.itemFooter h3{
  color: #ccc;
}
.itemFooter ul{
  margin-top: 15px;
}
.itemFooter ul li a{
  color: #999;
  font-size: 13px;
  display: inline-block;
  text-transform: capitalize;
  padding:7px 0px;
}
.itemFooter ul li a:hover{
  color: #fff;
}
.itemTeam{
  padding: 15px;
  background:#fff;
  border-radius: 5px;
}
.itemTeamLeft img{
  width: 100%;
}
.itemTeamRight p{
  font-size: 14px;
}
.itemTeamLeft p{
  font-size: 14px;
}
.bar:after, .bar:before{
  display: none;
}
.itemFacility{
  border:1px solid #999;
  height: 300px;
  padding:5px;
  margin-bottom: 15px;
}
.itemFacility img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.activityCalendar img{
  max-width: 100%;
}
.itemTestiInner{
  margin-top:1.5rem;
  padding:20px;
  border:1px solid #999;
  background:#fff;
  border-radius: 5px;
}
.itemTestiInner:hover{
  border-color: var(--secondary-color);
}
.itemBlog{
  border:1px solid #e0e0e0;
  padding:5px;
  margin-bottom: 25px;
}
.blogImg img{
  max-width: 100%;
}
.blogDesc{
  padding:15px 10px;
}
.blogDesc h3 {
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.btnLink{
  border:none;
  background:none;
  margin-top: 10px;
  font-family: 'Prompt', sans-serif;
  font-weight: 500;
  color: var(--secondary-color);
  font-size: 16px;
}
.btnLink i{
  transform: translateY(2px);
  font-size: 12px;
}
.btnLink:hover{
  color: var(--primary-color);
}
.blogDate ul{
  display: flex;
  align-items: center;
}
.blogDate ul li{
  padding:10px;
  font-size: 14px;
}
.blogInnerImage img{
  max-width: 100%;
}
.blogInnerImage{
  margin-top: 15px;
}
.blogInnerDescription{
  margin-top: 20px;
}
.blogInnerDescription p{
  margin-bottom: 20px;
}
.blogInnerDescription h3{
  font-size: 24px;
  margin-bottom: 20px;
  font-family: 'Prompt',sans-serif;
  font-weight: 600;
}
.blogInnerDescription h4{
  font-size: 24px;
  margin-bottom: 20px;
  font-family: 'Prompt',sans-serif;
  font-weight: 600;
}
.sidebarHeader {
  border-bottom:1px solid var(--secondary-color);
  padding: 20px 0;
}
.sidebarBlog{
  padding-left: 15px;
}
.sidebarBlogItem{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
}
.sidebarBlogItem{
  margin-top: 15px;
}
.sidebarImg img{
  max-width: 100%;
}
.sidebarImg{
  width: 150px;
}
.rightSidebar{
  width: calc(100% - 200px);
  margin-left: 16px;
}
.rightSidebar a {
    color: #333;
}
.paddingTop{
  padding-top: 180px;
}
.overlay{
  display: none;
}
.itemTrainging{
  text-align: center;
  margin-top: 50px;
  border:1px solid #999;
  position: relative;
  z-index: 1;
  padding:40px;
}
.itemTrainging p a{
  color: var(--secondary-color);
}
.itemTrainging:after{
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border:1px solid #999;
  z-index: -1;
}
.traingBorder{
    border:1px solid var(--primary-color);
}
.capIn {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #999;
  border-radius: 3px;
}
#refresh_captcha{
  border-radius:5px;
  background:#f1f1f1;
  padding:5px 7px;
  cursor: pointer;
  text-align: center;
}