html {
  font-size: 18px;
}

@media only screen and (max-width: 1024px) {
  html {
    font-size: 16px;
  }
}

@media only screen and (max-width: 991px) {
  html {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

body {
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  color: #2b2a29;
}

body.header-fixed {
  padding-top: 100px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

.text-temp {
  color: #b71307;
}

.imgBox {
  overflow: hidden;
}

.imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-fluid {
  width: 100%;
}

.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #b71307;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
  text-align: center;
}

.back-to-top i {
  font-size: 24px;
}

.back-to-top:hover {
  color: #fff;
  background: #2b2a29;
  transition: 0.3s ease-in-out;
}

.avater {
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
}

.avater img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avater-150 {
  width: 150px;
  height: 150px;
}

.avater-130 {
  width: 130px;
  height: 130px;
}

.avater-100 {
  width: 100px;
  height: 100px;
}

.avater-80 {
  width: 80px;
  height: 80px;
}

.avater-70 {
  width: 70px;
  height: 70px;
}

.avater-60 {
  width: 60px;
  height: 60px;
}

.avater-40 {
  width: 40px;
  height: 40px;
}

.loader {
  position: fixed;
  width: 100%;
  overflow: hidden;
  height: 100vh;
  z-index: 9999;
  background: white;
  top: 0;
  left: 0;
}

.loader .indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(4);
  -ms-transform: translate(-50%, -50%) scale(4);
  transform: translate(-50%, -50%) scale(4);
}

.loader .indicator svg polyline {
  fill: none;
  stroke-width: 0.5;
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loader .indicator svg polyline.back {
  stroke: #b71307;
}

.loader .indicator svg polyline.front {
  stroke: #bdbdbd;
  stroke-dasharray: 12, 36;
  stroke-dashoffset: 48;
  -webkit-animation: dash 1s linear infinite;
  animation: dash 1s linear infinite;
}

@-webkit-keyframes dash {
  62.5% {
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  62.5% {
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
  }
}

#header {
  position: fixed;
  z-index: 999;
  min-height: 60px;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  font-family: "Poppins", sans-serif;
}

#header .topBar {
  background: #b71307;
  height: 40px;
  font-size: 14px;
  color: #fff;
  padding: 0;
}

#header .topBar .contact-info i {
  font-style: normal;
  color: #fff;
}

#header .topBar .contact-info i a,
#header .topBar .contact-info i span {
  padding-left: 5px;
  color: #fff;
  text-decoration: none;
}

#header .topBar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#header .topBar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#header .topBar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#header .topBar .social-links a:hover {
  color: white;
}

#header .navbar {
  background: #fff;
  box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.15);
  width: 100%;
}

#header .navbar .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

#header .navbar .navbar-brand img {
  max-height: 45px;
}

#header .navbar .navbar-brand svg {
  height: 45px;
  margin-right: 10px;
}

#header .navbar .navbar-content {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

#header .searchToggler {
  border: 0;
  outline: none !important;
  box-shadow: none;
  background: #e8eaf6;
  width: 170px;
  height: 45px;
  border-radius: 4px;
  line-height: 42px;
  text-align: center;
  color: #616161;
  font-size: 1rem;
  transition: all 0.4s ease;
  position: absolute;
  top: 0;
  right: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

#header .searchToggler:hover {
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

#header .navbarToggle {
  position: relative;
  padding: 0;
  outline: none !important;
  background-color: transparent;
  background-image: none;
  border: 0 !important;
  width: 34px;
  transition: all 0.4s ease;
  cursor: pointer;
  height: 28px;
  transition-delay: 0.3s;
  box-shadow: none !important;
}

#header .navbarToggle .bar {
  transition: all 0.3s;
  height: 1px;
  width: 100%;
  display: block;
  background-color: #2b2a29;
  float: right;
}

#header .navbarToggle .bar:nth-of-type(2) {
  transition-property: margin, height, width;
  transition-delay: 0.3s, 0.3s, 0;
  margin: 8px 0;
}

#header .navbarToggle .bar:nth-of-type(1) {
  transform: rotate(45deg);
  transition-delay: 0.3s;
  width: 70%;
  margin-top: 1px;
}

#header .navbarToggle .bar:nth-of-type(2) {
  opacity: 0;
  height: 0;
  margin: -4px 0;
}

#header .navbarToggle .bar:nth-of-type(3) {
  transform: rotate(-45deg);
  transition-delay: 0.3s;
  width: 70%;
}

#header .navbarToggle.collapsed {
  padding-top: 0px;
}

#header .navbarToggle.collapsed:hover .bar {
  width: 100%;
}

#header .navbarToggle.collapsed .bar:nth-of-type(1) {
  transform: rotate(0deg);
  width: 70%;
  margin-top: 1px;
}

#header .navbarToggle.collapsed .bar:nth-of-type(2) {
  opacity: 1;
  height: 1px;
  margin: 8px 0;
  width: 28px;
}

#header .navbarToggle.collapsed .bar:nth-of-type(3) {
  transform: rotate(0deg);
  width: 32px;
}

#header .navbar .navbar-nav .nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #262626;
  font-weight: 500;
}

#header .navbar .navbar-nav .nav-link:hover,
#header .navbar .navbar-nav .nav-link.active {
  color: #b71307;
}

@media (min-width: 992px) {
}

@media only screen and (min-width: 576px) {
}

@media only screen and (max-width: 991px) {
}

@media only screen and (max-width: 575px) {
}

.btn-temp {
  position: relative;
  color: #fff;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 30px;
  display: inline-block;
  outline: none;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 0;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
  text-decoration: none;
  background: #b71307;
  border-radius: 30px;
  z-index: 1;
}

.btn-temp:hover,
.btn-temp:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
  background: #2b2a29;
}

.btn-temp:before {
  content: "";
  width: calc(100% - 6px);
  height: 0;
  border-radius: 30px;
  position: absolute;
  top: 3px;
  left: 3px;
  background: rgba(255, 255, 255, 0);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn-temp:hover:before {
  height: calc(100% - 6px);
  background: rgba(0, 0, 0, 0.1);
}

.btn-temp.btn-red {
  background: #b71307;
}

.btn-temp.btn-blue {
  background: #3fb7c8;
}

.btn-temp.btn-orange {
  background: #f57b32;
}

.btn-temp.btn-green {
  background: #4caf50;
}

.isaSlider {
  position: relative;
  height: calc(100vh - 182px);
}

.isaSlider .swiper-slide {
  height: calc(100vh - 182px);
  overflow: hidden;
}

.isaSlider .swiper-slide .slideImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 4s ease;
  transition-delay: 1s;
}

.isaSlider .swiper-slide .slideContent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

.isaSlider .swiper-button-prev,
.isaSlider .swiper-button-next {
  position: absolute;
  bottom: 15px;
  right: 15px;
  top: auto;
  left: auto;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: #212121;
  background: #fafafa;
  border: 0;
  outline: none;
  box-shadow: 0 0 10px 1px rgb(0 0 0 / 40%);
}

.isaSlider .swiper-button-prev {
  right: 70px;
}

.isaSlider .swiper-button-prev::after,
.isaSlider .swiper-button-next::after {
  font-size: 12px;
}

.isaSlider .swiper-pagination-progressbar {
  top: auto;
  bottom: 0;
  height: 2px;
}

.isaSlider .swiper-slide.swiper-slide-active .slideImg {
  transform: scale(1.1);
  transition-property: transform;
  transition-delay: 500ms;
}

.isaSlider .isppBtn {
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 5;
  outline: none !important;
  background: transparent !important;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  box-shadow: 0 0 10px 1px rgb(0 0 0 / 40%);
  border-radius: 100%;
  cursor: pointer;
}

.isaSlider .isppBtn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  opacity: 0;
}

.isaSlider .isppBtn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAZdJREFUeNrs29FNQjEYBlAgDuAIuAFugBvgBrABTiBOgE4AGzgCbCAbwAayAbZJb0KMT77wt/ecpO/39qP9CqGDAQAAAAAAAAAAAAAA8A+Xy2WWxr2ZiBPILo1jGlOzESeQzmcaY7MSJ5DsO42lmYkTSOcrjYkZihNIZ630YwVyKaU/M1txAunsWir9UQPvkI/GuVtWPsoxVsjv0p9aIXHkE9iu5tIfNbrI8neWXPpzgcSRV8imttJvOZDr0j/WUvp9CKTzWsMPln0KJBuX0t9ELf2+BdKZl21sKZBYpb8upT8RSMBv+hG2MYFclX4JZioQBPKHtzQeh8Ph/pYPcSeHQQ7gJQVxsEJu61yCeIoSRp9XyLaEcY72YH0L5JTG4tY9YcsqpZ2CeIgcRl9WyL6sipNj7+1Le1FK+1TLQ7cayHsaeXva1vbgrW1Zh3J62tf6Aq0EkrenjxTEqvYXaSGQqkq75Q7JATzXVtpV8mfregJxHSFIIC7sBArElbYggbj0GSgQ16IBAAAAAAAAAAAAACCsHwEGACfr+SLf7BaJAAAAAElFTkSuQmCC);
  background-size: 80%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.isaSlider .playing.isppBtn::after {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAK9JREFUeNrs0sEJhDAQQFEjW4ilWYp2slYS7MROYgrQZQc8DPgeiBcZQ/4MAwAAAAAAAAAAAAAAZFcyHaa1NvfX9PfhS1lu5iyB3x59ztcqXF9kbQE/5kTUTHcwWoNcBBEEQQRBEEEQRBAEEQRBEEQQBBEEQQRBEEEQBEEEQRBBEEQQBBEEQRBEEAQRBEEEQZB3+iQ7z9af/YE5a+DbwxoAAAAAAAAAAAAAAEDEKcAA4xprM8PkP94AAAAASUVORK5CYII=);
}

.isaSlider .isppBtn svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  stroke: #b71307;
  background-color: #b71307;
  border-radius: 100%;
  transform: translate(-50%, -50%) rotate(-90deg);
  pointer-events: none;
  z-index: 0;
}

.isaSlider .isppBtn svg .progressPath {
  stroke-dasharray: 615.752;
  stroke-dashoffset: 615.752;
  stroke: #fff;
}

.isaSlider .slideContent .contrntInner {
  padding: 30px;
  min-width: 50%;
  text-transform: uppercase;
}

.isaSlider .slideContent .contrntInner h2 {
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.isaSlider .slideContent .contrntInner p {
  font-weight: 700;
  font-size: 14px;
}

.isaSlider .swiper-slide.swiper-slide-active .slideContent .contrntInner {
  animation-name: zoomIn;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0;
}

.isaSlider .swiper-slide.swiper-slide-active h5 {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0s;
}

.isaSlider .swiper-slide.swiper-slide-active h2 {
  animation-name: zoomIn;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.4s;
}

.isaSlider .swiper-slide.swiper-slide-active p {
  backface-visibility: visible !important;
  animation-name: flipInX;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.8s;
}

.isaSlider .swiper-slide.swiper-slide-active .btn-temp {
  animation-name: fadeInUpBig;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 1s;
}

.isaSlider .swiper-slide .collegeName {
  position: absolute;
  text-align: right;
  bottom: 20px;
  right: 75px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 9;
}

.isaSlider .swiper-slide .collegeName a {
  color: #fff;
  text-decoration: none;
  text-shadow: 1px 2px 6px rgb(0 0 0 / 40%);
  transition: all 0.4s ease;
}

.isaSlider .swiper-slide .collegeName a:hover {
  letter-spacing: 1.2px;
}

.isaSlider .sliderOverlay {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.isaSlider .sliderOverlay img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .isaSlider {
    height: 350px;
  }

  .isaSlider .swiper-slide {
    height: 350px;
  }
}
.section-padding-top {
  padding-top: 30px;
}

.section-padding-bottom {
  padding-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  .section-padding-top {
    padding-top: 60px;
  }
  .section-padding-bottom {
    padding-bottom: 60px;
  }
}

.section-title {
  position: relative;
  margin-bottom: 1.8rem;
}

.section-title .title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title .title::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: 0;
}

.section-title .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #b71307;
  bottom: 0;
  left: 0;
}

.section-title .desc {
  margin-bottom: 0;
}

.section-title.text-center .title::before {
  left: calc(50% - 60px);
}

.section-title.text-center .title::after {
  left: calc(50% - 20px);
}

.section-title .exploreBtn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.iconPanel {
  text-align: center;
  position: relative;
}

.iconPanel .iconBox {
  position: relative;
  background: url(../img/ico-style-1.webp);
  width: 148px;
  height: 120px;
  line-height: 90px;
  margin: auto;
  font-size: 28px;
  margin-bottom: 14px;
  transition: all 0.5s;
}

.iconPanel .iconBox i {
  color: #b71307;
  line-height: 1;
}

.iconPanel:hover .iconBox {
  transform: rotateY(180deg);
}

.iconPanel h4 {
  text-transform: uppercase;
  font-size: 1rem;
}

.aboutSection .content ul {
  list-style: none;
  padding: 0;
}

.aboutSection .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.aboutSection .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #b71307;
  border-radius: 50px;
  line-height: 1;
}

.aboutSection .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.aboutSection .content ul p {
  font-size: 15px;
}

.aboutSection .content p:last-child {
  margin-bottom: 0;
}

.feature-item {
  cursor: pointer;
  display: table;
  text-align: left;
}

.feature-item .icon {
  background-color: #b71307;
  width: 70px;
  height: 70px;
  max-width: 70px;
  text-align: center;
  display: table;
  position: relative;
  border-radius: 50%;
  z-index: 1;
  font-size: 26px;
  line-height: 70px;
  color: #fff;
  margin: 0 15px 15px 0px;
  transition: all 0.4s ease;
}

.feature-item:hover .icon {
  background-color: #b71307;
  transform: rotateY(-180deg);
}

.feature-txt {
  text-align: left;
  display: table-cell;
  vertical-align: middle;
}

.feature-item .feature-txt .feature-heading {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 500;
}

.feature-item .feature-txt p {
  font-size: 0.85rem;
  margin: 0;
}

.logoBox {
  background: #fff;
  padding: 10px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: all 0.4s ease;
  margin-bottom: 1.45rem;
  border-radius: 4px;
}
.logoBox:hover {
  transform: translateY(-5px);
}

.logoBox img {
  width: 100%;
  height: auto;
}

.logoBox:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.testimonial {
  background: #fff;
  text-align: center;
  margin: 0 20px;
}

.testimonial .description {
  padding: 40px 30px;
  margin-bottom: 50px;
  border-top: 1px solid #b71307;
  border-left: 1px solid #b71307;
  font-size: 15px;
  color: #887e7f;
  line-height: 30px;
  text-align: left;
  position: relative;
}

.testimonial .description:before {
  content: "\f10e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  float: left;
  padding: 0 15px 5px 0;
  font-size: 30px;
  color: #b71307;
  text-align: center;
  position: relative;
  top: 8px;
  left: 0;
}

.testimonial .description:after {
  content: "";
  width: 50%;
  height: 1px;
  background: #b71307;
  position: absolute;
  bottom: 0;
  left: 0;
}

.testimonial .testimonial-content {
  position: relative;
}

.testimonial .testimonial-content:before {
  content: "";
  width: 1px;
  height: 20px;
  background: #b71307;
  position: absolute;
  top: -50px;
  left: 50%;
}

.testimonial .testimonial-content:after {
  content: "";
  width: 2px;
  height: 40px;
  background: #b71307;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: skewX(-45deg);
  transform-origin: 100% 100% 0;
}

.testimonial .pic {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 7px;
}

.testimonial .pic img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.testimonial .title {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: #4d4d4d;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.swiper-pagination-bullet-active {
  background: #b71307;
}

.post-panel {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: all 0.4s ease;
  border-radius: 4px;
}

.post-panel:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.post-panel .post-img {
  overflow: hidden;
}

.post-panel .post-img img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: all 1s ease-in-out 0s;
}

.post-panel:hover .post-img img {
  transform: scale(1.08);
}

.post-panel .post-content {
  background: #fff;
  padding: 20px;
}

.post-panel .post-title {
  font-size: 17px;
  font-weight: 600;
  margin-top: 0;
  text-transform: capitalize;
}

.post-panel .post-title a {
  display: inline-block;
  color: #808080;
  transition: all 0.3s ease 0s;
}

.post-panel .post-title a:hover {
  color: #3d3030;
  text-decoration: none;
}

.post-panel .post-description {
  font-size: 15px;
  color: #676767;
  line-height: 24px;
  margin-bottom: 14px;
}

.post-panel .post-bar {
  padding: 0;
  margin-bottom: 15px;
  list-style: none;
}

.post-panel .post-bar li {
  color: #676767;
  padding: 2px 0;
}

.post-panel .post-bar li i {
  margin-right: 5px;
}

.post-panel .post-bar li a {
  display: inline-block;
  font-size: 12px;
  color: #808080;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.post-panel .post-bar li a:after {
  content: ",";
}

.post-panel .post-bar li a:last-child:after {
  content: "";
}

.post-panel .post-bar li a:hover {
  color: #3d3030;
  text-decoration: none;
}

.post-panel .read-more {
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  color: #fff;
  background: #b71307;
  border-bottom-right-radius: 10px;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s linear;
}

.post-panel .read-more:hover {
  background: #333;
  text-decoration: none;
}

.contactSection .info {
  width: 100%;
}

.contactSection .info i {
  font-size: 20px;
  background: #b71307;
  color: #fff;
  float: left;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contactSection .info h4 {
  padding: 0 0 0 60px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.contactSection .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
}

.contactSection .info .email,
.contactSection .info .phone {
  margin-top: 40px;
}

.contactSection .php-email-form {
  width: 100%;
}

.contactSection .php-email-form .form-group {
  padding-bottom: 8px;
}

.contactSection .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contactSection .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contactSection .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contactSection .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contactSection .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contactSection .php-email-form input,
.contactSection .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contactSection .php-email-form input:focus,
.contactSection .php-email-form textarea:focus {
  border-color: #b71307;
}

.contactSection .php-email-form input {
  height: 44px;
}

.contactSection .php-email-form textarea {
  padding: 10px 12px;
}

.contactSection .php-email-form button[type="submit"] {
  background: #b71307;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contactSection .php-email-form button[type="submit"]:hover {
  background: #2b2a29;
}

.contactSection iframe {
  width: 100%;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

#footer {
  background: #fff;
  color: #444444;
  background: #f1f6fe;
}

#footer .footer-newsletter {
  padding: 3rem 0;
  background: #f1f6fe;
  text-align: center;
}

#footer .footer-newsletter h4 {
  margin: 0 0 1.2rem 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 1.8rem;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 14px;
  padding: 0 20px;
  background: #b71307;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #b71307;
}

#footer .footer-top {
  padding: 3.6rem 0 1.9rem 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 1.9rem;
}

#footer .footer-top .footer-contact h3 {
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #b71307;
}

#footer .footer-top .footer-contact p {
  line-height: 1.4;
  margin-bottom: 0;
  color: #777777;
  font-size: 0.85rem;
}

#footer .footer-top h4 {
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
  font-size: 1.1rem;
}

#footer .footer-top .footer-links {
  margin-bottom: 1.9rem;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #b71307;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 0.85rem;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #b71307;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #b71307;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #b71307;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
}

@media (min-width: 991px) {
  .col-lg-12_5 {
    flex: 0 0 auto;
    width: calc(100% / 5);
  }
}

.pageBanner {
  position: relative;
  z-index: 1;
  height: 320px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .pageBanner {
    height: 200px;
  }
}
.pageBanner .bannerImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pageBanner .bannerContent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.pageBanner .bannerContent h2 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

.pageBanner .bannerOverlay {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.pageBanner .bannerOverlay img {
  width: 100%;
}

.teamSection .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(85, 98, 112, 0.08);
  padding: 15px;
  border-radius: 4px;
  background: white;
}

.teamSection .member .pic {
  overflow: hidden;
  width: 140px;
  border-radius: 4px;
}

.teamSection .member .pic img {
  transition: ease-in-out 0.3s;
}

.teamSection .member:hover img {
  transform: scale(1.1);
}

.teamSection .member .member-info {
  padding-left: 30px;
}

.teamSection .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.teamSection .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.teamSection .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #dee2e6;
  bottom: 0;
  left: 0;
}

.teamSection .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.teamSection .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.teamSection .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  background: #8795a4;
}

.teamSection .member .social a i {
  color: #fff;
  font-size: 16px;
  margin: 0 2px;
}

.teamSection .member .social a:hover {
  background: #b71307;
}

.teamSection .member .social a + a {
  margin-left: 8px;
}

.blog {
  padding: 40px 0 20px 0;
  font-size: 0.8rem;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #556270;
  transition: 0.3s;
  text-decoration: none;
}

.blog .entry .entry-title a:hover {
  color: #d9232d;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #c1c8d0;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #d9232d;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
}

.blog .entry .entry-content .read-more a:hover {
  background: #df3740;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #556270;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #a4afba;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #606f7e;
  transition: 0.3s;
  text-decoration: none;
}

.blog .entry .entry-footer a:hover {
  color: #d9232d;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #556270;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(85, 98, 112, 0.5);
  margin-right: 5px;
  text-decoration: none;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
  text-decoration: none;
}

.blog .blog-comments .comment h5 a:hover {
  color: #d9232d;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #556270;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #6b7b8d;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #e9797f;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #e9797f;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #556270;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #606f7e;
}

.blog .blog-pagination {
  color: #8795a4;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #556270;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #d9232d;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #556270;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #d9232d;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #de323c;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #556270;
  transition: 0.3s;
  text-decoration: none;
}

.blog .sidebar .categories ul a:hover {
  color: #d9232d;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #556270;
  transition: 0.3s;
  text-decoration: none;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #d9232d;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #96a2af;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid white;
  display: inline-block;
  transition: 0.3s;
  text-decoration: none;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #d9232d;
  background: #d9232d;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #fbfbfc;
  font-size: 14px;
}

.calendar::before {
  content: "\f623";
  font-family: "Font Awesome 5 Free";
  left: -4px;
  bottom: 4px;
  position: relative;
}
