/*-- 1. VARIABLES --*/
/*-- 2. MIXIN --*/
/*-- 3. MEDIA QUERIES --*/
/*-- 4. RESET --*/
html {
  scroll-behavior: smooth;
}

body {
  margin: auto;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 30px;
  color: #333333;
  scroll-behavior: smooth;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  background-color: #ffffff;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: #B12936;
  outline: 1px solid #B12936;
}

body.offcanvas-menu .site-mobile-menu {
  transform: translateX(0%);
}

ul {
  margin: 0;
  padding: 0;
  display: block;
}

li {
  list-style: none;
}

a,
a:hover,
a:focus,
button,
button:focus {
  outline: none !important;
  text-decoration: none;
  color: inherit;
  box-shadow: none;
  font-family: "Poppins", sans-serif;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: inherit;
  line-height: inherit;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}

h1 {
  font-size: 60px;
  line-height: 80px;
}

h2 {
  font-size: 42px;
  line-height: 60px;
}

h3 {
  font-size: 36px;
  line-height: 50px;
}

@media (max-width: 766px) {
  h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

h4 {
  font-size: 30px;
  line-height: 45px;
}

h5 {
  font-size: 26px;
  line-height: 40px;
}

h6 {
  font-size: 18px;
  line-height: 35px;
}

p {
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  margin-bottom: 15px;
}

b,
strong {
  font-weight: 700 !important;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}

svg {
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}

.is-relative {
  position: relative;
}

.is-hide {
  overflow: hidden;
}

video {
  width: 100% !important;
}

video:-webkit-full-page-media {
  width: 100% !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.pl-0,
.px-0 {
  padding-left: 0;
}

.pr-0,
.px-0 {
  padding-right: 0;
}

.pb-15 {
  padding-bottom: 15px;
}

.pt-15 {
  padding-top: 15px;
}

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

.pt-30 {
  padding-top: 30px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-50 {
  padding-top: 50px;
}

input {
  background-color: #ffffff;
  margin-bottom: 0;
  box-shadow: none !important;
  outline: none;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color] {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #E3E3E3 !important;
  border-radius: 0px;
  padding: 0px 15px;
  box-sizing: border-box;
  outline: none;
  max-width: 100%;
  height: 50px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus {
  color: #B12936;
  box-shadow: none;
  outline: none;
  border-color: #B12936;
}

textarea {
  color: #333333;
  border: 1px solid #E3E3E3 !important;
  background-color: #ffffff;
  border-radius: 0px !important;
  padding: 11px 20px;
  box-sizing: border-box;
  margin-bottom: 0;
  box-shadow: none !important;
  outline: none;
  max-width: 100%;
  height: 100px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}

textarea:focus {
  color: #B12936;
  box-shadow: none;
  outline: none;
  border-color: #B12936;
}

::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 1;
  /* Firefox */
}

::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 1;
  /* Firefox */
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333333;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #333333;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #333333;
}

.select2-container {
  width: 100% !important;
}

.select2-container .select2-dropdown {
  border-color: #E3E3E3;
  border-radius: 0;
}

.select2-container .select2-dropdown .select2-results .select2-results__option {
  padding: 10px 15px;
}

.select2-container .select2-selection--single {
  height: 100%;
  padding: 15px;
  border-radius: 0;
  border-color: #E3E3E3;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0;
  right: 15px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #B12936;
  color: #ffffff;
}

.height-50 {
  width: 100%;
  height: 50px;
  background-color: transparent;
  clear: both;
}

.height-100 {
  width: 100%;
  height: 100px;
  background-color: transparent;
  clear: both;
}

/* Button */
.explore-button {
  background-color: #141414;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 30px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 270px;
  height: 60px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.explore-button::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: #8F1722;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: translateX(-100%);
  transition: all 0.6s ease-out;
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
}

.explore-button::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: #B12936;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: translateX(-100%);
  transition: all 0.9s ease;
  -webkit-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
}

.explore-button span svg {
  fill: #ffffff;
  width: 18px;
  height: 18px;
}

.explore-button:hover {
  color: #ffffff;
}

.explore-button:hover::before {
  transform: translateX(100%);
}

.explore-button:hover::after {
  transform: translateX(0%);
}

.explore-button.base-color {
  background-color: #B12936;
}

.explore-button.base-color::before {
  background-color: #141414;
}

.explore-button.base-color::after {
  background-color: #333333;
}

.horizontalMenucontainer {
  background-size: cover;
  overflow: hidden;
  background-attachment: fixed;
  background-position: 50% 0;
  background-repeat: no-repeat;
}

.header-main header .top-header {
  padding: 0;
  background-color: #FFF6F6;
}

.header-main header .top-header .top-social ul {
  display: block;
}

.header-main header .top-header .top-social ul li {
  display: inline-block;
  padding: 10px 30px 10px 0px;
}

.header-main header .top-header .top-social ul li a {
  color: #6E6E6E;
}

.header-main header .top-header .top-social ul li:hover a {
  color: #8F1722;
}

.header-main header .top-header .top-links ul {
  display: flex;
  justify-content: flex-end;
}

.header-main header .top-header .top-links ul li {
  display: inline-block;
  padding: 10px 30px;
  border-left: 1px solid rgba(177, 41, 54, 0.15);
}

.header-main header .top-header .top-links ul li:last-child {
  border-right: 1px solid rgba(177, 41, 54, 0.15);
}

.header-main header .top-header .top-links ul li a {
  color: #333333;
}

.header-main header .top-header .top-links ul li:hover a {
  color: #8F1722;
}

.header-main header .middle-header {
  padding: 30px 0;
}

.header-main header .middle-header .v-center {
  align-items: center;
}

.header-main header .middle-header .header-left .main-logo {
  padding: 0;
}

.header-main header .middle-header .header-left .main-logo img {
  max-width: 285px;
  width: 100%;
}

.header-main header .middle-header .header-right .info {
  background-color: #ffffff;
  position: relative;
  padding: 0px;
  float: left;
  width: 100%;
  z-index: 1;
}

.header-main header .middle-header .header-right .info .contact-link {
  float: right;
  display: flex;
}

.header-main header .middle-header .header-right .info .contact-link .cont-box {
  display: flex;
  align-items: center;
  padding-right: 50px;
}

.header-main header .middle-header .header-right .info .contact-link .cont-box:last-child {
  margin: 0;
  padding-right: 0;
}

.header-main header .middle-header .header-right .info .contact-link .cont-box a {
  display: flex;
  align-items: center;
}

.header-main header .middle-header .header-right .info .contact-link .cont-box i.icon-btn {
  float: left;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: #F5DFE1;
  text-align: center;
  display: flex;
  align-items: center;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.header-main header .middle-header .header-right .info .contact-link .cont-box i.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: #b12936;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  margin: 0px auto;
}

.header-main header .middle-header .header-right .info .contact-link .cont-box .cont-details h6 {
  color: #141414;
  text-transform: lowercase;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  position: relative;
  line-height: normal;
}

.header-main header .middle-header .header-right .info .contact-link .cont-box .cont-details span {
  color: #333333;
  font-size: 14px;
  margin: 0;
  font-family: "Poppins", sans-serif;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.header-main header .middle-header .header-right .info .contact-link .cont-box:hover i.icon-btn {
  border-radius: 100%;
}

.header-main header .middle-header .header-right .info .contact-link .download-button a {
  background-color: #B12936;
  border-radius: 10px;
  font-size: 14px;
  width: 210px;
  height: 57px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-main header .middle-header .header-right .info .contact-link .download-button a span {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-left: 15px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

.header-main header .middle-header .header-right .info .contact-link .download-button a span i {
  text-align: center;
}

.header-main header .middle-header .header-right .info .contact-link .download-button a span i svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  margin: auto;
}

.header-main header .middle-header .header-right .info .contact-link .download-button a i {
  text-align: center;
  margin-left: 15px;
}

.header-main header .middle-header .header-right .info .contact-link .download-button a i svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  margin: auto;
}

.header-main header .middle-header .header-right .info .contact-link .download-button a:hover {
  background-color: #8F1722;
}

.header-main header .middle-header .header-right .info .contact-link .download-button a:hover span {
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.header-main .horizontal-header {
  display: none;
  background-color: #ffffff;
}

.header-main .horizontal-main {
  width: 100%;
  position: relative;
  background: #FFF6F6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-main .horizontal-main .horizontalMenu {
  float: inherit !important;
}

.header-main .horizontal-mainwrapper {
  margin: 0 auto;
}

.header-main .horizontalMenu {
  color: #333333;
  font-size: 14px;
  padding: 0;
  float: right;
  display: block;
}

.header-main .horizontalMenu>.horizontalMenu-list {
  text-align: left;
  margin: 0 auto 0 auto;
  width: 100%;
  display: block;
  padding: 0;
}

.header-main .horizontalMenu>.horizontalMenu-list>li {
  text-align: center;
  display: block;
  position: relative;
  margin: 0;
  float: left;
  padding: 15px 20px;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>a {
  display: block;
  padding: 0px;
  text-decoration: none;
  position: relative;
  margin: auto;
  font-weight: 400;
  line-height: normal;
  color: #141414;
  text-transform: capitalize;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>a.active {
  background: transparent;
  color: #B12936;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu {
  position: absolute;
  top: calc(51px + 0px);
  left: 0;
  z-index: 1000;
  margin: 0px;
  padding: 0;
  min-width: 240px;
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 16px 0 rgba(169, 173, 191, 0.24);
}

.header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li {
  position: relative;
  margin: 0px;
  padding: 0px;
  display: block;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li>a {
  background-image: none;
  color: #141414;
  text-align: left;
  display: block;
  line-height: 22px;
  padding: 8px 15px;
  text-transform: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  border-bottom: 1px solid #eaeaea;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li>a::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #B12936;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li>ul.sub-menu {
  min-width: 220px;
  position: absolute;
  left: 100%;
  top: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #e4e6f1;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 8px 16px 0 rgba(169, 173, 191, 0.24);
}

.header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li>ul.sub-menu>li {
  position: relative;
  margin: 0px;
  padding: 0px;
  display: block;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li>ul.sub-menu>li>a {
  background-image: none;
  color: #030303;
  border-right: 0 none;
  text-align: left;
  display: block;
  line-height: 22px;
  padding: 8px 15px;
  text-transform: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  border-bottom: 1px solid #eaeaea;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li>ul.sub-menu>li>a::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #B12936;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li>ul.sub-menu>li:hover a {
  background-color: transparent;
  color: #8F1722;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li>ul.sub-menu>li:hover a::before {
  width: 100%;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li:hover>a {
  background-color: transparent;
  color: #8F1722;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li:hover>a::before {
  width: 100%;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li:last-child a {
  border-bottom: none;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu {
  width: 100%;
  left: 0px;
  position: absolute;
  top: calc(51px + 0px);
  color: #141414;
  z-index: 1000;
  margin: 0px;
  text-align: left;
  font-size: 15px;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .megamenu-content {
  border: none;
  background-color: #ffffff;
  padding: 14px 20px;
  border-radius: 0 0 2px 2px;
  box-shadow: 0 8px 16px 0 rgba(169, 173, 191, 0.24);
}

.header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-left .title {
  font-size: 20px;
  font-weight: 600;
  color: #B12936;
  margin-bottom: 15px;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-left .inner-menu {
  column-count: 3;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-left.mci .inner-menu {
  column-count: 1;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-right .title {
  font-size: 20px;
  font-weight: 600;
  color: #B12936;
  margin-bottom: 15px;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-right .inner-menu {
  column-count: 2;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .link-list {
  float: left;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .link-list li {
  display: block;
  text-align: center;
  white-space: nowrap;
  text-align: left;
  padding: 5px 0px;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .link-list li a {
  line-height: 18px;
  border-right: none;
  text-align: left;
  padding: 0px;
  padding-left: 15px;
  background-image: none;
  color: #141414;
  border-right: 0 none;
  display: block;
  font-size: 13px;
  line-height: 26px;
  position: relative;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .link-list li a::before {
  position: absolute;
  content: '>';
  left: 0;
  top: 0;
  color: #333333;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .link-list li a:hover {
  color: #8F1722;
}

.header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .link-list .title {
  padding: 5px 5px 5px 0px;
  font-size: 14px;
  color: #141414;
  margin: 0px 0px 4px 0px;
  text-align: left;
  font-weight: 600;
}

.header-main .horizontalMenu>.horizontalMenu-list>li:hover a {
  color: #8F1722;
  background: transparent;
}

.header-main .horizontalMenu .horizontalMenu-click,
.header-main .horizontalMenu .horizontalMenu-click02 {
  display: none;
}

@media (min-width: 992px) {
  .header-main .horizontalMenu>.horizontalMenu-list>li:first-child {
    padding-left: 0;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li.megamenu {
    position: static;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu {
    opacity: 0;
    visibility: hidden;
    -o-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -o-transition: -o-transform 0.3s, opacity 0.3s;
    -ms-transition: -ms-transform 0.3s, opacity 0.3s;
    -moz-transition: -moz-transform 0.3s, opacity 0.3s;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform: rotateX(-75deg);
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li {
    position: relative;
    margin: 0px;
    padding: 0px;
    display: block;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li a {
    background-image: none;
    color: #141414;
    border-right: 0 none;
    text-align: left;
    display: block;
    line-height: 22px;
    padding: 10px 15px;
    text-transform: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    border-right: 0px solid;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li a.active {
    color: #B12936;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li>ul.sub-menu {
    opacity: 0;
    visibility: hidden;
    transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform: rotateX(-75deg);
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li:hover>ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
    transition: transform 0.4s, opacity 0.4s;
    -o-transition: -o-transform 0.4s, opacity 0.4s;
    -ms-transition: -ms-transform 0.4s, opacity 0.4s;
    -moz-transition: -moz-transform 0.4s, opacity 0.4s;
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    transform: rotateX(0deg);
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu {
    opacity: 0;
    visibility: hidden;
    -o-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -o-transition: -o-transform 0.3s, opacity 0.3s;
    -ms-transition: -ms-transform 0.3s, opacity 0.3s;
    -moz-transition: -moz-transform 0.3s, opacity 0.3s;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform: rotateX(-75deg);
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li:hover>ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li:hover>.horizontal-megamenu {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
  }
}

.header-main .horizontalMenu .search-box li {
  height: 100%;
}

.header-main .horizontalMenu .search-box li a.btn-search {
  background-color: #B12936;
  color: #ffffff;
  border-radius: 0;
  padding: 13px 15px 15px;
}

.header-main .horizontal-overlapbg {
  opacity: 0;
  visibility: hidden;
}

.header-main .download-button {
  margin-top: 50px;
}

.header-main .download-button a {
  background-color: #B12936;
  border-radius: 0;
  font-size: 14px;
  width: 100%;
  height: 57px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-main .download-button a span {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-left: 20px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

.header-main .download-button a span i {
  text-align: center;
}

.header-main .download-button a span i svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  margin: auto;
}

.header-main .download-button a i {
  text-align: center;
  margin-left: 20px;
}

.header-main .download-button a i svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  margin: auto;
}

.header-main .download-button a:hover {
  background-color: #8F1722;
}

.header-main .download-button a:hover span {
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

@media (max-width: 1279px) {
  .header-main .horizontalMenu>.horizontalMenu-list>li {
    padding: 15px 15px 17px;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>a {
    font-size: 13px;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .megamenu-content {
    padding: 15px 15px;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .link-list li a {
    font-size: 12px;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-left.clinical {
    flex: 0 0 auto;
    width: 75%;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-right.pre-clinical {
    flex: 0 0 auto;
    width: 25%;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-left.clinical .inner-menu {
    column-count: 2;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-right.pre-clinical .inner-menu {
    column-count: 1;
  }
}

@media (max-width: 991px) {
  .horizontal-header {
    width: 100%;
    display: block !important;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    height: 54px;
    background-color: #ffffff;
    text-align: center;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    box-shadow: 0 0 1px #B2B2B2;
  }

  .horizontal-header .animated-arrow {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 102;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    cursor: pointer;
    padding: 16px 35px 16px 0px;
    margin: auto;
  }

  .horizontal-header .animated-arrow span {
    cursor: pointer;
    height: 2px;
    width: 17px;
    background: #B12936;
    position: absolute;
    display: block;
    content: '';
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
  }

  .horizontal-header .animated-arrow span::before,
  .horizontal-header .animated-arrow span::after {
    cursor: pointer;
    height: 2px;
    width: 17px;
    background: #B12936;
    position: absolute;
    display: block;
    content: '';
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
  }

  .horizontal-header .animated-arrow span::before {
    top: -7px;
    width: 23px;
  }

  .horizontal-header .animated-arrow span::after {
    bottom: -7px;
    width: 17px;
  }

  .horizontal-header .smllogo {
    display: inline-block;
    margin-top: 11px;
  }

  .horizontal-header .smllogo.mobile-logo {
    margin: 0 auto;
    text-align: center;
    margin-top: 8px !important;
  }

  .horizontal-header .smllogo.mobile-logo img {
    max-width: 40px;
  }

  .horizontal-header .callusbtn {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    width: 50%;
    margin: auto;
    transform: translateY(-50%);
    color: #B12936;
    font-weight: 600;
  }

  .horizontal-header .callusbtn i {
    color: #B12936;
  }

  .horizontal-header .callusbtn .fa {
    margin: auto;
  }

  .horizontal-header .btn-search {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
  }

  .horizontal-header .btn-search i {
    color: #B12936;
  }

  .horizontal-main {
    height: 0;
    padding: 0;
  }

  .horizontal-main .horizontalMenu {
    width: 100%;
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    left: 0;
    overflow-y: hidden;
    padding: 0;
    top: 0;
    position: fixed;
    visibility: hidden;
    margin: 0px;
  }

  .horizontal-main .horizontalMenu .horizontal-overlapbg {
    right: 0;
    width: calc(100% - 300px);
    height: 100vh;
    min-height: 100%;
    position: fixed;
    top: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.45);
    cursor: pointer;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list {
    height: auto;
    min-height: 100%;
    width: 300px;
    background: #ffffff;
    padding-bottom: 0;
    margin-left: -300px;
    display: block;
    text-align: center;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li {
    width: 100%;
    display: block;
    float: none;
    border-right: none;
    background-color: transparent;
    position: relative;
    white-space: inherit;
    clear: right;
    padding: 0;
    overflow: hidden;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li>.horizontalMenu-click {
    height: 49px;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    cursor: pointer;
    width: 100%;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li>.horizontalMenu-click>i {
    display: block;
    height: 23px;
    width: 25px;
    margin-top: 14px;
    margin-right: 10px;
    background-size: 25px;
    font-size: 21px;
    color: #B2B2B2;
    float: right;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li .horizontalMenu-click02 {
    height: 41px;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    cursor: pointer;
    width: 100%;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li .horizontalMenu-click02>i {
    display: block;
    height: 23px;
    width: 25px;
    margin: 8px 6px 8px 6px;
    background-size: 25px;
    font-size: 21px;
    color: rgba(0, 0, 0, 0.25);
    float: right;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li .horizontalMenu-click02>i.horizontalMenu-rotate {
    transform: rotate(180deg);
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li>a {
    padding: 10px 15px;
    font-size: 14px;
    text-align: left;
    border-right: solid 0px;
    color: #141414;
    line-height: 25px;
    border-bottom: 1px solid;
    border-bottom-color: #E3E3E3;
    position: static;
    margin: 0;
    border-radius: 0px;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li>a>span {
    display: none;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu {
    display: none;
    position: relative;
    top: 0px;
    background-color: #ffffff;
    border: none;
    padding: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    transition: inherit;
    -webkit-transform-style: flat;
    transform-style: flat;
    box-shadow: none;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li>a {
    line-height: 20px;
    font-size: 13px;
    padding: 10px 0px 10px 16px;
    color: #383838;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li>ul.sub-menu {
    width: 100%;
    position: static;
    left: 100%;
    top: 0;
    display: none;
    margin: 0px;
    padding: 0px;
    border: solid 0px;
    transform: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    transition: inherit;
    transform-style: flat;
    -webkit-transform-style: flat;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li>ul.sub-menu>li {
    margin: 0px 0px 0px 0px;
    padding: 0px;
    position: relative;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu>li>ul.sub-menu>li>a {
    line-height: 20px;
    font-size: 13px;
    padding: 10px 0px 10px 26px;
    color: #383838;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu {
    color: #141414;
    display: none;
    position: relative;
    top: 0px;
    padding: 0px 0px;
    border: solid 0px;
    transform: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    transition: inherit;
    border-bottom: 1px solid rgba(0, 0, 0, 0.13);
    -webkit-transform-style: flat;
    transform-style: flat;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .megamenu-content {
    border: 0;
    box-shadow: none;
    padding: 15px 0;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu ul li.title {
    line-height: 26px;
    color: #141414;
    margin: 0px;
    font-size: 15px;
    padding: 7px 0px;
    background-color: transparent;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li.site_button {
    padding: 0;
  }

  .horizontal-main .horizontalMenu>.horizontalMenu-list>li.site_button a {
    display: inline-block;
    text-align: center;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    position: relative;
  }

  .active .animated-arrow span {
    background-color: transparent;
  }

  .active .animated-arrow span::before {
    transform: rotate(45deg);
    bottom: 0px;
    top: 0px;
    width: 23px;
  }

  .active .animated-arrow span::after {
    transform: rotate(-45deg);
    top: 0px;
    width: 23px;
  }

  .active .horizontalMenu {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    visibility: visible;
    z-index: 1000;
    top: 0;
    height: 100% !important;
  }

  .active .horizontalMenu .horizontal-overlapbg {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.5s ease-in-out;
    -webkit-transition: opacity 1.5s ease-in-out;
    -o-transition: opacity 1.5s ease-in-out;
    -moz-transition: opacity 1.5s ease-in-out;
    -ms-transition: opacity 1.5s ease-in-out;
  }

  .active .horizontalMenu>.horizontalMenu-list {
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    margin-left: 0;
  }

  .active .horizontalMenucontainer {
    margin-left: 240px;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
  }

  .horizontalMenucontainer {
    background-attachment: local;
    background-position: 33% 0%;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li {
    padding: 0px;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-left {
    margin-bottom: 0px;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-left .title,
  .header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-right .title {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-left .inner-menu,
  .header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-right .inner-menu {
    column-count: 1;
  }

  .header-main header .middle-header .header-left .main-logo {
    padding: 0;
    text-align: center;
  }

  .header-main header .top-header .top-links ul li {
    padding: 10px 20px;
  }

  .header-main header .top-header .top-links ul li a {
    font-size: 14px;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-left.clinical {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 15px;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-left.clinical .inner-menu {
    column-count: 1;
  }

  .header-main .horizontalMenu>.horizontalMenu-list>li>.horizontal-megamenu .menu-link-right.pre-clinical {
    flex: 0 0 auto;
    width: 100%;
  }

  .header-main header .top-header .top-social ul {
    text-align: center;
  }

  .header-main header .top-header .top-social ul li {
    padding: 10px 15px 10px 15px;
  }

  .header-main header .top-header .top-links ul {
    display: block;
    text-align: center;
  }

  .header-main header .top-header .top-links ul li,
  .header-main header .top-header .top-links ul li:last-child {
    border: none;
  }
}

@media (max-width: 766px) {
  .header-main .horizontalMenu>.horizontalMenu-list>li>ul.sub-menu {
    top: 0;
  }

  .header-main header .top-header .top-social ul {
    text-align: center;
  }

  .header-main header .top-header .top-social ul li {
    padding: 10px 15px;
  }

  .header-main header .top-header .top-links ul {
    text-align: center;
    justify-content: center;
  }

  .header-main header .top-header .top-links ul li {
    padding: 10px;
    border: none;
  }

  .header-main header .top-header .top-links ul li:last-child {
    border: none;
  }

  .header-main header .top-header .top-links ul li a {
    font-size: 13px;
  }
}

.main-wrapper .home-banner {
  width: 100%;
  height: 100%;
}

.main-wrapper .home-banner .home-slider .bg-img {
  position: relative;
  z-index: 1;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.main-wrapper .home-banner .home-slider .bg-img::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.5);
  z-index: -1;
}

@media (max-width: 766px) {
  .main-wrapper .home-banner .home-slider .bg-img {
    min-height: 80vh;
  }
}

.main-wrapper .home-banner .home-slider .meta-box {
  width: 100%;
  position: relative;
  z-index: 9;
}

.main-wrapper .home-banner .home-slider .meta-box .content .small-title {
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 600;
}

.main-wrapper .home-banner .home-slider .meta-box .content .big-title {
  color: #ffffff;
  margin-bottom: 30px;
}

.main-wrapper .home-banner .home-slider .meta-box .content .big-title span {
  font-weight: 800;
}

.main-wrapper .home-banner .home-slider .meta-box .content .discription {
  color: #ffffff;
  margin-bottom: 30px;
}

.main-wrapper .home-banner .home-slider .owl-nav {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.main-wrapper .home-banner .home-slider .owl-nav [class*='owl-'] {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: 400ms;
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  -moz-transition: 400ms;
  -ms-transition: 400ms;
  text-align: center;
  line-height: 60px;
  color: #ffffff;
  margin: 0px 10px;
}

.main-wrapper .home-banner .home-slider .owl-nav [class*='owl-'] img {
  max-width: 6px;
  width: 100%;
}

.main-wrapper .home-banner .home-slider .owl-nav [class*='owl-']:hover {
  background: rgba(51, 51, 51, 0.14);
}

@media (max-width: 1399px) {
  .main-wrapper .home-banner .home-slider .owl-nav [class*='owl-'] {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

@media (max-width: 766px) {
  .main-wrapper .home-banner .home-slider .owl-nav [class*='owl-'] {
    background-color: #B12936;
    margin: 0 5px;
  }

  .main-wrapper .home-banner .home-slider .owl-nav [class*='owl-']:hover {
    background-color: #141414;
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }

  80%,
  100% {
    opacity: 0;
  }
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

.main-wrapper .page-title {
  z-index: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff !important;
  padding: 30px 0px !important;
}

.main-wrapper .page-title::before {
  background-color: rgba(177, 41, 54, 0.9);
  content: " ";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.main-wrapper .page-title .section-content .title {
  font-size: 30px;
  line-height: inherit;
  margin-bottom: 15px;
}

.main-wrapper .page-title .section-content .breadcrumbs-nav {
  justify-content: center;
  display: flex;
}

.main-wrapper .page-title .section-content .breadcrumbs-nav .breadcrumbs .breadcrumb {
  margin-bottom: 0;
}

.main-wrapper .page-title .section-content .breadcrumbs-nav .breadcrumbs .breadcrumb .breadcrumb-item {
  line-height: inherit;
}

.main-wrapper .page-title .section-content .breadcrumbs-nav .breadcrumbs .breadcrumb .breadcrumb-item::before {
  color: #ffffff;
}

.main-wrapper .page-title .section-content .breadcrumbs-nav .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: #ffffff;
  font-weight: 700;
}

.main-wrapper .mainContent {
  padding: 120px 15px;
  position: relative;
}

@media (max-width: 1399px) {
  .main-wrapper .mainContent {
    padding: 80px 0;
  }
}

.main-wrapper .mainContent .extra-link a {
  color: #B12936;
  font-weight: 700;
}

.main-wrapper .mainContent.home-about .left-about .inner .small-title {
  text-transform: uppercase;
  color: #B2B2B2;
  display: block;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 766px) {
  .main-wrapper .mainContent.home-about .left-about .inner .small-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.main-wrapper .mainContent.home-about .left-about .inner .big-title {
  max-width: 501px;
  margin-bottom: 30px;
  font-weight: 700;
}

.main-wrapper .mainContent.home-about .left-about .inner .discription {
  margin-bottom: 30px;
}

.main-wrapper .mainContent.home-about .register-form {
  position: absolute;
  right: 0;
  top: -260px;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0px 0px 30px rgba(177, 41, 54, 0.2);
  width: 470px;
  padding: 50px;
}

.main-wrapper .mainContent.home-about .register-form .form-inner .title {
  font-weight: 500;
  margin-bottom: 30px;
}

.main-wrapper .mainContent.home-about .register-form .form-inner .title span {
  color: #B12936;
  font-weight: 700;
}

.main-wrapper .mainContent.home-about .register-form .form-inner .form-group {
  margin-bottom: 15px;
}

.main-wrapper .mainContent.home-about .register-form .form-inner .form-group.text-box {
  margin-bottom: 30px;
}

.main-wrapper .mainContent.home-about .register-form .form-inner .explore-button {
  width: 100%;
}

@media (max-width: 766px) {
  .main-wrapper .mainContent.home-about .register-form {
    padding: 30px;
  }
}

.main-wrapper .mainContent.home-dipartments {
  padding-bottom: 70px;
}

.main-wrapper .mainContent.home-dipartments .left-dipartments-title .inner {
  position: relative;
  margin-bottom: 30px;
}

.main-wrapper .mainContent.home-dipartments .left-dipartments-title .inner .big-title {
  margin-bottom: 30px;
  font-weight: 700;
}

@media (max-width: 766px) {
  .main-wrapper .mainContent.home-dipartments .left-dipartments-title .inner .big-title {
    margin-bottom: 15px;
  }
}

.main-wrapper .mainContent.home-dipartments .left-dipartments-title .inner .discription {
  margin-bottom: 0px;
  max-width: 640px;
}

.main-wrapper .mainContent.home-dipartments .left-dipartments-title .inner .explore-button {
  position: absolute;
  right: 0;
  bottom: 0;
}

.main-wrapper .mainContent.home-dipartments .section-row {
  margin-top: 30px;
}

.main-wrapper .mainContent.home-dipartments .section-row .box-details {
  margin-bottom: 60px;
}

.main-wrapper .mainContent.home-dipartments .section-row .box-details .inner-items i {
  margin-bottom: 15px;
  display: block;
}

.main-wrapper .mainContent.home-dipartments .section-row .box-details .inner-items i svg {
  width: 60px;
  height: 60px;
  fill: #B12936;
}

.main-wrapper .mainContent.home-dipartments .section-row .box-details .inner-items h6 {
  color: #141414;
  margin-bottom: 15px;
  font-weight: 600;
}

.main-wrapper .mainContent.home-dipartments .section-row .box-details .inner-items p {
  font-size: 14px;
  color: #B2B2B2;
}

.main-wrapper .mainContent.home-dipartments .section-row .box-details .inner-items .more span {
  margin-left: 40px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}

.main-wrapper .mainContent.home-dipartments .section-row .box-details .inner-items .more span svg {
  fill: #141414;
  width: 18px;
  height: 18px;
}

.main-wrapper .mainContent.home-dipartments .section-row .box-details .inner-items .more:hover {
  color: #8F1722;
}

.main-wrapper .mainContent.home-dipartments .section-row .box-details .inner-items .more:hover span {
  margin-left: 20px;
}

.main-wrapper .mainContent.home-dipartments .section-row .box-details .inner-items .more:hover span svg {
  fill: #8F1722;
}

.main-wrapper .mainContent.home-we-offer .title-section .inner {
  text-align: center;
}

.main-wrapper .mainContent.home-we-offer .title-section .inner .small-title {
  color: #B12936;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.main-wrapper .mainContent.home-we-offer .title-section .inner .big-title {
  margin-bottom: 30px;
  font-weight: 700;
}

.main-wrapper .mainContent.home-we-offer .title-section .inner .discription {
  margin: 0px auto;
  max-width: 885px;
}

.main-wrapper .mainContent.home-we-offer .section-row {
  margin-top: 50px;
}

.main-wrapper .mainContent.home-we-offer .section-row .offer-slider .slider-item .inner .img-box {
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.main-wrapper .mainContent.home-we-offer .section-row .offer-slider .slider-item .inner .img-box::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(177, 41, 54, 0);
  z-index: 1;
  transition: all 0.5 ease;
  -webkit-transition: all 0.5 ease;
  -o-transition: all 0.5 ease;
  -moz-transition: all 0.5 ease;
  -ms-transition: all 0.5 ease;
}

.main-wrapper .mainContent.home-we-offer .section-row .offer-slider .slider-item .inner .img-box img {
  transform: scale(1);
}

.main-wrapper .mainContent.home-we-offer .section-row .offer-slider .slider-item .inner .content h6 {
  color: #B12936;
  margin-bottom: 15px;
  font-weight: 600;
}

.main-wrapper .mainContent.home-we-offer .section-row .offer-slider .slider-item .inner .content p {
  margin-bottom: 15px;
}

.main-wrapper .mainContent.home-we-offer .section-row .offer-slider .slider-item .inner .content .more {
  color: #B12936;
}

.main-wrapper .mainContent.home-we-offer .section-row .offer-slider .slider-item .inner .content .more span {
  margin-left: 40px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}

.main-wrapper .mainContent.home-we-offer .section-row .offer-slider .slider-item .inner .content .more span svg {
  fill: #B12936;
  width: 18px;
  height: 18px;
}

.main-wrapper .mainContent.home-we-offer .section-row .offer-slider .slider-item .inner:hover .img-box::before {
  background-color: rgba(177, 41, 54, 0.5);
}

.main-wrapper .mainContent.home-we-offer .section-row .offer-slider .slider-item .inner:hover .img-box img {
  transform: scale(1.2);
}

.main-wrapper .mainContent.home-we-offer .section-row .offer-slider .slider-item .inner:hover .content .more {
  color: #8F1722;
}

.main-wrapper .mainContent.home-we-offer .section-row .offer-slider .slider-item .inner:hover .content .more span {
  margin-left: 20px;
}

.main-wrapper .mainContent.home-we-offer .section-row .offer-slider .slider-item .inner:hover .content .more span svg {
  fill: #8F1722;
}

.main-wrapper .mainContent.home-discuss {
  background-size: cover;
  background-repeat: no-repeat;
}

.main-wrapper .mainContent.home-discuss .title-section {
  text-align: center;
}

.main-wrapper .mainContent.home-discuss .title-section .inner {
  color: #ffffff;
  margin: 0px auto;
}

.main-wrapper .mainContent.home-discuss .title-section .inner .big-title {
  font-weight: 700;
  margin-bottom: 30px;
}

.main-wrapper .mainContent.home-discuss .title-section .inner .small-title {
  font-weight: 600;
  margin-bottom: 50px;
}

.main-wrapper .mainContent.home-discuss .title-section .inner .explore-button {
  margin: auto;
  border-radius: 50px;
  border: 1px solid #FFF6F6;
  box-shadow: 0px 0px 30px rgba(177, 41, 54, 0.5);
}

.main-wrapper .mainContent.home-news .title-area .left-title .inner .small-title {
  text-transform: uppercase;
  color: #B2B2B2;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.home-news .title-area .left-title .inner .big-title {
  font-weight: 700;
  color: #B12936;
  margin-bottom: 30px;
}

.main-wrapper .mainContent.home-news .title-area .right-discrptn .inner {
  max-width: 653px;
}

.main-wrapper .mainContent.home-news .section-row {
  margin-top: 50px;
}

.main-wrapper .mainContent.home-news .section-row .news-slider .slider-item .img-box {
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.main-wrapper .mainContent.home-news .section-row .news-slider .slider-item .img-box::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(177, 41, 54, 0);
  z-index: 1;
  transition: all 0.5 ease;
  -webkit-transition: all 0.5 ease;
  -o-transition: all 0.5 ease;
  -moz-transition: all 0.5 ease;
  -ms-transition: all 0.5 ease;
}

.main-wrapper .mainContent.home-news .section-row .news-slider .slider-item .img-box img {
  transform: scale(1);
}

.main-wrapper .mainContent.home-news .section-row .news-slider .slider-item .img-box .post {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: #E15524;
  color: #ffffff;
  padding: 5px 15px;
  text-align: center;
  z-index: 9;
}

.main-wrapper .mainContent.home-news .section-row .news-slider .slider-item .img-box .post span {
  display: block;
  text-transform: uppercase;
  line-height: normal;
}

.main-wrapper .mainContent.home-news .section-row .news-slider .slider-item .img-box .post span.date {
  font-weight: 600;
}

.main-wrapper .mainContent.home-news .section-row .news-slider .slider-item .content h6 {
  margin-bottom: 15px;
  font-weight: 600;
  min-height: 105px;
}

.main-wrapper .mainContent.home-news .section-row .news-slider .slider-item .content .more {
  color: #B12936;
}

.main-wrapper .mainContent.home-news .section-row .news-slider .slider-item .content .more span {
  margin-left: 40px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}

.main-wrapper .mainContent.home-news .section-row .news-slider .slider-item .content .more span svg {
  fill: #B12936;
  width: 18px;
  height: 18px;
}

.main-wrapper .mainContent.home-news .section-row .news-slider .slider-item:hover .img-box::before {
  background-color: rgba(177, 41, 54, 0.5);
}

.main-wrapper .mainContent.home-news .section-row .news-slider .slider-item:hover .img-box img {
  transform: scale(1.2);
}

.main-wrapper .mainContent.home-news .section-row .news-slider .slider-item:hover .content .more {
  color: #8F1722;
}

.main-wrapper .mainContent.home-news .section-row .news-slider .slider-item:hover .content .more span {
  margin-left: 20px;
}

.main-wrapper .mainContent.home-news .section-row .news-slider .slider-item:hover .content .more span svg {
  fill: #8F1722;
}

.main-wrapper .mainContent.footer-top {
  padding: 30px 15px;
  text-align: center;
  color: #ffffff;
}

.main-wrapper .mainContent.footer-top .center-txt {
  text-align: center;
}

.main-wrapper .mainContent.footer {
  background-color: #141414;
  padding-bottom: 30px !important;
  z-index: 1;
}

.main-wrapper .mainContent.footer .footer-img {
  margin-bottom: 30px;
}

.main-wrapper .mainContent.footer .footer-img img {
  max-width: 100px;
  width: 100%;
}

.main-wrapper .mainContent.footer p.footer-cnt,
.main-wrapper .mainContent.footer p.tel-num {
  color: #ffffff;
  font-size: 14px;
}

.main-wrapper .mainContent.footer .footer-link {
  padding-left: 60px;
  float: left;
}

.main-wrapper .mainContent.footer .footer-link h4 {
  font-size: 24px;
  color: #B12936;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
}

.main-wrapper .mainContent.footer .footer-link h4::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  background-color: #B12936;
}

.main-wrapper .mainContent.footer .footer-link .dp-more {
  margin-top: 30px;
  width: 100%;
  float: left;
}

.main-wrapper .mainContent.footer .footer-link .dp-more a.read-more {
  font-size: 16px;
  text-transform: uppercase;
  color: #B12936;
}

.main-wrapper .mainContent.footer .footer-link .dp-more a.read-more span {
  margin-left: 20px;
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
}

.main-wrapper .mainContent.footer .footer-link .dp-more a.read-more span svg {
  width: 20px;
  fill: #B12936;
}

.main-wrapper .mainContent.footer .footer-link .dp-more a:hover span {
  margin-left: 30px;
}

.main-wrapper .mainContent.footer .footer-link ul.ul-link {
  float: left;
}

.main-wrapper .mainContent.footer .footer-link ul.ul-link li {
  padding-bottom: 10px;
  padding-left: 30px;
  position: relative;
  transition: 400ms all;
  -webkit-transition: 400ms all;
  -o-transition: 400ms all;
  -moz-transition: 400ms all;
  -ms-transition: 400ms all;
}

.main-wrapper .mainContent.footer .footer-link ul.ul-link li::before {
  position: absolute;
  content: '';
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border: 1px solid #B12936;
  border-radius: 100%;
  transition: 400ms all;
  -webkit-transition: 400ms all;
  -o-transition: 400ms all;
  -moz-transition: 400ms all;
  -ms-transition: 400ms all;
}

.main-wrapper .mainContent.footer .footer-link ul.ul-link li::after {
  position: absolute;
  content: '';
  left: 3px;
  top: 14px;
  width: 4px;
  height: 4px;
  background-color: #B12936;
  border-radius: 100%;
}

.main-wrapper .mainContent.footer .footer-link ul.ul-link li a {
  color: #ffffff;
  font-size: 14px;
}

.main-wrapper .mainContent.footer .footer-link ul.ul-link li:hover {
  padding-left: 30px;
}

.main-wrapper .mainContent.footer .footer-link ul.ul-link li:hover a {
  color: #B12936;
}

.main-wrapper .mainContent.footer .footer-link ul.right-link {
  padding-left: 60px;
}

.main-wrapper .mainContent.footer .footer-link.footer-address {
  padding-left: 15px;
}

.main-wrapper .mainContent.footer .footer-link.footer-address p {
  color: #ffffff;
  margin-bottom: 0px;
  font-size: 14px;
}

.main-wrapper .mainContent.footer .footer-link.footer-address p:last-child {
  margin: 0;
}

.main-wrapper .mainContent.footer .footer-link.footer-address p.mb-30 {
  margin-bottom: 30px;
}

.main-wrapper .mainContent.footer .footer-link.footer-address h5 {
  color: #ffffff;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.main-wrapper .mainContent.footer .footer-updates-date {
  padding: 15px 0;
  background-color: #1a1a1a;
  margin-top: 30px;
}

.main-wrapper .mainContent.footer .footer-updates-date p {
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.main-wrapper .mainContent.footer .footer-btm-link {
  padding-top: 30px;
  border-top: 1px solid rgba(162, 162, 162, 0.25);
  align-items: center;
}

.main-wrapper .mainContent.footer .footer-btm-link .copy-right {
  color: #ffffff;
}

.main-wrapper .mainContent.footer .footer-btm-link .copy-right p {
  margin: auto;
  font-size: 14px;
}

.main-wrapper .mainContent.footer .footer-btm-link .footer-social {
  text-align: right;
}

.main-wrapper .mainContent.footer .footer-btm-link .footer-social ul {
  display: flex;
  float: right;
}

.main-wrapper .mainContent.footer .footer-btm-link .footer-social ul li {
  margin-left: 15px;
  display: flex;
}

.main-wrapper .mainContent.footer .footer-btm-link .footer-social ul li a {
  margin: 0px auto;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  background-color: transparent;
  border-radius: 100%;
  text-align: center;
  display: flex;
  align-items: center;
}

.main-wrapper .mainContent.footer .footer-btm-link .footer-social ul li a svg {
  fill: #ffffff;
  margin: 0px auto;
  width: 16px;
  height: 16px;
}

.main-wrapper .mainContent.footer .footer-btm-link .footer-social ul li:hover a {
  background-color: #8F1722;
  border-color: #8F1722;
}

.main-wrapper .mainContent.footer .footer-btm-link .footer-social ul li:hover a svg {
  fill: #ffffff;
}

@media (min-width: 992px) {
  .main-wrapper .mainContent .sidebar.has-marign-left {
    margin-left: 40px;
  }

  .main-wrapper .mainContent .sidebar.has-marign-right {
    margin-right: 40px;
  }
}

@media (max-width: 991px) {
  .main-wrapper .mainContent .sidebar {
    margin-top: 30px;
  }
}

.main-wrapper .mainContent .sidebar .widget {
  padding: 30px;
  padding-top: 0;
  position: relative;
  z-index: 1;
  background-color: #f8f8f8;
}

.main-wrapper .mainContent .sidebar .widget h4 {
  padding-top: 20px;
  line-height: 57px;
  color: #141414;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 15px;
}

.main-wrapper .mainContent .sidebar .widget ul {
  display: block;
}

.main-wrapper .mainContent .sidebar .widget ul li {
  display: block;
  position: relative;
  margin-bottom: 14px;
  width: 100%;
  height: auto;
  min-height: 50px;
}

.main-wrapper .mainContent .sidebar .widget ul li .block-inside {
  display: flex;
  align-items: center;
  min-height: 50px;
  height: auto;
  padding: 10px 25px 10px 20px;
  background: 0 0;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  margin-bottom: 0;
  position: relative;
  box-sizing: border-box;
}

.main-wrapper .mainContent .sidebar .widget ul li .block-inside::before {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  z-index: -1;
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -ms-filter: "alpha(opacity=0)";
  visibility: hidden;
  position: absolute;
  background: #8F1722;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.main-wrapper .mainContent .sidebar .widget ul li .block-inside a {
  color: #141414;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  position: relative;
  width: 100%;
  display: block;
  padding-right: 18px;
}

.main-wrapper .mainContent .sidebar .widget ul li .block-inside a::after {
  content: '\f0da';
  top: 50%;
  line-height: normal;
  transform: translateY(-50%);
  right: 0;
  font-size: 16px;
  position: absolute;
  font-family: fontawesome;
}

.main-wrapper .mainContent .sidebar .widget ul li .block-inside:hover::before,
.main-wrapper .mainContent .sidebar .widget ul li .block-inside.active::before {
  opacity: 1;
  filter: alpha(opacity=1);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -ms-filter: "alpha(opacity=1)";
  visibility: visible;
}

.main-wrapper .mainContent .sidebar .widget ul li .block-inside:hover a,
.main-wrapper .mainContent .sidebar .widget ul li .block-inside.active a {
  color: #ffffff;
}

.main-wrapper .mainContent .sidebar .widget.widget-recent-post {
  background-color: rgba(178, 178, 178, 0.1);
  padding: 30px;
  overflow: hidden;
  border-radius: 10px;
}

.main-wrapper .mainContent .sidebar .widget.widget-recent-post::after {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 0;
  width: 3px;
  background-color: #B12936;
}

.main-wrapper .mainContent .sidebar .widget.widget-recent-post .widget-title {
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  font-weight: 600;
  line-height: 28px;
  z-index: 1;
}

.main-wrapper .mainContent .sidebar .widget.widget-recent-post .recent-feed-loop .single-recent-feed {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.main-wrapper .mainContent .sidebar .widget.widget-recent-post .recent-feed-loop .single-recent-feed .feed-desc {
  position: relative;
  padding-left: 100px;
}

.main-wrapper .mainContent .sidebar .widget.widget-recent-post .recent-feed-loop .single-recent-feed .feed-desc .feed-img {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}

.main-wrapper .mainContent .sidebar .widget.widget-recent-post .recent-feed-loop .single-recent-feed .feed-desc .feed-img img {
  width: 80px;
  border-radius: 5px;
  height: 80px;
}

.main-wrapper .mainContent .sidebar .widget.widget-recent-post .recent-feed-loop .single-recent-feed .feed-desc .post-title {
  margin-bottom: 12px;
  line-height: 1;
}

.main-wrapper .mainContent .sidebar .widget.widget-recent-post .recent-feed-loop .single-recent-feed .feed-desc .post-title a {
  font-size: 13px;
  font-weight: 500;
}

.main-wrapper .mainContent .sidebar .widget.widget-recent-post .recent-feed-loop .single-recent-feed .feed-desc .time {
  font-weight: 400;
  font-size: 13px;
}

.main-wrapper .mainContent .sidebar .widget.widget-recent-post .recent-feed-loop .single-recent-feed .feed-desc .time i {
  margin-right: 4px;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab {
  padding-right: 50px;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab h4 {
  font-size: 18px;
  color: #B12936;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  line-height: 1.6;
  text-transform: uppercase;
  position: relative;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab h4::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 120px;
  height: 2px;
  background-color: #B12936;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab h5 {
  font-size: 15px;
  color: #dd5309;
  text-decoration: underline;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.6;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab ul {
  padding-left: 30px;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab ul>li {
  position: relative;
  line-height: 2.1;
  padding-bottom: 10px;
  color: #333333;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab ul>li::before {
  font-family: 'FontAwesome';
  content: '\f005';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab ul>li>ul {
  margin: 10px 0;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab ul>li>ul li {
  padding: 0;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab ul>li>ul li::before {
  font-family: 'FontAwesome';
  content: '\f123';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab p {
  line-height: 30px;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab p span {
  color: #dd5309;
  font-style: italic;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab a {
  color: #B12936;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .divider {
  width: 100%;
  height: 1px;
  background-color: #E3E3E3;
  margin: 20px auto 30px;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .table-details table thead tr th:nth-child(2) {
  text-align: center;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .table-details table thead tr th:last-child {
  text-align: center;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .table-details table tbody tr td:nth-child(2) {
  text-align: center;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .table-details table tbody tr td:last-child {
  text-align: center;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .download-box {
  background-color: #fafafb;
  margin-bottom: 26px;
  border-bottom: 2px solid #dd5309;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .download-box a {
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  display: block;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .download-box a .icon-wrap svg {
  width: 40px;
  height: 40px;
  margin: 0px auto;
  fill: #B12936;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .download-box a h6 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 0px;
  color: #141414;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .download-box:hover a .icon-wrap svg {
  fill: #B12936;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .download-box:hover a h6 {
  color: #B12936;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .extra-links {
  margin-bottom: 30px;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .extra-links a {
  color: #dd5309;
  border: 1px solid #dd5309;
  background-color: rgba(221, 83, 9, 0.25);
  border-radius: 50px;
  padding: 10px 30px;
  display: inline-block;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .extra-links a:first-child {
  margin-right: 15px;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .extra-links a:hover {
  background-color: #dd5309;
  color: #ffffff;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .img-box-in {
  border: 1px solid #E3E3E3;
  margin-bottom: 30px;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab ul.inline-style {
  display: block;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab ul.inline-style li {
  display: flex;
  padding-bottom: 0px;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab ul.inline-style li:last-child {
  padding-bottom: 0;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab ul.inline-style li::before {
  z-index: 0;
  content: "\f058";
  font-family: fontawesome;
  font-weight: 900;
  font-size: 95%;
  padding-right: 10px;
  vertical-align: top;
  color: #8F1722;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-header {
  line-height: 30px;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-header .accordion-button {
  font-weight: 700;
  text-transform: capitalize;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: rgba(143, 23, 34, 0.15);
  color: #B12936;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxNiAxNiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTYgMTY7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsLXJ1bGU6ZXZlbm9kZDtjbGlwLXJ1bGU6ZXZlbm9kZDtmaWxsOiNCMTI5MzY7fQ0KPC9zdHlsZT4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xLjYsNC42YzAuMi0wLjIsMC41LTAuMiwwLjcsMGwwLDBMOCwxMC4zbDUuNi01LjZjMC4yLTAuMiwwLjUtMC4yLDAuNywwczAuMiwwLjUsMCwwLjdsLTYsNg0KCWMtMC4yLDAuMi0wLjUsMC4yLTAuNywwbDAsMGwtNi02QzEuNSw1LjIsMS41LDQuOCwxLjYsNC42TDEuNiw0LjZ6Ii8+DQo8L3N2Zz4NCg==);
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-header .accordion-button:focus {
  outline: none;
  box-shadow: none;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body {
  padding: 2rem 2rem;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.result-in ul {
  display: block;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.result-in ul li {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.result-in ul li:last-child {
  padding-bottom: 0;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.result-in ul li::before {
  z-index: 0;
  content: "\f058";
  font-family: fontawesome;
  font-weight: 900;
  font-size: 95%;
  padding-right: 10px;
  vertical-align: middle;
  color: #8F1722;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.result-in ul li a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.result-in ul li span {
  background-color: #B12936;
  border-radius: 15px;
  padding: 5px 20px;
  font-size: 14px;
  color: #ffffff;
  line-height: normal;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.result-in ul li:hover a {
  color: #8F1722;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.result-in ul li:hover span {
  background-color: #141414;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table h5 {
  font-size: 18px;
  font-weight: 700;
  color: #141414;
  margin-bottom: 30px;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table thead {
  text-align: center;
  text-transform: capitalize;
  vertical-align: middle;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table tbody .department {
  vertical-align: middle;
  text-align: center;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table tbody tr td {
  vertical-align: middle;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table tbody:nth-child(odd) {
  background-color: rgba(177, 41, 54, 0.02);
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table ul {
  display: block;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table ul li {
  display: flex;
  align-items: center;
  padding-bottom: 0px;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table ul li:last-child {
  padding-bottom: 0;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table ul li::before {
  z-index: 0;
  content: "\f058";
  font-family: fontawesome;
  font-weight: 900;
  font-size: 95%;
  padding-right: 10px;
  vertical-align: middle;
  color: #8F1722;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table .download-attendence {
  display: block;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table .download-attendence li {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table .download-attendence li:last-child {
  padding-bottom: 0;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table .download-attendence li::before {
  z-index: 0;
  content: "\f058";
  font-family: fontawesome;
  font-weight: 900;
  font-size: 95%;
  padding-right: 10px;
  vertical-align: middle;
  color: #8F1722;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table .download-attendence li a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table .download-attendence li span {
  background-color: #B12936;
  border-radius: 15px;
  padding: 5px 20px;
  font-size: 14px;
  color: #ffffff;
  line-height: normal;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table .download-attendence li:hover a {
  color: #8F1722;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.staff-table .download-attendence li:hover span {
  background-color: #141414;
}

.main-wrapper .mainContent.mci-compliance .toggling-tab .accordion .accordion-item .accordion-body.student-intake p a {
  color: #B12936;
}

.main-wrapper .mainContent.departments-inner .departments-tab {
  padding-right: 50px;
}

.main-wrapper .mainContent.departments-inner .departments-tab .img-box {
  margin-bottom: 15px;
}

.main-wrapper .mainContent.departments-inner .departments-tab h4 {
  font-size: 18px;
  color: #B12936;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.main-wrapper .mainContent.departments-inner .departments-tab h5 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  line-height: 1.5;
  position: relative;
}

.main-wrapper .mainContent.departments-inner .departments-tab h5::before {
  position: absolute;
  left: 0;
  content: '';
  bottom: 0;
  width: 80px;
  height: 2px;
  background-color: #B12936;
  z-index: 1;
}

.main-wrapper .mainContent.departments-inner .departments-tab h5::after {
  position: absolute;
  left: 0;
  content: '';
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(178, 178, 178, 0.4);
}

.main-wrapper .mainContent.departments-inner .departments-tab ul {
  padding-left: 30px;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.departments-inner .departments-tab ul>li {
  position: relative;
  line-height: 2.1;
  color: #333333;
}

.main-wrapper .mainContent.departments-inner .departments-tab ul>li::before {
  font-family: 'FontAwesome';
  content: '\f005';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

.main-wrapper .mainContent.departments-inner .departments-tab ul>li>ul {
  margin: 10px 0;
}

.main-wrapper .mainContent.departments-inner .departments-tab ul>li>ul li::before {
  font-family: 'FontAwesome';
  content: '\f123';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

.main-wrapper .mainContent.departments-inner .departments-tab .doctors-slider .inner-content {
  border: 1px solid #E3E3E3;
  padding: 15px;
}

.main-wrapper .mainContent.departments-inner .departments-tab .doctors-slider .inner-content img {
  margin-bottom: 25px;
}

.main-wrapper .mainContent.departments-inner .departments-tab .doctors-slider .inner-content .title {
  font-size: 16px;
  color: #dd5309;
  line-height: 1.1;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

.main-wrapper .mainContent.departments-inner .departments-tab .doctors-slider .inner-content h5 {
  font-size: 15px;
  font-weight: 600;
  color: #333333;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.main-wrapper .mainContent.departments-inner .departments-tab .doctors-slider .inner-content h6 {
  font-size: 14px;
  color: #B12936;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.1;
  text-transform: capitalize;
}

.main-wrapper .mainContent.departments-inner .departments-tab .doctors-slider .inner-content p {
  text-align: center;
  font-style: italic;
  line-height: 26px;
  font-size: 14px;
}

.main-wrapper .mainContent.departments-inner .departments-tab .doctors-slider .owl-nav {
  position: relative;
  width: 100px;
  margin: auto;
  margin-top: 50px;
  text-align: center;
}

.main-wrapper .mainContent.departments-inner .departments-tab .doctors-slider .owl-nav [class*='owl-'] {
  background: transparent;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  margin: auto;
  margin-right: 20px;
  display: inline-block;
  width: 29px;
  height: 9px;
  background-repeat: no-repeat;
  border: none;
}

.main-wrapper .mainContent.departments-inner .departments-tab .doctors-slider .owl-nav [class*='owl-'] span {
  display: none;
}

.main-wrapper .mainContent.departments-inner .departments-tab .doctors-slider .owl-nav [class*='owl-'].owl-prev {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiMxMzFkM2IiIHdpZHRoPSIyOSIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgMjkgOSI+PHBhdGggZD0iTTI5LDhIN1Y3SDI5VjNsNyw0LjVMMjksMTJaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzNiAxMikgcm90YXRlKDE4MCkiLz48L3N2Zz4=);
  position: relative;
}

.main-wrapper .mainContent.departments-inner .departments-tab .doctors-slider .owl-nav [class*='owl-'].owl-next {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiMxMzFkM2IiIHdpZHRoPSIyOSIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgMjkgOSI+PHBhdGggZD0iTTI5LDhIN1Y3SDI5VjNsNyw0LjVMMjksMTJaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNyAtMykiLz48L3N2Zz4=);
  position: relative;
  margin-right: 0;
}

.main-wrapper .mainContent.departments-inner .departments-tab .doctors-slider .owl-nav [class*='owl-']:hover.owl-prev::before,
.main-wrapper .mainContent.departments-inner .departments-tab .doctors-slider .owl-nav [class*='owl-']:hover.owl-next::before {
  opacity: 0;
}

.main-wrapper .mainContent.departments-inner .departments-tab .doctors-slider .owl-nav [class*='owl-']:hover.owl-prev {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiNmZjRmMDEiIHdpZHRoPSIyOSIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgMjkgOSI+PHBhdGggZD0iTTI5LDhIN1Y3SDI5VjNsNyw0LjVMMjksMTJaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzNiAxMikgcm90YXRlKDE4MCkiLz48L3N2Zz4=);
  position: relative;
}

.main-wrapper .mainContent.departments-inner .departments-tab .doctors-slider .owl-nav [class*='owl-']:hover.owl-next {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiNmZjRmMDEiIHdpZHRoPSIyOSIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgMjkgOSI+PHBhdGggZD0iTTI5LDhIN1Y3SDI5VjNsNyw0LjVMMjksMTJaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNyAtMykiLz48L3N2Zz4=);
  position: relative;
  margin-right: 0;
}

.main-wrapper .mainContent.departments-inner .departments-tab .table-box {
  margin-bottom: 50px;
}

.main-wrapper .mainContent.departments-inner .departments-tab .table-box h4 {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.departments-inner .departments-tab .table-box table.rwd-table {
  overflow: hidden;
}

.main-wrapper .mainContent.departments-inner .departments-tab .table-box table.rwd-table thead {
  background-color: #333333;
}

.main-wrapper .mainContent.departments-inner .departments-tab .table-box table.rwd-table thead tr th {
  vertical-align: middle;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

.main-wrapper .mainContent.departments-inner .departments-tab .table-box table.rwd-table td::before {
  content: attr(data-th) ": ";
  font-weight: bold;
  color: #333333;
  width: 100%;
  margin-bottom: .5rem;
  display: none;
  text-transform: uppercase;
}

.main-wrapper .mainContent.departments-inner .departments-tab .table-box table.rwd-table tbody tr:nth-of-type(even) {
  background: #f9f9f9;
}

.main-wrapper .mainContent.departments-inner .departments-tab .table-box table.rwd-table tbody tr td {
  text-transform: capitalize;
  text-align: center;
}

.main-wrapper .mainContent.departments-inner .departments-tab .table-box table.rwd-table tbody tr td span {
  display: block;
}

.main-wrapper .mainContent.departments-inner .departments-tab .table-box table.rwd-table tbody tr td ul {
  padding-left: 30px;
}

.main-wrapper .mainContent.departments-inner .departments-tab .table-box table.rwd-table tbody tr td ul li {
  position: relative;
  padding-bottom: 15px;
  color: #333333;
}

.main-wrapper .mainContent.departments-inner .departments-tab .table-box table.rwd-table tbody tr td ul li::before {
  font-family: 'FontAwesome';
  content: '\f2da';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

.main-wrapper .mainContent.departments-inner .departments-tab .table-box table.rwd-table tbody tr td.center {
  text-align: center;
}

@media (max-width: 767px) {
  .main-wrapper .mainContent.departments-inner .departments-tab .table-box table.rwd-table thead {
    display: none;
  }

  .main-wrapper .mainContent.departments-inner .departments-tab .table-box table.rwd-table tbody tr {
    border-bottom: 2px solid #B12936;
  }

  .main-wrapper .mainContent.departments-inner .departments-tab .table-box table.rwd-table tbody tr td {
    display: block;
  }

  .main-wrapper .mainContent.departments-inner .departments-tab .table-box table.rwd-table tbody tr td::before {
    display: block;
  }

  .main-wrapper .mainContent.departments-inner .departments-tab .table-box table.rwd-table tbody tr td.center {
    text-align: left;
  }
}

.main-wrapper .mainContent.departments-inner .departments-tab .publication-content .accordion .accordion-item {
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.125) !important;
}

.main-wrapper .mainContent.departments-inner .departments-tab .publication-content .accordion .accordion-item .accordion-header button {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  outline: none;
  box-shadow: none;
  border-radius: 0;
  line-height: normal;
}

.main-wrapper .mainContent.departments-inner .departments-tab .publication-content .accordion .accordion-item .accordion-header button:focus {
  outline: none;
  box-shadow: none;
}

.main-wrapper .mainContent.departments-inner .departments-tab .publication-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0px;
}

.main-wrapper .mainContent.departments-inner .departments-tab .publication-content ul {
  padding-left: 30px;
}

.main-wrapper .mainContent.departments-inner .departments-tab .publication-content ul li {
  position: relative;
  padding-bottom: 15px;
  color: #333333;
}

.main-wrapper .mainContent.departments-inner .departments-tab .publication-content ul li::before {
  font-family: 'FontAwesome';
  content: '\f2da';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

.main-wrapper .mainContent.contact-page .left-side {
  padding-right: 50px;
}

.main-wrapper .mainContent.contact-page .left-side .inner-details .main-title h6 {
  color: #B12936;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.main-wrapper .mainContent.contact-page .left-side .inner-details .main-title h4 {
  color: #141414;
  font-size: 40px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px;
  line-height: 55px;
}

.main-wrapper .mainContent.contact-page .left-side .inner-details .main-title ul.contact-list li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 15px;
  font-size: 18px;
}

.main-wrapper .mainContent.contact-page .left-side .inner-details .main-title ul.contact-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #8F1722;
  font-family: 'FontAwesome';
}

.main-wrapper .mainContent.contact-page .left-side .inner-details .main-title ul.contact-list li:nth-child(1)::before {
  content: '\f095';
}

.main-wrapper .mainContent.contact-page .left-side .inner-details .main-title ul.contact-list li:nth-child(2)::before {
  content: '@';
}

.main-wrapper .mainContent.contact-page .left-side .inner-details .main-title ul.contact-list li:nth-child(3)::before {
  content: '\f041';
}

.main-wrapper .mainContent.contact-page .right-side .inner-form .contact-title {
  font-size: 20px;
  color: #8F1722;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.main-wrapper .mainContent.contact-page .right-side .inner-form .two-input {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.main-wrapper .mainContent.contact-page .right-side .inner-form .two-input .field-gr {
  width: calc(50% - 14px);
}

.main-wrapper .mainContent.contact-page .right-side .inner-form .two-input input {
  background: 0 0;
  border: 0;
  border: 1px solid #e3e3e3;
  outline: none !important;
  color: #333333;
  padding: 10px 15px;
  font-size: 17px;
  width: 100%;
  height: 50px;
}

.main-wrapper .mainContent.contact-page .right-side .inner-form .two-input input:focus {
  border-color: #8F1722;
}

.main-wrapper .mainContent.contact-page .right-side .inner-form .form-textarea {
  margin-bottom: 30px;
}

.main-wrapper .mainContent.contact-page .right-side .inner-form .form-textarea textarea {
  font-size: 17px;
  width: 100%;
  height: 125px;
  color: #333333;
  border: 0;
  border: 1px solid #e3e3e3;
  outline: none !important;
  background: 0 0;
  padding: 10px 15px;
  display: block;
}

.main-wrapper .mainContent.contact-page .right-side .inner-form .form-textarea textarea:focus {
  border-color: #8F1722;
}

.main-wrapper .mainContent.contact-page .right-side .inner-form .form-submit .btn-contact {
  background-color: #B12936;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 12px 30px;
  border-radius: 0px;
}

.main-wrapper .mainContent.contact-page .right-side .inner-form .form-submit .btn-contact:hover {
  background-color: #333333;
}

.main-wrapper .mainContent.contact-page .google-map iframe {
  width: 100%;
  height: 550px;
  border: 10px solid #f9f9f9;
}

.main-wrapper .mainContent.about-page .image-box img {
  border-radius: 15px;
}

.main-wrapper .mainContent.about-page .inner-content {
  padding-left: 50px;
}

.main-wrapper .mainContent.about-page .inner-content .title {
  font-size: 30px;
  color: #B12936;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 600;
}

.main-wrapper .mainContent.about-page .inner-content .discription {
  text-align: justify;
  margin-bottom: 30px;
}

.main-wrapper .mainContent.about-page .inner-content .title-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.about-page .inner-content .position {
  font-size: 15px;
  line-height: 1;
  color: #dd5309;
  margin-bottom: 15px;
  font-weight: 500;
}

.main-wrapper .mainContent.about-page .vision,
.main-wrapper .mainContent.about-page .mission {
  border: 1px solid #E3E3E3;
  border-radius: 15px;
  padding: 30px;
}

.main-wrapper .mainContent.about-page .vision h4,
.main-wrapper .mainContent.about-page .mission h4 {
  font-size: 18px;
  color: #B12936;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
}

.main-wrapper .mainContent.govt-page .inner-content .table-box {
  margin-bottom: 50px;
}

.main-wrapper .mainContent.govt-page .inner-content .table-box h4 {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.govt-page .inner-content .table-box table.rwd-table {
  overflow: hidden;
}

.main-wrapper .mainContent.govt-page .inner-content .table-box table.rwd-table thead {
  background-color: #333333;
}

.main-wrapper .mainContent.govt-page .inner-content .table-box table.rwd-table thead tr th {
  vertical-align: middle;
  color: #ffffff;
  text-align: center;
  text-transform: capitalize;
}

.main-wrapper .mainContent.govt-page .inner-content .table-box table.rwd-table td::before {
  content: attr(data-th) ": ";
  font-weight: bold;
  color: #333333;
  width: 100%;
  margin-bottom: .5rem;
  display: none;
  text-transform: capitalize;
}

.main-wrapper .mainContent.govt-page .inner-content .table-box table.rwd-table tbody tr:nth-of-type(even) {
  background: #f9f9f9;
}

.main-wrapper .mainContent.govt-page .inner-content .table-box table.rwd-table tbody tr td {
  text-transform: capitalize;
  text-align: left;
}

.main-wrapper .mainContent.govt-page .inner-content .table-box table.rwd-table tbody tr td span {
  display: block;
}

.main-wrapper .mainContent.govt-page .inner-content .table-box table.rwd-table tbody tr td ul {
  padding: 0px;
}

.main-wrapper .mainContent.govt-page .inner-content .table-box table.rwd-table tbody tr td ul li {
  position: relative;
  color: #333333;
  display: inline-block;
  padding: 0 10px;
}

.main-wrapper .mainContent.govt-page .inner-content .table-box table.rwd-table tbody tr td ul li a {
  color: #dd5309;
  text-decoration: underline;
}

.main-wrapper .mainContent.govt-page .inner-content .table-box table.rwd-table tbody tr td.center {
  text-align: center;
}

@media (max-width: 767px) {
  .main-wrapper .mainContent.govt-page .inner-content .table-box table.rwd-table thead {
    display: none;
  }

  .main-wrapper .mainContent.govt-page .inner-content .table-box table.rwd-table tbody tr {
    border-bottom: 2px solid #B12936;
  }

  .main-wrapper .mainContent.govt-page .inner-content .table-box table.rwd-table tbody tr td {
    display: block;
  }

  .main-wrapper .mainContent.govt-page .inner-content .table-box table.rwd-table tbody tr td::before {
    display: block;
  }

  .main-wrapper .mainContent.govt-page .inner-content .table-box table.rwd-table tbody tr td.center {
    text-align: left;
  }
}

.main-wrapper .mainContent.govt-page .sidebar.has-marign-left {
  margin-left: 40px;
}

.main-wrapper .mainContent.govt-page .sidebar.has-marign-right {
  margin-right: 40px;
}

.main-wrapper .mainContent.govt-page .sidebar .widget {
  position: relative;
  padding: 40px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 40px;
  background-color: #def8f6;
  z-index: 1;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-help::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.95;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(19%, #061733), color-stop(71%, #061733));
  background-image: linear-gradient(180deg, #061733 19%, #061733 71%);
}

.main-wrapper .mainContent.govt-page .sidebar .widget::after {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 0;
  width: 3px;
  background-color: #dd5309;
}

.main-wrapper .mainContent.govt-page .sidebar .widget .widget-content .widget-icon {
  margin-bottom: 30px;
}

.main-wrapper .mainContent.govt-page .sidebar .widget .widget-content .widget-icon svg {
  width: 50px;
  height: 50px;
  fill: #ffffff;
}

.main-wrapper .mainContent.govt-page .sidebar .widget .widget-content .widget-title {
  font-size: 19px;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.5;
  padding: 0;
}

.main-wrapper .mainContent.govt-page .sidebar .widget .widget-content .widget-desc {
  color: #ffffff;
}

.main-wrapper .mainContent.govt-page .sidebar .widget .widget-content .phone-number {
  font-size: 24px;
  margin-top: 5px;
  color: #ffffff !important;
}

.main-wrapper .mainContent.govt-page .sidebar .widget .widget-content .phone-number .icon-phone {
  font-size: 17px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  margin-right: 10px;
  background-color: #3851a2;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-schedule {
  background-color: #f6f6f6;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-schedule .widget-content .widget-icon svg {
  width: 50px;
  height: 50px;
  fill: #B12936;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-schedule .widget-content .widget-title {
  color: #B12936;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-schedule .widget-content .time-list li {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #dcdee2;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-member {
  padding: 0;
  overflow: visible;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-member .member {
  z-index: 3;
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15);
  position: relative;
  border-radius: 8px;
  background-color: #ffffff;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-member .member::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 3px;
  background-color: #dd5309;
  transition: transform 0.4s linear;
  transition-delay: 0.3s;
  transform: scaleX(1);
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-member .member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-member .member .member-info {
  padding: 35px 40px;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-member .member .member-info .member-name {
  font-size: 21px;
  margin-bottom: 11px;
  color: #B12936;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-member .member .member-info .member-job {
  color: #dd5309;
  margin-bottom: 10px;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-member .member .member-info .member-desc {
  font-size: 15px;
  margin-bottom: 0;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-member .member .member-info .social-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-member .member .member-info .social-icons li {
  opacity: 1;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  margin-right: 10px;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-member .member .member-info .social-icons li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #ffffff;
  position: relative;
  z-index: 2;
  display: block;
  border-radius: 50%;
  text-align: center;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-member .member .member-info .social-icons li a.facebook {
  background-color: #3b5999;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-member .member .member-info .social-icons li a.twitter {
  background-color: #55acee;
}

.main-wrapper .mainContent.govt-page .sidebar .widget.widget-member .member .member-info .social-icons li a.phone {
  background-color: #283b6a;
}

@media (min-width: 1280px) {
  .main-wrapper .mainContent.govt-page .sidebar .widget.widget-member.shifted-top {
    margin-top: -462px;
  }
}

.main-wrapper .mainContent.complaint-page .inner-content {
  padding-right: 50px;
}

.main-wrapper .mainContent.complaint-page .inner-content .title {
  font-size: 20px;
  color: #B12936;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 600;
}

.main-wrapper .mainContent.complaint-page .inner-content ul {
  padding-left: 30px;
}

.main-wrapper .mainContent.complaint-page .inner-content ul li {
  position: relative;
  padding-bottom: 15px;
  color: #333333;
}

.main-wrapper .mainContent.complaint-page .inner-content ul li::before {
  font-family: 'FontAwesome';
  content: '\f2da';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

.main-wrapper .mainContent.complaint-page .right-form {
  border: 1px solid #E3E3E3;
  padding: 50px 50px;
  background-color: #fbfbfb;
}

.main-wrapper .mainContent.complaint-page .right-form .form-submit .btn-contact {
  background-color: #B12936;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 12px 30px;
  border-radius: 0px;
}

.main-wrapper .mainContent.complaint-page .right-form .form-submit .btn-contact:hover {
  background-color: #333333;
}

.main-wrapper .mainContent.students-page h4 {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.students-page ul {
  padding-left: 30px;
}

.main-wrapper .mainContent.students-page ul li {
  position: relative;
  padding-bottom: 15px;
  color: #333333;
}

.main-wrapper .mainContent.students-page ul li::before {
  font-family: 'FontAwesome';
  content: '\f1c1';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

.main-wrapper .mainContent.students-page ul li:nth-child(2)::before {
  content: '\f0c1';
}

.main-wrapper .mainContent.curricular-page .inner-content .accordion .accordion-item {
  border-radius: 0 !important;
}

.main-wrapper .mainContent.curricular-page .inner-content .accordion .accordion-item .accordion-header {
  line-height: normal;
}

.main-wrapper .mainContent.curricular-page .inner-content .accordion .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  font-size: 16px;
  border-radius: 0;
  color: #333333;
  padding: 1.25rem 1.25rem;
}

.main-wrapper .mainContent.curricular-page .inner-content .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #B12936;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.13);
}

.main-wrapper .mainContent.curricular-page .inner-content .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.13);
  border-color: #B12936;
}

.main-wrapper .mainContent.curricular-page .inner-content .accordion .accordion-item .accordion-body {
  padding: 30px 15px;
}

.main-wrapper .mainContent.curricular-page .inner-content .accordion .accordion-item .accordion-body .image-box {
  margin-bottom: 30px;
}

.main-wrapper .mainContent.curricular-page .inner-content .accordion .accordion-item .accordion-body .image-item {
  border: 1px solid #E3E3E3;
  padding: 15px;
}

.main-wrapper .mainContent.curricular-page .inner-content .accordion .accordion-item .accordion-body h4 {
  font-size: 18px;
  text-transform: capitalize;
  color: #dd5309;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: normal;
}

.main-wrapper .mainContent.curricular-page .inner-content .accordion .accordion-item .accordion-body ul {
  padding-left: 30px;
}

.main-wrapper .mainContent.curricular-page .inner-content .accordion .accordion-item .accordion-body ul li {
  position: relative;
  padding-bottom: 15px;
  color: #333333;
}

.main-wrapper .mainContent.curricular-page .inner-content .accordion .accordion-item .accordion-body ul li::before {
  font-family: 'FontAwesome';
  content: '\f2da';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

.main-wrapper .mainContent.gallery-page h4 {
  font-size: 20px;
  text-transform: capitalize;
  color: #B12936;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: normal;
}

.main-wrapper .mainContent.gallery-page .item {
  border: 1px solid #E3E3E3;
  padding: 12px;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.main-wrapper .mainContent.gallery-page .item:hover {
  border-color: #B12936;
  box-shadow: 0 4px 14px rgba(177, 41, 54, 0.12);
  transform: translateY(-2px);
}

.main-wrapper .mainContent.gallery-page .item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.main-wrapper .mainContent.gallery-page .item .gallery-img-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 4px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-wrapper .mainContent.gallery-page .item .gallery-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 0;
  transition: transform 0.3s ease;
}

.main-wrapper .mainContent.gallery-page .item:hover .gallery-img-container img {
  transform: scale(1.03);
}

.main-wrapper .mainContent.gallery-page .item .gallery-name-tag {
  margin-top: 10px;
  padding: 8px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.main-wrapper .mainContent.gallery-page .item .gallery-name-tag p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
  min-height: auto;
  transition: color 0.2s ease;
}

.main-wrapper .mainContent.gallery-page .item:hover .gallery-name-tag {
  background: #fff6f6;
  border-color: #fecdd3;
}

.main-wrapper .mainContent.gallery-page .item:hover .gallery-name-tag p {
  color: #B12936;
}

.main-wrapper .mainContent.gallery-page .accordion .accordion-item {
  border-radius: 0 !important;
  border: 1px solid rgba(227, 227, 227, 0.5);
}

.main-wrapper .mainContent.gallery-page .accordion .accordion-item .accordion-header {
  line-height: normal;
}

.main-wrapper .mainContent.gallery-page .accordion .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  font-size: 16px;
  border-radius: 0;
  color: #333333;
  padding: 1.25rem 1.25rem;
}

.main-wrapper .mainContent.gallery-page .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #B12936;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(227, 227, 227, 0.5);
}

.main-wrapper .mainContent.gallery-page .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: inset 0 -1px 0 rgba(227, 227, 227, 0.5);
  border-color: #B12936;
}

.main-wrapper .mainContent.gallery-page .accordion .accordion-item .accordion-body {
  padding: 30px 15px;
}

.main-wrapper .mainContent.about-college-page .inner-content .title {
  font-size: 30px;
  color: #B12936;
  line-height: 1.1;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 600;
}

.main-wrapper .mainContent.about-college-page .inner-content h6 {
  font-size: 18px;
  color: #333333;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 30px;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item {
  border-radius: 0 !important;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-header {
  line-height: normal;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  font-size: 16px;
  border-radius: 0;
  color: #333333;
  padding: 1.25rem 1.25rem;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #B12936;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.13);
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.13);
  border-color: #B12936;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body {
  padding: 30px 15px;
  background-color: rgba(255, 246, 246, 0.35);
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body h4 {
  font-size: 18px;
  text-transform: capitalize;
  color: #dd5309;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: normal;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body ul {
  padding-left: 30px;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body ul li {
  position: relative;
  padding-bottom: 15px;
  color: #333333;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body ul li::before {
  font-family: 'FontAwesome';
  content: '\f2da';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box h4 {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box table thead {
  background-color: #333333;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box table thead tr th {
  vertical-align: middle;
  color: #ffffff;
  text-transform: capitalize;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box table tbody {
  background-color: #ffffff;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box table tbody tr td {
  text-transform: capitalize;
  vertical-align: middle;
  text-align: left;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box table.rwd-table {
  overflow: hidden;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box table.rwd-table thead {
  background-color: #333333;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box table.rwd-table thead tr th {
  vertical-align: middle;
  color: #ffffff;
  text-transform: capitalize;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box table.rwd-table td {
  vertical-align: middle;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box table.rwd-table td::before {
  content: attr(data-th);
  font-weight: bold;
  color: #333333;
  width: 100%;
  margin-bottom: .5rem;
  display: none;
  text-transform: capitalize;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box table.rwd-table tbody {
  background-color: #ffffff;
}

.main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box table.rwd-table tbody tr td {
  text-transform: capitalize;
  vertical-align: middle;
  text-align: left;
}

@media (max-width: 767px) {
  .main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box table.rwd-table thead {
    display: none;
  }

  .main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box table.rwd-table tbody {
    border-bottom: 2px solid #B12936;
  }

  .main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box table.rwd-table tbody tr td {
    display: block;
  }

  .main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box table.rwd-table tbody tr td::before {
    display: block;
  }

  .main-wrapper .mainContent.about-college-page .accordion .accordion-item .accordion-body .table-box table.rwd-table tbody tr td.center {
    text-align: left;
  }
}

.main-wrapper .mainContent.university-topper-page .inner-content {
  border: 1px solid #E3E3E3;
  padding: 15px;
}

.main-wrapper .mainContent.university-topper-page .inner-content img {
  margin-bottom: 25px;
}

.main-wrapper .mainContent.university-topper-page .inner-content .title {
  font-size: 16px;
  color: #dd5309;
  line-height: 1.1;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

.main-wrapper .mainContent.university-topper-page .inner-content h5 {
  font-size: 15px;
  font-weight: 600;
  color: #333333;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.main-wrapper .mainContent.university-topper-page .inner-content h6 {
  font-size: 14px;
  color: #B12936;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.1;
  text-transform: capitalize;
}

.main-wrapper .mainContent.university-topper-page .inner-content p {
  text-align: center;
  font-style: italic;
  line-height: 26px;
  font-size: 14px;
}

.main-wrapper .mainContent.university-topper-page .inner-content p a {
  color: #B12936;
  font-weight: 600;
  text-decoration: underline;
}

.main-wrapper .mainContent.courses-page .inner-content .nav-tabs {
  border: none;
  justify-content: center;
}

.main-wrapper .mainContent.courses-page .inner-content .nav-tabs .nav-item .nav-link {
  background-color: #FFF6F6;
  color: #B12936;
  margin-right: 10px;
  border-radius: 0;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
}

.main-wrapper .mainContent.courses-page .inner-content .nav-tabs .nav-item .nav-link.active {
  background-color: #B12936;
  color: #ffffff;
}

.main-wrapper .mainContent.courses-page .inner-content .nav-tabs .nav-item .nav-link.active span {
  color: #B12936;
  background-color: #ffffff;
}

.main-wrapper .mainContent.courses-page .inner-content .nav-tabs .nav-item .nav-link span {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 22px;
  color: #ffffff;
  border-radius: 100%;
  text-align: center;
  background-color: #B12936;
  display: inline-block;
  margin-right: 15px;
}

.main-wrapper .mainContent.courses-page .inner-content .nav-tabs .nav-item .nav-link:hover {
  border-color: rgba(177, 41, 54, 0.15);
}

@media (max-width: 991px) {
  .main-wrapper .mainContent.courses-page .inner-content .nav-tabs .nav-item {
    margin-bottom: 10px;
  }

  .main-wrapper .mainContent.courses-page .inner-content .nav-tabs .nav-item .nav-link {
    font-size: 16px;
  }

  .main-wrapper .mainContent.courses-page .inner-content .nav-tabs .nav-item .nav-link span {
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
  }
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content {
  padding-top: 50px;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .nav-pills {
  text-align: center;
  justify-content: center;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .nav-pills .nav-item {
  margin-right: 5px;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .nav-pills .nav-item .nav-link {
  background-color: #ffffff;
  border: 1px solid rgba(51, 51, 51, 0.25);
  color: #333333;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: normal;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .nav-pills .nav-item .nav-link.active,
.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .nav-pills .nav-item .nav-link:hover {
  border-color: #dd5309;
  color: #dd5309;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content {
  padding-top: 30px;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area h4 {
  font-size: 18px;
  color: #B12936;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area h5 {
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 15px;
  line-height: normal;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area h5 span {
  color: #dd5309;
  font-size: 16px;
  font-weight: 600;
  margin-right: 10px;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area ul {
  padding-left: 30px;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area ul li {
  position: relative;
  padding-bottom: 15px;
  color: #333333;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area ul li::before {
  font-family: 'FontAwesome';
  content: '\f123';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .inner-text {
  display: flex;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .inner-text .left {
  width: 20%;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .inner-text .left h5 {
  line-height: normal;
  color: #dd5309;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .inner-text .right {
  width: 80%;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .inner-text .right p {
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  margin: 0;
  line-height: normal;
}

.mainContent.courses-page .inner-content .nav-tabs {
  border: none;
  justify-content: center;
}

.mainContent.courses-page .inner-content .nav-tabs .nav-item .nav-link {
  background-color: #FFF6F6;
  color: #B12936;
  margin-right: 10px;
  border-radius: 0;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
}

.mainContent.courses-page .inner-content .nav-tabs .nav-item .nav-link.active {
  background-color: #B12936;
  color: #ffffff;
}

.mainContent.courses-page .inner-content .nav-tabs .nav-item .nav-link.active span {
  color: #B12936;
  background-color: #ffffff;
}

.mainContent.courses-page .inner-content .nav-tabs .nav-item .nav-link span {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 22px;
  color: #ffffff;
  border-radius: 100%;
  text-align: center;
  background-color: #B12936;
  display: inline-block;
  margin-right: 15px;
}

.mainContent.courses-page .inner-text .right ul,
.mainContent.courses-page .content-area ul {
  list-style: none !important;
  padding-left: 30px !important;
  margin-bottom: 0 !important;
}

.mainContent.courses-page .inner-text .right ul li,
.mainContent.courses-page .content-area ul li {
  position: relative !important;
  padding-bottom: 10px !important;
  font-size: 15px !important;
  color: #333333 !important;
  line-height: 1.5 !important;
}

.mainContent.courses-page .inner-text .right ul li::before,
.mainContent.courses-page .content-area ul li::before {
  font-family: 'FontAwesome' !important;
  content: '\f123' !important;
  position: absolute !important;
  left: 0 !important;
  margin: 0 15px 0 -30px !important;
  color: #B12936 !important;
  font-size: 15px !important;
  display: inline-block !important;
}

@media (max-width: 991px) {
  .main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .inner-text .left {
    width: 30%;
  }

  .main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .inner-text .right {
    width: 70%;
  }
}

@media (max-width: 766px) {
  .main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .inner-text .left {
    width: 40%;
  }

  .main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .inner-text .right {
    width: 60%;
  }
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .inner-text-bottom p {
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  line-height: normal;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .inner-text-bottom p span {
  line-height: normal;
  color: #dd5309;
  font-size: 15px;
  font-weight: 600;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .divider {
  width: 100%;
  height: 1px;
  margin: 30px auto;
  background-color: rgba(51, 51, 51, 0.15);
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .accordion .accordion-item {
  border-radius: 0 !important;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .accordion .accordion-item .accordion-header {
  line-height: normal;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .accordion .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  font-size: 16px;
  border-radius: 0;
  color: #333333;
  padding: 1.25rem 1.25rem;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #dd5309;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.13);
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.13);
  border-color: #B12936;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .accordion .accordion-item .accordion-body {
  padding: 30px 15px;
  background-color: rgba(255, 246, 246, 0.35);
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .accordion .accordion-item .accordion-body h4 {
  font-size: 18px;
  text-transform: capitalize;
  color: #dd5309;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: normal;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .accordion .accordion-item .accordion-body ul {
  padding-left: 30px;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .accordion .accordion-item .accordion-body ul li {
  position: relative;
  padding-bottom: 15px;
  color: #333333;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content .content-area .accordion .accordion-item .accordion-body ul li::before {
  font-family: 'FontAwesome';
  content: '\f19d';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

@media (min-width: 992px) {
  .main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .left-content {
    padding-right: 50px;
  }
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .right-content .admissions-process {
  text-align: left;
  color: #212529 !important;
  background: #FFF6F6;
  padding: 30px;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .right-content .admissions-process .admission-title {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 15px;
  color: #B12936;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .right-content .admissions-process .general-sec {
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 35px;
  padding: 2px 20px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .right-content .admissions-process .list-items .text-list ul {
  padding-inline-start: 20px;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .right-content .admissions-process .list-items .text-list ul li {
  border: 0 !important;
  font-size: 16px;
  position: relative;
  list-style-type: disc;
  padding-bottom: 8px;
  color: #141414 !important;
  text-align: left;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .right-content .admissions-process .list-items .text-list ul li::marker {
  color: #B12936;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .right-content .admissions-process .list-items .text-list ul li::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 15px;
  border: 1px dashed #B12936;
  height: 100%;
}

.main-wrapper .mainContent.courses-page .inner-content>.tab-content .tab-pane .tab-content .tab-pane .right-content .admissions-process .list-items .text-list ul li:last-child::before {
  content: '';
  border: 0;
}

.main-wrapper .mainContent.news-page .news-item .img-box {
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.main-wrapper .mainContent.news-page .news-item .img-box::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(177, 41, 54, 0);
  z-index: 1;
  transition: all 0.5 ease;
  -webkit-transition: all 0.5 ease;
  -o-transition: all 0.5 ease;
  -moz-transition: all 0.5 ease;
  -ms-transition: all 0.5 ease;
}

.main-wrapper .mainContent.news-page .news-item .img-box img {
  transform: scale(1);
}

.main-wrapper .mainContent.news-page .news-item .img-box .post {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: #E15524;
  color: #ffffff;
  padding: 5px 15px;
  text-align: center;
  z-index: 9;
}

.main-wrapper .mainContent.news-page .news-item .img-box .post span {
  display: block;
  text-transform: uppercase;
  line-height: normal;
}

.main-wrapper .mainContent.news-page .news-item .img-box .post span.date {
  font-weight: 600;
}

.main-wrapper .mainContent.news-page .news-item .content h6 {
  margin-bottom: 15px;
  font-weight: 600;
  min-height: 105px;
}

.main-wrapper .mainContent.news-page .news-item .content .more {
  color: #B12936;
}

.main-wrapper .mainContent.news-page .news-item .content .more span {
  margin-left: 40px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}

.main-wrapper .mainContent.news-page .news-item .content .more span svg {
  fill: #B12936;
  width: 18px;
  height: 18px;
}

.main-wrapper .mainContent.news-page .news-item:hover .img-box::before {
  background-color: rgba(177, 41, 54, 0.5);
}

.main-wrapper .mainContent.news-page .news-item:hover .img-box img {
  transform: scale(1.2);
}

.main-wrapper .mainContent.news-page .news-item:hover .content .more {
  color: #8F1722;
}

.main-wrapper .mainContent.news-page .news-item:hover .content .more span {
  margin-left: 20px;
}

.main-wrapper .mainContent.news-page .news-item:hover .content .more span svg {
  fill: #8F1722;
}

.main-wrapper .mainContent.news-page .inner-content h3 {
  font-size: 30px;
  color: #B12936;
  font-weight: 600;
  text-align: left;
  line-height: 1;
}

.main-wrapper .mainContent.news-page .inner-content h4 {
  font-size: 20px;
  color: #333333;
  font-weight: 600;
  margin: 15px 0;
  margin-top: 30px;
  line-height: 1;
}

.main-wrapper .mainContent.news-page .inner-content .news-post-meta {
  padding: 12px 0;
  display: flex;
  align-items: center;
}

.main-wrapper .mainContent.news-page .inner-content .news-post-meta * {
  margin: 0 8px 0 0;
}

.main-wrapper .mainContent.news-page .inner-content .news-post-meta .news-post-author {
  position: relative;
}

.main-wrapper .mainContent.news-page .inner-content .news-post-meta .news-post-author::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  right: -5px;
  width: 1px;
  height: 10px;
  background-color: #333333;
}

.main-wrapper .mainContent.news-page .inner-content .news-post-meta .news-post-time {
  margin-left: 8px;
  margin-right: 0;
}

.main-wrapper .mainContent.news-page .inner-content .news-post-meta span {
  color: #333333;
  display: block;
  font-size: 14px;
}

.main-wrapper .mainContent.news-page .inner-content ul {
  padding-left: 30px;
}

.main-wrapper .mainContent.news-page .inner-content ul li {
  position: relative;
  padding-bottom: 15px;
  color: #333333;
  line-height: normal;
}

.main-wrapper .mainContent.news-page .inner-content ul li::before {
  font-family: 'FontAwesome';
  content: '\f2da';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

.main-wrapper .mainContent.news-page .gallery-slider {
  margin-top: 50px;
}

.main-wrapper .mainContent.news-page .gallery-slider .owl-item .item {
  overflow: hidden;
}

.main-wrapper .mainContent.news-page .gallery-slider .owl-item .item-img {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 350px;
  transform: scale(1);
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}

.main-wrapper .mainContent.news-page .gallery-slider .owl-item .item-img::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -moz-linear-gradient(top, rgba(51, 51, 51, 0.64) 0%, #141414 100%);
  background: -webkit-linear-gradient(top, rgba(51, 51, 51, 0.64) 0%, #141414 100%);
  background: linear-gradient(to bottom, rgba(51, 51, 51, 0.64) 0%, #141414 100%);
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}

@media (max-width: 1279px) {
  .main-wrapper .mainContent.news-page .gallery-slider .owl-item .item-img {
    min-height: 300px;
  }
}

@media (max-width: 991px) {
  .main-wrapper .mainContent.news-page .gallery-slider .owl-item .item-img {
    min-height: 350px;
  }
}

@media (max-width: 575px) {
  .main-wrapper .mainContent.news-page .gallery-slider .owl-item .item-img {
    min-height: 350px;
  }
}

.main-wrapper .mainContent.news-page .gallery-slider .owl-item.center .item-img {
  opacity: 1;
}

.main-wrapper .mainContent.news-page .gallery-slider .owl-item.center .item-img::before {
  opacity: .5;
}

.main-wrapper .mainContent.news-page .gallery-slider .owl-item.center:hover .item-img {
  transform: scale(1.1);
}

.main-wrapper .mainContent.news-page .gallery-slider .owl-nav [class*='owl-'] {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: transparent;
  border: 1px solid #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 400ms;
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  -moz-transition: 400ms;
  -ms-transition: 400ms;
}

.main-wrapper .mainContent.news-page .gallery-slider .owl-nav [class*='owl-'].owl-prev {
  left: 50px;
}

.main-wrapper .mainContent.news-page .gallery-slider .owl-nav [class*='owl-'].owl-next {
  right: 50px;
}

.main-wrapper .mainContent.news-page .gallery-slider .owl-nav [class*='owl-'] img {
  max-width: 18px;
  width: 100%;
}

.main-wrapper .mainContent.news-page .gallery-slider .owl-nav [class*='owl-']:hover {
  background: rgba(0, 0, 0, 0.14);
}

@media screen and (max-width: 992px) {
  .main-wrapper .mainContent.news-page .gallery-slider .owl-nav {
    top: auto;
    bottom: 50px;
    left: 0;
    text-align: center;
    right: 0;
    transform: initial;
    margin: 0px auto;
  }
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab {
  padding-right: 50px;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .img-box {
  margin-bottom: 15px;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab h4 {
  font-size: 18px;
  color: #B12936;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab h5 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  line-height: 1.5;
  position: relative;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab h5::before {
  position: absolute;
  left: 0;
  content: '';
  bottom: 0;
  width: 80px;
  height: 2px;
  background-color: #B12936;
  z-index: 1;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab h5::after {
  position: absolute;
  left: 0;
  content: '';
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(178, 178, 178, 0.4);
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab ul {
  padding-left: 30px;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab ul>li {
  position: relative;
  line-height: 2.1;
  color: #333333;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab ul>li::before {
  font-family: 'FontAwesome';
  content: '\f005';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab ul>li>ul {
  margin: 10px 0;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab ul>li>ul li::before {
  font-family: 'FontAwesome';
  content: '\f123';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box h4 {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box table.rwd-table {
  overflow: hidden;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box table.rwd-table thead {
  background-color: #333333;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box table.rwd-table thead tr th {
  vertical-align: middle;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box table.rwd-table td::before {
  content: attr(data-th) ": ";
  font-weight: bold;
  color: #333333;
  width: 100%;
  margin-bottom: .5rem;
  display: none;
  text-transform: uppercase;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box table.rwd-table tbody tr:nth-of-type(even) {
  background: #f9f9f9;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box table.rwd-table tbody tr td {
  text-transform: capitalize;
  text-align: center;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box table.rwd-table tbody tr td span {
  display: block;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box table.rwd-table tbody tr td ul {
  padding-left: 30px;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box table.rwd-table tbody tr td ul li {
  position: relative;
  padding-bottom: 15px;
  color: #333333;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box table.rwd-table tbody tr td ul li::before {
  font-family: 'FontAwesome';
  content: '\f2da';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box table.rwd-table tbody tr td.center {
  text-align: center;
}

@media (max-width: 767px) {
  .main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box table.rwd-table thead {
    display: none;
  }

  .main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box table.rwd-table tbody tr {
    border-bottom: 2px solid #B12936;
  }

  .main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box table.rwd-table tbody tr td {
    display: block;
  }

  .main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box table.rwd-table tbody tr td::before {
    display: block;
  }

  .main-wrapper .mainContent.infrastructure-page .infrastructure-tab .table-box table.rwd-table tbody tr td.center {
    text-align: left;
  }
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .publication-content .accordion .accordion-item {
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.125) !important;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .publication-content .accordion .accordion-item .accordion-header button {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  outline: none;
  box-shadow: none;
  border-radius: 0;
  line-height: normal;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .publication-content .accordion .accordion-item .accordion-header button:focus {
  outline: none;
  box-shadow: none;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .publication-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #B12936;
  margin-top: 0px;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .publication-content ul {
  padding-left: 30px;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .publication-content ul li {
  position: relative;
  padding-bottom: 15px;
  color: #333333;
  line-height: normal;
}

.main-wrapper .mainContent.infrastructure-page .infrastructure-tab .publication-content ul li::before {
  font-family: 'FontAwesome';
  content: '\f005';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #333333;
}

.main-wrapper .mainContent.datatable-page .table-box {
  margin-bottom: 50px;
}

.main-wrapper .mainContent.datatable-page .table-box h4 {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 15px;
}

@media (max-width: 766px) {
  .main-wrapper .mainContent.datatable-page .table-box h4 {
    text-align: center;
  }
}

.main-wrapper .mainContent.datatable-page .table-box table.rwd-table {
  overflow: hidden;
}

.main-wrapper .mainContent.datatable-page .table-box table.rwd-table thead {
  background-color: #333333;
}

.main-wrapper .mainContent.datatable-page .table-box table.rwd-table thead tr th {
  vertical-align: middle;
  color: #ffffff;
  text-align: left;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
}

.main-wrapper .mainContent.datatable-page .table-box table.rwd-table td::before {
  content: attr(data-th) ": ";
  font-weight: bold;
  color: #333333;
  width: 100%;
  margin-bottom: .5rem;
  display: none;
  text-transform: capitalize;
}

.main-wrapper .mainContent.datatable-page .table-box table.rwd-table tbody tr:nth-of-type(even) {
  background: #f9f9f9;
}

.main-wrapper .mainContent.datatable-page .table-box table.rwd-table tbody tr td {
  text-transform: capitalize;
  text-align: left;
}

.main-wrapper .mainContent.datatable-page .table-box table.rwd-table tbody tr td span {
  display: block;
}

.main-wrapper .mainContent.datatable-page .table-box table.rwd-table tbody tr td ul {
  padding-left: 30px;
}

.main-wrapper .mainContent.datatable-page .table-box table.rwd-table tbody tr td ul li {
  position: relative;
  padding-bottom: 15px;
  color: #333333;
}

.main-wrapper .mainContent.datatable-page .table-box table.rwd-table tbody tr td ul li::before {
  font-family: 'FontAwesome';
  content: '\f2da';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #B12936;
}

.main-wrapper .mainContent.datatable-page .table-box table.rwd-table tbody tr td.center {
  text-align: center;
}

@media (max-width: 767px) {
  .main-wrapper .mainContent.datatable-page .table-box table.rwd-table thead {
    display: none;
  }

  .main-wrapper .mainContent.datatable-page .table-box table.rwd-table tbody tr {
    border-bottom: 2px solid #B12936;
  }

  .main-wrapper .mainContent.datatable-page .table-box table.rwd-table tbody tr td {
    display: block;
    border: 1px solid #E3E3E3;
  }

  .main-wrapper .mainContent.datatable-page .table-box table.rwd-table tbody tr td::before {
    display: block;
  }

  .main-wrapper .mainContent.datatable-page .table-box table.rwd-table tbody tr td.center {
    text-align: left;
  }
}

.main-wrapper .mainContent.datatable-page .table-box .dataTables_wrapper .dataTables_length {
  margin-bottom: 15px;
}

.main-wrapper .mainContent.datatable-page .table-box .dataTables_wrapper .dataTables_filter {
  margin-bottom: 15px;
}

.main-wrapper .mainContent.datatable-page .table-box .dataTables_wrapper .dataTables_info {
  margin-bottom: 15px;
}

.main-wrapper .mainContent.datatable-page .content-list ul {
  padding-left: 30px;
}

.main-wrapper .mainContent.datatable-page .content-list ul li {
  position: relative;
  padding-bottom: 15px;
  color: #333333;
  line-height: normal;
}

.main-wrapper .mainContent.datatable-page .content-list ul li::before {
  font-family: 'FontAwesome';
  content: '\f005';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #333333;
}

.news-sliding {
  overflow: hidden;
}

.news-sliding .title {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
  color: #141414;
  line-height: inherit;
}

.news-sliding .title span {
  color: #B12936;
}

.news-sliding .list-wrpaaer {
  overflow: hidden;
}

.news-sliding .list-wrpaaer ul li {
  color: #141414;
  border-bottom: 1px dashed #E3E3E3;
  padding: 15px 0;
  line-height: normal;
}

.news-sliding .list-wrpaaer ul li a {
  color: #333333;
  text-decoration: none;
}

.news-sliding .list-wrpaaer ul li:hover a {
  color: #B12936;
}

@media (max-width: 1279px) {
  .header-main header .top-header .top-links ul li {
    font-size: 13px;
    padding: 10px 20px;
  }

  .header-main header .middle-header .header-right .info .contact-link .cont-box {
    padding-right: 40px;
  }

  .header-main header .middle-header .header-right .info .contact-link .cont-box .cont-details h6 {
    font-size: 15px;
  }

  .main-wrapper .home-banner .home-slider .meta-box .content .big-title {
    font-size: 35px;
    line-height: 50px;
  }

  .main-wrapper .mainContent.home-about .register-form {
    width: 400px;
  }

  .main-wrapper .mainContent.home-about .register-form .form-inner .title {
    font-size: 24px;
  }

  .main-wrapper .mainContent.home-news .section-row .news-slider .slider-item .content h6 {
    font-size: 16px;
    line-height: 28px;
  }

  .main-wrapper .mainContent.footer-top .center-txt h5 {
    font-size: 18px;
  }

  .main-wrapper .mainContent.footer .footer-link h4 {
    font-size: 18px;
  }

  .main-wrapper .mainContent.footer .footer-link ul.right-link {
    padding-left: 0;
    width: 100%;
  }

  .main-wrapper .mainContent.complaint-page .right-form {
    padding: 30px 30px;
  }
}

@media (max-width: 991px) {
  .main-wrapper .mainContent.footer .footer-img {
    text-align: center;
  }

  .main-wrapper .mainContent.footer p.footer-cnt,
  .main-wrapper .mainContent.footer p.tel-num {
    text-align: center;
  }

  .main-wrapper .mainContent.footer .box-in {
    flex: 0 0 auto;
    width: 100%;
  }

  .main-wrapper .mainContent.footer .footer-link {
    padding-left: 0;
    text-align: center;
    width: 100%;
  }

  .main-wrapper .mainContent.footer .footer-link h4::before {
    right: 0;
    margin: auto;
  }

  .main-wrapper .mainContent.footer .footer-link ul.ul-link {
    width: 100%;
  }

  .main-wrapper .mainContent.footer .footer-link ul.ul-link li,
  .main-wrapper .mainContent.footer .footer-link ul.ul-link li:hover {
    padding-left: 0;
  }

  .main-wrapper .mainContent.footer .footer-link ul.ul-link li::before,
  .main-wrapper .mainContent.footer .footer-link ul.ul-link li::after {
    display: none;
  }

  .main-wrapper .mainContent.footer .footer-btm-link .copy-right p {
    text-align: center;
    margin-bottom: 30px;
  }

  .main-wrapper .mainContent.footer .footer-btm-link .footer-social ul {
    display: block;
    float: none;
    text-align: center;
  }

  .main-wrapper .mainContent.footer .footer-btm-link .footer-social ul li {
    display: inline-block;
  }

  .main-wrapper .home-banner .home-slider .meta-box .content,
  .main-wrapper .home-banner .home-slider .meta-box .content .small-title {
    text-align: center;
  }

  .explore-button.base-color {
    margin: auto;
  }

  .main-wrapper .home-banner .home-slider .owl-nav {
    top: auto;
    bottom: -20px;
    transform: translate(0);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }

  .main-wrapper .mainContent {
    padding: 50px 0;
  }

  .main-wrapper .mainContent.home-about .register-form {
    position: static;
    margin-top: 50px;
    width: 100%;
  }

  .main-wrapper .mainContent.home-dipartments .left-dipartments-title .inner .explore-button {
    position: static;
    margin-top: 30px;
  }

  .main-wrapper .mainContent.home-dipartments {
    padding-bottom: 0px;
  }

  .main-wrapper .mainContent.departments-inner .departments-tab,
  .main-wrapper .mainContent.mci-compliance .toggling-tab {
    padding-right: 0;
  }

  .main-wrapper .mainContent.home-about .left-about {
    flex: 0 0 auto;
    width: 100%;
  }

  .main-wrapper .mainContent.departments-inner .left-side,
  .main-wrapper .mainContent.mci-compliance .left-side {
    flex: 0 0 auto;
    width: 100%;
  }

  .main-wrapper .mainContent.departments-inner .right-side,
  .main-wrapper .mainContent.mci-compliance .right-side {
    flex: 0 0 auto;
    width: 100%;
  }

  .main-wrapper .mainContent.about-page .inner-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .main-wrapper .mainContent.about-page .vision {
    margin-bottom: 15px;
  }

  .main-wrapper .mainContent.complaint-page .inner-content {
    padding-right: 0;
  }

  .main-wrapper .mainContent.complaint-page .right-form {
    padding: 15px 15px;
  }

  .main-wrapper .mainContent.govt-page .sidebar.has-marign-left {
    margin-left: 0;
  }

  .main-wrapper .page-title .section-content .title {
    font-size: 30px;
  }

  .header-main header .top-header {
    display: none;
  }
}

@media (max-width: 766px) {
  .main-wrapper .mainContent .sidebar .widget ul li {
    height: auto;
  }

  .main-wrapper .mainContent .sidebar .widget ul li .block-inside {
    margin-bottom: 0;
  }
}

/* ==========================================================================
   🏥 EXACT DEPARTMENTS MEGA MENU DROPDOWN (MATCHING DESIGN SCREENSHOT 100%)
   ========================================================================== */
.header-main .horizontal-mainwrapper {
  position: relative !important;
}

/* ==========================================================================
   🏥 EXACT DEPARTMENTS MEGA MENU (Matching Reference Image)
   ========================================================================== */
.header-main .horizontalMenu>.horizontalMenu-list>li.dept-mega-item,
.header-main .horizontalMenu>.horizontalMenu-list>li.msr-mega-item {
  position: static !important;
}

.header-main .horizontalMenu>.horizontalMenu-list>li.dept-mega-item:hover>.dept-megamenu-panel,
.header-main .horizontalMenu>.horizontalMenu-list>li.msr-mega-item:hover>.msr-megamenu-panel,
.dept-megamenu-panel:hover,
.msr-megamenu-panel:hover {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.dept-megamenu-panel,
.msr-megamenu-panel {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
  padding: 24px 35px !important;
  z-index: 999999 !important;
  text-align: left !important;
  box-sizing: border-box !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.dept-mega-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  width: 100% !important;
  padding: 0 !important;
}

.dept-mega-row {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  gap: 45px !important;
  width: 100% !important;
}

.dept-col-prepara {
  flex: 0 0 38% !important;
  max-width: 38% !important;
}

.dept-col-clinical {
  flex: 0 0 58% !important;
  max-width: 58% !important;
}

.dept-mega-heading {
  color: #B12936 !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
  font-family: inherit !important;
  text-align: left !important;
  letter-spacing: -0.2px !important;
  line-height: 1.25 !important;
}

.dept-columns-2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  column-gap: 20px !important;
  text-align: left !important;
}

.dept-columns-3 {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  column-gap: 20px !important;
  text-align: left !important;
}

.dept-column-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 9px !important;
}

.dept-column-list li {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  display: block !important;
}

.dept-column-list li::before {
  display: none !important;
  content: none !important;
}

.dept-column-list li a {
  color: #333333 !important;
  font-size: 13.5px !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  line-height: 1.3 !important;
  transition: color 0.2s ease !important;
  white-space: nowrap !important;
}

.dept-column-list li a .arr {
  color: #666666 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  display: inline-block !important;
  transition: color 0.2s ease !important;
}

.dept-column-list li a:hover {
  color: #B12936 !important;
}

.dept-column-list li a:hover .arr {
  color: #B12936 !important;
}

/* MSR Clause Mega Grid */
.msr-mega-grid-3 {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 22px 35px !important;
  text-align: left !important;
  width: 100% !important;
  padding: 10px 0 !important;
}

.msr-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.dept-mega-link {
  color: #333333 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: color 0.2s ease !important;
  line-height: 26px !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.dept-mega-link:hover {
  color: #B12936 !important;
}

.dept-mega-link .arr {
  color: #666666 !important;
  font-weight: 700 !important;
  font-size: 13px !important;
}

/* Hide standard nested sub-menu if mega menu panel is active */
.header-main .horizontalMenu>.horizontalMenu-list>li.dept-mega-item>ul.sub-menu,
.header-main .horizontalMenu>.horizontalMenu-list>li.msr-mega-item>ul.sub-menu {
  display: none !important;
}

/*# sourceMappingURL=theme-style.css.map */