@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
  box-sizing: border-box;
  font-family: "Poppins", 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:#2cacbe;
  --secondary-color:#e59240;
}
*,
*::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;
}
.title {
  font-size: 18px;
}
.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.8);
  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;
}
.header.stricky-fixed .rnbLogo{
  width: 160px;
}
.header.stricky-fixed .naacLogo{
  width: 110px;
}
@-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: "Poppins", sans-serif;
}
.text_secondary{
  color: var(--secondary-color);
}
.text_primary{
  color: var(--primary-color);
}
.bgPrimary{
  background: var(--primary-color);
}
.bgSecondary{
  background: var(--secondary-color);
}
.containerFull{
  max-width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}
.header{
  padding: 10px 0;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 9;
}
.leftLogo{
  width: 200px;
}
.leftLogo img{
  max-width: 100%;
}
.rightMenu ul{
  display: flex;
}
.rightMenu ul li a{
  display: inline-block;
  color: #000;
  font-weight: 600;
  padding: 15px;
  font-size: 14px;
}
.rightMenu ul li a:hover, .rightMenu ul li.active a{
  color: var(--primary-color);
}
.rightHeader ul{
  display: flex;

}
.rightHeader ul li a{
  display: inline-block;
  padding: 5px 12px;
  color: #111;
  font-size: 17px;
}
.rightHeader ul li a:hover{
  color: var(--primary-color);
}
.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-top: 4px solid var(--primary-color);
  background: #fff;
  padding: 10px;
}

.rightMenu ul li ul li a {
  font-size: 14px;
  text-transform: capitalize;
  display: block;
  padding: 8px 15px;
  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;
}
.btnTheme{
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border:none;
  font-weight: 600;
}
.btnTheme i{
  margin-right: 10px;
}
.bgGradient{
  background: linear-gradient(to right, #168a9b 0%, #c97a2b 100%);
}
.btnTheme.bgGradient:hover{
  background: linear-gradient(to left, #168a9b 0%, #c97a2b 100%);
}
.itemWhy{
  padding: 20px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background: #ffffff;
  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;
  margin-bottom: 25px;
}
.boxWhy{
  height: 170px;
}
.iconWhy{
  width: 60px;
  height: 60px;
  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;
  font-size: 24px;
}
.itemWhy:hover{
  box-shadow: var(--bs-box-shadow) !important;
  transform: translateY(-5px);
}
.text-purple{
  color: #7432F9;
}
.bg-purple{
  background: #7432F9;
}
.lightBg{
  background: #F5F8FD;
}
.itemBox{
  background: #fff;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  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;
  overflow: hidden;
}
.leftBoxImg img{
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  max-width: 100%;
}
.rightBoxImg img{
  max-width: 100%;
}
.itemBox:hover{
  box-shadow: var(--bs-box-shadow) !important;
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
.rightContent{
  padding: 30px;
  padding-left: 0px;
}
.textGreen {
  color: #26a728;
}
.rightContent ul li{
  padding:7px 5px;
  font-weight: 500;
  position: relative;
  padding-left: 2rem;
  font-size: 15px;
}
.rightContent ul li:before{
  content: "";
  width: 22px;
  height: 22px;
  background-image: url(../images/icons/yes.png);
  background-size: cover;
  position: absolute;
  left: 0px;
  top: 9px;
}
.bgShape{
  background: url(../images/bg/shape.png) no-repeat;
  background-size: 100%;
  background-position: center, left;
  backdrop-filter: blur(10px);
}
.itemTrusted{
  background: rgba(255, 255, 255, 0.1);
  border:1px solid rgba(255, 255, 255, 0.5);
  padding: 30px 20px;
  text-align: center;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.iconTrusted{
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #fff;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.itemProSlider{
  padding: 15px;
}
.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(--secondary-color) !important;
}
.leftAbout img{
  width: 100%;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  height: 500px;
  object-fit: cover;
}
.leftRation{
  display: flex;
  gap: 20px;
}
.rightAboutRatio{
  padding:20px;
  background:#fff;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.negativeMargin{
  margin-top: -50px;
}
.bgGrey {
  background: #f1f1f1;
}
.itemSmallCol img {
  width: 75px;
}
.rightTiming img{
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.rightTiming{
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #fff;
}
.innerTestimonial{
  text-align: center;
  border:1px solid #ccc;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  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;
  background: #fff;
  padding: 2rem;
  height: 480px;
}
.testimonialBox{
  height: 425px;
}
.testiBox{
  text-align: left;
}
.testiBox p{
  font-size: 12px;
  margin: 5px 0;
}
.iconTesti{
  background: #f1f1f1;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-size: 2rem;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.innerTexttest .iconTesti{
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
}
.innerTestimonial:hover{
  box-shadow: var(--bs-box-shadow)!important;
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}
.couraseBox {
  margin: 15px 0 0 0;
  background: #EFF6FF;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 15px;
}
.priceRight{
  padding: 20px;
}
.listCall ul{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.listCall ul li{
  font-size: 13px;
  padding:5px 15px;
  position: relative;
  z-index: 1;
  padding-left:20px;
  color: #eee;
  font-weight: 500;
}
.listCall ul li:before{
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #65f368;
}
.itemblog{
  padding: 0 10px;
}
.innerBlog{
 position: relative; 
}
.imgBlog img{
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.homeBlogDes{
  padding: 20px 0;
}
.btnLink{
  display: inline-block;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
}
.btnLink i{
  font-size: 13px;
}
.dateTag{
  width: 80px;
  height: 90px;
  position: absolute;
  top: -1px;
  left: 20px;
  padding: 10px 10px 5px;
  background: #fff;
  text-align: center;
  clip-path: polygon(100% 0, 100% 100%, 50% 78%, 0 100%, 0 0);
  box-shadow: 0 0.5rem 1rem rgba(253, 4, 4, 0.15) !important;
  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;
}
.dateTag p{
  line-height: 28px;
}
.itemblog:hover .dateTag{
  background: var(--secondary-color);
}
.itemblog:hover .dateTag p{
  color: #fff;
}
.footer{
  background: #1F2937;
  padding: 4rem 0;
}
.footerLogo{
  width: 220px;
}
.footerLogo img{
  max-width: 100%;
}
.footerColumn ul{
  margin-top: 20px;
}
.footerColumn ul li a{
  color: #fff;
  display: inline-block;
  font-size: 15px;
  padding: 5px;
  font-weight: 500;
}
.copyright {
  background: #fff;
  padding: 15px 0;
  text-align: center;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -60px;
  right: 15px;
  color: #fff;
  background-color: var(--primary-color);
  z-index: 999;
  width: 40px;
  text-align: center;
  height: 40px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 17px;
  -webkit-transition: .9s;
  transition: .9s;
  overflow: hidden;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.footer .rightHeader ul li a{
  color: #fff;
}
.rightFormInner{
  padding:20px
}
.itemForm{
  margin-top: 15px;
}
.itemForm input, .itemForm select, .itemForm textarea{
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  height: 45px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  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-weight: 500;
  font-size: 14px;
}
.itemForm input::placeholder{
  font-size: 14px;
}
.itemForm input:focus, .itemForm select:focus, .itemForm textarea:focus {
  border-color: var(--primary-color);
  box-shadow:1px 2px 6px 0px #2cacbe69;
}
.itemForm textarea{
  height: 80px;
}
.leftProgramInner{
  padding-right:20px;
}
.iconInnerPro{
  width: 50px;
  height: 50px;
  border-radius: 13px;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  -ms-border-radius: 13px;
  -o-border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  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;
}
.itemWhy:hover .iconInnerPro{
  transform:scale(1.1);
  -webkit-transform:scale(1.1);
  -moz-transform:scale(1.1);
  -ms-transform:scale(1.1);
  -o-transform:scale(1.1);
}
.stickyTop{
  position: sticky;
  position: -webkit-sticky;
  top: 80px;
  z-index: 9;
}
.tabBlock{
  margin-top: 1.5rem;
}
.tabBlock ul{
  display: flex;
  background: #f1f1f1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 50%;
  padding: 5px;
}
.tabBlock ul li{
  width: calc(100% / 2);
  text-align: center;
  padding: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  color: #666;
}
.tabBlock ul li.active{
  background: #fff;
  color: var(--primary-color);
  border-radius: 10px;
}
.iconCurri{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  font-size: 1.3rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rightCurrm{
  width: calc(100% - 50px);
}
.greyGrandient{
  background: linear-gradient(135deg, #ffffff 0%,#f5f5f5 100%);
}
.smallFont{
  font-size: 12px;
}
.proList ul li{
  font-size: 14px;
  padding-left: 1.7rem;
}
.proList ul li:before{
  width: 18px;
  height: 18px;
  top: 9px;
}
.halfFull{
  width: calc(100% - 100px);
}
.itemFaculty{
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.headerFaculty{
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 20px;
  background: #d4eef2c7;
}
.teacherIcon{
  width: 100px;
  height: 100px;
  padding: 5px;
  background: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.teacherIcon img{
  max-width: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.rightTeacherDetail{
  width: calc(100% - 130px);
}
.expertise{
  margin-top: 1rem;
}
.expertise ul{
  display: flex;
  column-gap:10px ;
}
.expertise ul li{
  font-size: 14px;
  font-weight: 500;
}
.bodyFaculty{
  padding: 20px;
}
.bodyFaculty .rightContent ul li{
  font-size: 13px;
  padding: 5px 5px;
  padding-left: 1.7rem;
}
.bodyFaculty .rightContent ul li:before{
  top: 7px;
  width: 18px;
  height: 18px;
}
.itemFacultySlider{
  padding: 0 10px;
}
.bgGradientGreen {
  background: linear-gradient(to right, #168a9b 0%, #c97a2b 100%);
  padding: 3rem;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.boxItem{
  padding: 2rem;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgb(228, 251, 255) 100%);
}
.btnPrimary{
  background: var(--primary-color);
}
.btnPrimary:hover{
  background: #279aab;
}
.borderPrimary{
  border-color: var(--primary-color);
}
.btnOutlineSecondary{
  border:1px solid var(--secondary-color)
}
.btnOutlinePrimary{
  border:1px solid var(--primary-color)
}
.btnSecondary{
  background: var(--secondary-color);
}
.btnSecondary:hover{
  background: #d68a3f;
}
.btnOutlinePrimary:hover{
  background: var(--primary-color);
  color: #fff;
}

.btnOutlineSecondary:hover{
  background: var(--secondary-color) !important;
  color: #fff !important;
}
.tagCap{
  display: inline-block;
  padding: 5px 15px;
  background: var(--secondary-color);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  color: #fff;
}
.boxMaster{
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  -ms-border-radius: 1.5rem;
  -o-border-radius: 1.5rem;
  padding: 3rem;
}
.darkBg {
  background: #252840;
}
.itemRation{
  padding:30px;
  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;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.itemRation:hover{
  background: rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
.imgProgram img{
  width: 100%;
  border-radius: 15px 15px 0 0;
  -webkit-border-radius: 15px 15px 0 0;
  -moz-border-radius: 15px 15px 0 0;
  -ms-border-radius: 15px 15px 0 0;
  -o-border-radius: 15px 15px 0 0;
  height: 250px;
  object-fit: cover;
  object-position: center;
}
.textLimit{
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 45px;
}
.smallBtn{
  padding: 10px;
  font-size: 14px;
  text-align: center;
}
.textLight{
  color: #444;
}
.itemClient{
  padding: 0 5px;
}
.innerClient{
  background: #fff;
  border:1px solid #ccc;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.innerClient img{
  width: 80%;
  max-height:100%;
}
.brderStartWidth{
  border-left-width:5px !important;
}
.textGray{
  color: #444;
}
.iconWe{
  width: 55px;
  height: 55px;
  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;
  font-size: 1.5rem;
}
.rightWhyInner p{
  font-size: 14px;
}
.itemWhyInner{
  display: flex;
  flex-wrap: wrap;
}
.rightWhyInner{
  margin-left: 20px;
  width: calc(100% - 80px);
}
.alert-purple{
  border:1px solid #a578ff;
  background: #e3d5ff;
}
.makeDifference{
  background: rgb(255 255 255 / 13%);
  padding: 30px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.iconDifference{
  width: 65px;
  height: 65px;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.socialIcons ul {
  display: flex;
  margin-top: 20px;
}
.socialIcons ul li a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  font-size: 18px;
  color: #fff;
  width: 35px;
  height: 35px;
}
.socialIcons ul li{
  margin: 0 5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.socialIcons ul li.facebook{
  background: #1877F2 ;
}
.socialIcons ul li.twitter{
  background: #000;
}
.socialIcons ul li.twitter a{
  color: #fff;
}
.socialIcons ul li.youtube{
  background: #ff0000;
}
.socialIcons ul li.instagram{
  background: #833ab4;
  background: linear-gradient(
    to right,
    #833ab4,#fd1d1d,#fcb045
  );
}
.rightContact textarea{
  height: 130px;
}
.singleImg img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.singleBlogDes p{
  margin-bottom: 15px;
}
.singleBlogDes h1, .singleBlogDes h2, .singleBlogDes h3, .singleBlogDes h4, .singleBlogDes h5, .singleBlogDes h6, .singleBlogDes ul, .singleBlogDes ol{
  margin-bottom: 15px;
}
.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);
}
.tabClick{
  cursor: pointer;
}
.translateCustom{
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}
.bannerText ul li img{
  width: 60px;
  margin: 0 auto;
}
.styled-select {
  font-weight: normal;
  color: #888; /* greyed out placeholder */
}

.styled-select.has-value {
  font-weight: bold;
  color: #000; /* regular black text */
}
/* pet program */
.bannerSection{
  background: url(../images/bg/pet-bg.jpg) no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.bannerSection:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(22, 137, 155, 0.822) 0%, rgba(201, 122, 43, 0.822) 100%);
  z-index: -1;
}
.capSpan{
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  border:1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.leftInnerPet h1{
  color: #fff;
}
.boxBanner{
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border:1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  backdrop-filter: blur(10px);
}
.boxBanner .sub_heading{
  font-size: 1.6rem;
}
.rounded-4{
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.hoverSecondary:hover{
  background: var(--secondary-color) !important;
  color: #fff;
}
.tableFont{
  font-size: 14px;
}
.tableFont th{
  background: #333;
  color: #fff;
}
.innerHero:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.81) 0%,rgba(0,0,0,0) 100%);
  z-index: 1;
}
.borderBox{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.borderBox:after{
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #b7f7ff;
  z-index: -1;
}
.borderBox:before{
  content: '';
  position: absolute;
  bottom: -108px;
  right: 190px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #b7f7ff;
  z-index: -1;
}
.btnMenu{
  border:none;
  background: none;
  font-size: 1.2rem;
}
.leftImg{
  height: 100%;
}
.leftImg img{
  height: 100%;
}
.heightFull{
    height:100%;
}
.footerItem p{
    color:#fff;
}
.rightWhyInner a p{
    color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important;
}