:root {
  --brand‐primary: #0066cc;
  --text‐dark: #353535;
  --text‐secondary: #555555;
  --bg-navbar: #ffffff;
  --bg-topbar: #e2000f;
  --link-hover-color: #312783;
  --navbar-link-color: #343c5c;
  --btn-hover-color: #e30609;
  --heading-color: #2c2c2c;
  --footer-bg: #383838;
  --text-color: #474646;
}

/* topbar */

.topbar {
  background-color: var(--bg-topbar) !important;
  color: var(--bg-navbar) !important;
  transition: transform 0.4s ease;
  will-change: transform;
}

.topbar.hidden {
  transform: translateY(-100%);
}

.top-contact, .top-socials {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  display: inline-block;
  position: relative;
  line-height: 48px;
  vertical-align: middle;
}

.top-contact li, .top-socials li {
  padding-right: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.top-contact li > i {
  font-size: 15px;
  margin-right: 7px;
}

.top-socials li > i {
  font-size: 15px;
}

.top-contact li > a, .top-socials li > a {
  color: var(--bg-navbar);
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}

.top-contact li > a:hover, .top-socials li > a:hover {
  color: var(--link-hover-color);
}

/* navbar */

.main-navbar {
  height: 110px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

@media (max-width: 767.98px) {
  .main-navbar {
    position: relative;
  }
}

@media (min-width: 767.98px) {
  .main-navbar.shrink {
    height: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}

@media (min-width: 1200px) {
  .main-navbar {
    z-index: 12;
  }
}

.main-navbar-logo {
  max-height: 80px;
  width: auto;
  transition: max-height 0.4s ease;
}

@media (min-width: 767.98px) {
  .main-navbar.shrink .main-navbar-logo {
    max-height: 55px;
  }
}

.main-navbar-img {
  height: auto;
}

.navbar-nav .nav-link {
  position: relative;
  transition: all 0.3s ease;
  line-height: 110px !important;
}

@media (min-width: 1200px) {
  .navbar-nav > li {
    margin: 0;
    display: inline-block;
    position: relative;
    vertical-align: top;
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li {
    height: 110px;
    line-height: 110px !important;
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li:hover {
    opacity: 1;
  }
}

.navbar-nav > li:hover > a, .navbar-nav > .nav-item > .nav-link.active {
  color: var(--link-hover-color) !important;
}

@media (min-width: 1200px) {
  .navbar-nav > li > a {
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > a {
    display: inline-block;
    margin: 0px;
    padding: 0px 13px 0px 13px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    height: 110px;
    line-height: 110px !important;
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > a {
    display: inline-block;
    margin: 0px;
    padding: 0px 13px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    height: 110px;
    line-height: 110px !important;
  }
}

.navbar-nav > li > a {
  font-family: 'Saira Semi Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--navbar-link-color);
  letter-spacing: 0.3px;
}

@media (min-width: 1200px) {
  .navbar-nav > li > a:before {
    top: -1px;
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    left: 5px;
    right: 5px;
    top: 0px;
    margin: auto;
    background-color: var(--link-hover-color);
    height: 3px;
    transform-origin: right center;
    -webkit-transform-origin: right center;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    transition: transform .55s cubic-bezier(.37, .31, .2, .85);
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > a:hover:before, .navbar-nav > li > a.active:before {
    transform-origin: left center;
    -webkit-transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1, 1);
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li i {
    left: 1px;
    position: relative;
    font-size: 13px;
    transition: all 500ms ease;
    display: inline-block;
    top: 2px;
    color: rgba(52, 60, 92, 0.5);
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li:nth-child(1) {
    background-position: 0% 0%;
    background-size: auto;
    background-repeat: repeat;
    background-attachment: scroll;
  }
}

/* dropdownmenu */

@media (min-width: 1200px) {
  .navbar-nav > li:hover > .dropdown-menu, .dropdown-item.dropdown-submenu:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    top: 100%;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > .dropdown-menu {
    top: auto;
    margin-top: -3px;
    border-top: 3px solid #312783;
    border-radius: 0px;
    background-color: #ffffff;
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > .dropdown-menu, .dropdown-item.dropdown-submenu > .dropdown-menu {
    box-shadow: 0 3px 25px 0px rgba(43, 52, 59, 0.10), 0 0 0 rgba(43, 52, 59, 0.10) inset;
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > .dropdown-menu, .dropdown-item.dropdown-submenu > .dropdown-menu {
    text-align: left;
    position: absolute;
    visibility: hidden;
    display: block;
    opacity: 0;
    line-height: 14px;
    margin: 0;
    list-style: none;
    left: 0;
    border-radius: 0px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-clip: padding-box;
    transition: all .5s ease;
    z-index: 99;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -webkit-box-shadow: 0px 4px 4px 1px rgb(0 0 0 / 20%);
    box-shadow: 0px 4px 4px 1px rgb(0 0 0 / 20%);
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    padding: 7px 0;
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > .dropdown-menu, .dropdown-item.dropdown-submenu > .dropdown-menu {
    width: 250px;
    padding: 0px;
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > .dropdown-menu, .dropdown-item.dropdown-submenu > .dropdown-menu {
    position: relative;
    list-style: none;
    padding: 0 25px;
  }
}

/* dropdown items */

@media (min-width: 1200px) {
  .navbar-nav > li > .dropdown-menu > .dropdown-item, .dropdown-item.dropdown-submenu > .dropdown-menu > li {
    background: #ffffff;
    border-bottom: 1px solid transparent;
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > .dropdown-menu > .dropdown-item {
    position: relative;
    list-style: none;
    padding: 0 25px;
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > .dropdown-menu > .dropdown-item, .dropdown-item.dropdown-submenu > .dropdown-menu > li {
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    border-bottom: 1px solid rgb(0, 0, 0, .09);
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > .dropdown-menu > .dropdown-item:hover, .dropdown-item.dropdown-submenu > .dropdown-menu > li:hover, .navbar-nav > li > .dropdown-menu > .dropdown-item.active, .dropdown-item.dropdown-submenu > .dropdown-menu > .dropdown-item.active {
    color: var(--link-hover-color) !important;
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > .dropdown-menu > .dropdown-item, .dropdown-item.dropdown-submenu > .dropdown-menu > li {
    margin: 0;
    display: block;
    padding: 15px 0px;
    position: relative;
  }
}

.navbar-nav > li > .dropdown-menu > .dropdown-item, .dropdown-item.dropdown-submenu > .dropdown-menu > li > a {
  font-family: 'Saira Semi Condensed', sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 14px;
  color: var(--text‐dark);
  line-height: 18px;
}

@media (min-width: 1200px) {
  .navbar-nav > li > .dropdown-menu > .dropdown-item, .dropdown-item.dropdown-submenu > .dropdown-menu > li {
    border-bottom: 1px solid rgb(0,0,0,.09);
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > .dropdown-menu > .dropdown-item:last-child, .dropdown-submenu > ul > li:last-child {
    border-bottom: none !important;
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > .dropdown-menu > .dropdown-item:not(:last-child):before, .dropdown-submenu > ul > li:not(:last-child):before {
    background-color: var(--link-hover-color);
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > .dropdown-menu > .dropdown-item:before, .dropdown-submenu > ul > li:before {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    bottom: -1px;
    left: 0;
    right: 0;
    transform: scaleX(0);
    margin-top: -1px;
  }
}

@media (min-width: 1200px) {
  .navbar-nav > li > .dropdown-menu > .dropdown-item:hover:before, .dropdown-submenu > ul > li:hover:before, .navbar-nav > li > .dropdown-menu > .dropdown-item.active {
    transform: scaleX(1);
    transform-origin: left;
    -webkit-transition: .5s all ease;
    -khtml-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -ms-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
  }
}

/* dropdown-item submenu */

.dropdown-item.dropdown-submenu > .dropdown-menu {
  position: absolute;
}

@media (min-width: 1200px) {
  .dropdown-item.dropdown-submenu > .dropdown-menu {
    left: 100%;
    margin-top: -50px;
    margin-left: 25px;
  }
}

@media (min-width: 1200px) {
  .dropdown-item.dropdown-submenu > .dropdown-menu {
    border-left: 0;
    background-color: #ffffff;
  }
}

@media (min-width: 1200px) {
  .dropdown-item.dropdown-submenu > .dropdown-menu > li > a {
    text-decoration: none;
  }
}

/* navbar toggler */

.custom-toggler {
  width: 30px;
  height: 24px;
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  cursor: pointer;
  z-index: 1051;
}

.custom-toggler span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.4s ease;
}

.custom-toggler:focus {
  box-shadow: none;
}

/* Animate into X when offcanvas is shown */

.offcanvas.show ~ .navbar .custom-toggler span:nth-child(1), .custom-toggler.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.offcanvas.show ~ .navbar .custom-toggler span:nth-child(2), .custom-toggler.active span:nth-child(2) {
  opacity: 0;
}

.offcanvas.show ~ .navbar .custom-toggler span:nth-child(3), .custom-toggler.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Optional positioning */

.navbar .custom-toggler {
  margin-left: auto;
}

@media (min-width: 1200px) {
  .custom-toggler {
    display: none;
  }
}

/* When navbar shrinks (scrolled), adjust height dynamically */

.main-navbar.shrink + #mobile-menu {
  top: 80px;
  height: calc(100vh - 80px);
}

/* main */

main {
  z-index: 1;
  background-color: var(--bs-border-color-translucent);
}

/* hero carousel */

#hero-carousel {
  height: 315px;
  max-height: 420px;
}

@media (min-width: 768px) {
  #hero-carousel {
    height: 444px;
    max-height: 444px;
  }
}

@media (min-width: 992px) {
  #hero-carousel {
    height: 800px;
    max-height: 800px;
  }
}

@media (max-width: 991.98px) {
  #hero-carousel .inner-wrapper {
    text-align: center;
  }
}

#hero-carousel .inner-wrapper {
  position: relative;
  padding: 5rem 2.5rem;
  color: #fff;
}

@media (max-width: 360px) {
  #hero-carousel .inner-wrapper::before, #hero-carousel .inner-wrapper::after, #hero-carousel .inner-wrapper .bottom-border {
    content: none !important;
    display: none !important;
  }
}

/* LEFT border */

@media (min-width: 991.98px) {
  #hero-carousel .inner-wrapper::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--link-hover-color);
  }
}

/* TOP border */

@media (min-width: 991.98px) {
  #hero-carousel .inner-wrapper::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 128px;
    height: 4px;
    background-color: var(--link-hover-color);
  }
}

/* BOTTOM border */

@media (min-width: 991.98px) {
  #hero-carousel .inner-wrapper .bottom-border {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 128px;
    height: 4px;
    background-color: var(--link-hover-color);
  }
}

#hero-carousel .inner-wrapper h5 {
  font-family: 'Noto Serif Gurmukhi', serif;
  text-transform: uppercase;
  color: var(--bs-light);
  text-align: left;
  line-height: 25px;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 20px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #hero-carousel .inner-wrapper h5 {
    line-height: 18px;
    letter-spacing: 1px;
    font-size: 16px;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  #hero-carousel .inner-wrapper h5 {
    line-height: 14px;
    letter-spacing: 0;
    font-size: 11px;
    text-align: center;
  }
}

#hero-carousel .inner-wrapper h2 {
  font-family: 'Source Sans Pro';
  text-transform: capitalize;
  text-align: left;
  line-height: 84px;
  letter-spacing: 0px;
  font-weight: 700;
  font-size: 68px;
  margin-bottom: -10px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #hero-carousel .inner-wrapper h2 {
    line-height: 69px;
    letter-spacing: 0px;
    font-size: 59px;
    margin-bottom: -10px;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  #hero-carousel .inner-wrapper h2 {
    line-height: 28px;
    letter-spacing: 0px;
    font-size: 17px;
    margin-bottom: -10px;
    text-align: center;
  }
}

#hero-carousel .inner-wrapper .btn-hero-primary {
  font-family: 'Noto Serif Gurmukhi';
  text-transform: uppercase;
  color: var(--bs-light);
  line-height: 14px;
  letter-spacing: 0px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgb(255, 255, 255);
  padding: 15px 38px;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0);
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #hero-carousel .inner-wrapper .btn-hero-primary {
    line-height: 8px;
    font-size: 14px;
    padding: 15px 24px;
  }
}

@media (max-width: 767.98px) {
  #hero-carousel .inner-wrapper .btn-hero-primary {
    line-height: 5px;
    font-size: 11px;
    padding: 11px 15px;
  }
}

#hero-carousel .inner-wrapper .btn-hero-primary:hover {
  background-color: var(--btn-hover-color);
  border-color: var(--btn-hover-color);
}

#hero-carousel .inner-wrapper .btn-hero-secondary {
  background-color: var(--link-hover-color);
  font-family: 'Noto Serif Gurmukhi';
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  line-height: 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--link-hover-color);
  padding: 15px 38px;
  border-radius: 50px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #hero-carousel .inner-wrapper .btn-hero-secondary {
    line-height: 8px;
    font-size: 14px;
    padding: 15px 24px;
  }
}

@media (max-width: 767.98px) {
  #hero-carousel .inner-wrapper .btn-hero-secondary {
    line-height: 5px;
    font-size: 11px;
    padding: 11px 15px;
  }
}

#hero-carousel .inner-wrapper .btn-hero-secondary:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(227, 6, 19);
  text-align: center;
  border: 1px solid rgb(255, 255, 255);
}

#hero-carousel .image-overlay-wrapper {
  position: absolute;
  z-index: 0;
  color: rgb(255, 255, 255);
  transform: translateX(-50%);
}

@media (min-width: 1400px) {
  #hero-carousel .image-overlay-wrapper {
    left: 77%;
    top: -35%;
    width: 42%;
  }
}

@media (min-width: 1200px) {
  #hero-carousel .image-overlay-wrapper {
    left: 80%;
    top: -30%;
    width: 42%;
  }
}

#hero-carousel .image-overlay-wrapper img {
  position: relative;
  height: 100%;
  width: 100%;
  background: transparent;
}

/* departments */

#btea-departments {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

#btea-departments:before {
  background-color: transparent !important;
  position: absolute;
  height: 100%;
  width: 100%;
}

#btea-departments .bg-overlay {
  background-image: url(../img/btea-bg-overlay.jpg?h=e0b98e8049d8e98a5c5bce3d204b0cda);
  background-position: top center;
  background-repeat: repeat;
  opacity: 1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#btea-departments .content {
  padding: 5rem 0rem;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  background-color: transparent !important;
}

@media (max-width: 991.98px) {
  #btea-departments .content h2 {
    font-size: 25px !important;
  }
}

#btea-departments .content h2 {
  color: var(--heading-color);
  font-family: 'Montserrat';
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 9px;
  line-height: 53px;
}

#btea-departments .content-header {
  position: relative;
}

#btea-departments .content-header:after {
  content: "";
  right: 65px;
  height: 100%;
  position: absolute;
  top: 0;
  width: 1px;
  border-right-width: 1px;
  border-right-color: rgba(0, 0, 0, .08);
  border-right-style: solid;
  z-index: 3;
}

#btea-departments .content ul {
  margin: 16px 0;
}

@media (max-width: 991.98px) {
  #btea-departments .content ul > li {
    font-size: 17px !important;
  }
}

#btea-departments .content ul > li {
  color: #383838;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Montserrat';
  line-height: 27px;
}

#btea-departments .dept-card {
  border-radius: 0;
  border: 0;
  transition: all 0.3s ease 0s;
  padding: 40px 30px 37px;
  text-align: center;
}

#btea-departments .dept-card:hover {
  background-color: var(--link-hover-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#btea-departments .dept-card img {
  margin-bottom: 15px;
  width: 55px !important;
  height: 55px !important;
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

#btea-departments .dept-card:hover img {
  opacity: 0.85;
  transform: scale(1.05);
  filter: brightness(0) invert(1);
}

#btea-departments .dept-card a {
  font-size: 21px;
  line-height: 30px;
  position: relative;
  margin-bottom: 0;
  font-family: 'Montserrat';
  font-weight: 400;
  color: var(--heading-color);
  text-decoration: none;
}

#btea-departments .dept-card:hover a {
  color: var(--bg-navbar);
}

/* about us */

#btea-about {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-navbar);
}

#btea-about:before {
  background-color: transparent !important;
  position: absolute;
  height: 100%;
  width: 100%;
}

#btea-about .bg-overlay {
  background-image: url(../img/btea-bg-overlay-map.png?h=35e886d3e04efed4703f8f2a5467c363);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.77;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#btea-about .content {
  padding: 100px 0px 60px 0px;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  background-color: transparent !important;
}

#btea-about .content-header {
  position: relative;
}

#btea-about .content-header:before {
  display: block;
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--link-hover-color);
}

#btea-about .content-header h6, #btea-about .content-header h2 {
  padding-left: 30px;
}

#btea-about .content-header h6 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--link-hover-color);
  margin-bottom: 5px;
}

#btea-about .content-header h2 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 53px;
  color: #232323;
}

#btea-about .content-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  margin: 3rem 0 2rem 0;
}

#btea-about .content p {
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  letter-spacing: 0.3px;
  color: var(--text‐secondary);
}

@media (min-width: 768px) {
  #btea-about .content .bottom-row {
    height: 240px;
    margin-top: 5rem;
  }
}

@media (max-width: 991.98px) {
  #btea-about .content .bottom-row {
    height: auto;
    margin-top: 5rem;
    flex-direction: column;
  }
}

#btea-about .content .bottom-row .first-col {
  padding-right: 2rem;
  background-color: var(--link-hover-color);
  width: 43.55%;
}

@media (max-width: 991.98px) {
  #btea-about .content .bottom-row .first-col {
    width: 100%;
    height: 300px;
    padding-bottom: 20px;
  }
}

#btea-about .content .bottom-row .last-col {
  margin-left: 0.75rem;
}

@media (max-width: 991.98px) {
  #btea-about .content .bottom-row .last-col {
    justify-content: center;
    margin-left: auto;
  }
}

@media (max-width: 991.98px) {
  #btea-about .content .bottom-row .last-col .btea-bina {
    /*margin-right: auto !important;*/
    margin-top: 80px;
  }
}

#btea-about .content .bottom-row .last-col .btea-bina {
  margin-right: 1.5rem;
}

#btea-about .content .bottom-row .last-col i {
  font-weight: 400;
  font-size: 40px;
  color: var(--link-hover-color);
  margin-right: 0.75rem;
  margin-bottom: 0.5rem;
}

#btea-about .content .bottom-row .last-col h5 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 30px;
  letter-spacing: 0.5px;
  color: var(--text‐dark);
  margin-bottom: 0.75rem;
}

#btea-about .content .bottom-row .first-col h2 {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 38px;
  line-height: 1px;
  color: #fff;
  letter-spacing: 2.4px;
  word-spacing: 3px;
  margin: 2rem 0 1.5rem 0;
}

@media (max-width: 991.98px) {
  #btea-about .content .bottom-row .first-col h2 {
    line-height: 1.1em;
    margin-bottom: 1px;
    text-align: right;
  }
}

#btea-about .content .bottom-row .first-col h6 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
  #btea-about .content .bottom-row .first-col h6 {
    font-size: 24px;
    margin-bottom: 7px;
  }
}

/* features */

#btea-features {
  background-color: #ffffff;
}

#btea-features .content {
  padding: 2.5rem 0;
}

#btea-features .content .first-row {
  margin-bottom: 150px;
}

#btea-features .content .feature-card {
  padding: 0;
  text-align: center;
  border: 0;
}

#btea-features .content .feature-card img {
  border-radius: 5px !important;
  border: 1px solid transparent;
}

#btea-features .content .feature-card h4 {
  margin: 1rem 0;
  color: #292929EB;
  font-family: 'Montserrat';
  font-size: 22px;
  font-weight: 500;
}

/* footer */

footer {
  background-color: var(--footer-bg);
  color: var(--bg-navbar);
}

footer .container {
  padding: 5rem 0 0.5rem 0;
}

footer .container > .row:first-child {
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

@media (min-width: 991.98px) {
  footer .container > .row:first-child > div {
    padding: 40px 15px 20px !important;
  }
}

footer .container > .row:first-child > div:first-child {
  border-right: 1px solid rgba(255,255,255,.10);
}

footer .container > .row:first-child > div:last-child {
  border-left: 1px solid rgba(255,255,255,.10);
}

@media (max-width: 767.98px) {
  .footer-icon-box {
    margin-top: 0 !important;
    margin-bottom: 3px !important;
  }
}

.footer-icon-box {
  vertical-align: top;
  margin-right: 18px;
  width: 50px;
  margin-top: 5px;
  margin-bottom: 15px;
  background-color: var(--link-hover-color);
  border-radius: 6px;
}

.footer-icon-box i {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 30px;
}

footer .container > .row:last-child {
  padding: 20px 0 0 0;
}

@media (max-width: 767.98px) {
  footer h5 {
    font-size: 18px !important;
  }
}

footer h5 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

footer h6 {
  font-family: "Montserrat", Tahoma, Geneva, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,.65);
}

footer a {
  text-decoration: none;
  color: var(--bg-navbar);
  font-weight: 500;
}

/* scroll to top */

#scrollToTop {
  display: inline;
  background: var(--link-hover-color);
  font-weight: 900;
  color: var(--bg-navbar);
  position: fixed;
  display: none;
  right: 34px;
  bottom: 34px;
  z-index: 999;
  height: 0;
  width: 0;
  font-size: 0;
  line-height: 45px;
  text-align: center;
  padding-top: 0;
  border-radius: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#scrollToTop.shown {
  font-size: 23px;
  height: 43px;
  width: 43px;
}

#scrollToTop.shown:before {
  position: absolute;
  top: -6px;
  left: -6px;
  content: "";
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  border: solid;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  transition: all .7s ease-out;
  border-color: var(--link-hover-color);
}

#scrollToTop.shown:after {
  position: absolute;
  bottom: -6px;
  right: -6px;
  content: "";
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  border: solid;
  border-width: 1px 0 0 1px;
  display: inline-block;
  padding: 3px;
  -webkit-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  transition: all .7s ease-out;
  border-color: var(--link-hover-color);
}

#scrollToTop.shown:hover:before {
  left: 100%;
  transform: rotate(90deg);
}

#scrollToTop.shown:hover:after {
  right: 100%;
  transform: rotate(90deg);
}

/* offcanvas menu */

.offcanvas.custom-offcanvas {
  transform: none !important;
  top: 110px !important;
  max-height: 10000px;
  background: transparent;
  height: calc(100vh - 110px);
}

.navbar + .offcanvas.custom-offcanvas {
  position: absolute;
  left: 0;
  width: 100%;
  box-shadow: rgba(0,0,0,0.12) 3px 3px 15px;
  padding: 0 20px 20px 20px;
}

.offcanvas-backdrop.show {
  opacity: 0;
}

.custom-offcanvas {
  z-index: 1040 !important;
}

.custom-offcanvas > .offcanvas-body {
  background-color: var(--bg-navbar);
  border-top: 3px solid #312783;
  margin-top: -3px;
}

.offcanvas {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.offcanvas::-webkit-scrollbar {
  display: none;
}

#mobile-nav {
  overflow: hidden;
}

#mobile-nav > .nav-item:not(:last-child) {
  border-bottom: 1px solid rgba( 53,53,53,0.15);
}

#mobile-nav > .nav-item > a {
  position: relative;
  text-align: left;
  color: rgba( 53,53,53,1);
  padding: 15px 0;
  line-height: 18px;
  font-family: 'Saira Semi Condensed';
  font-weight: 600;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

#mobile-nav .submenu {
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

#mobile-nav .submenu {
  display: none;
  padding-left: 15px;
}

#mobile-nav .submenu.show {
  display: block;
}

#mobile-nav .submenu > li:not(:last-child) {
  border-bottom: 1px solid rgba( 53,53,53,0.15);
}

#mobile-nav .submenu > li > a {
  text-decoration: none;
  padding: 15px 15px 15px 0px;
  line-height: 18px;
  font-family: 'Saira Semi Condensed';
  font-weight: 400;
  font-size: 14px;
  color: var(--text‐dark);
  text-align: left;
}

#mobile-nav .submenu > li > a:hover {
  color: var(--link-hover-color);
}

#mobile-nav .submenu > .has-submenu > .submenu > .nav-item > .nav-link {
  text-align: left;
}

#mobile-nav .submenu > .has-submenu > a > i {
  margin-left: 15px;
}

/* page header */

.page-header {
  background-color: var(--footer-bg);
  margin-bottom: 0;
  height: 200px;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}

.page-header h1 {
  color: var(--bg-navbar);
  font-weight: 400;
  font-family: 'Source Sans Pro';
  font-size: 40px;
  line-height: 50px;
  text-align: center;
  margin-bottom: 0;
}

/* page content */

@media (max-width: 767.98px) {
  .page-content {
    padding: 0 20px;
  }
}

.page-content {
  height: auto;
  min-height: 300px;
  background-color: var(--bg-navbar);
}

.content-title {
  padding-top: 80px;
}

.content-title h2 {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 38px;
  margin-bottom: 17px;
  color: var(--heading-color);
}

.content-title h4 {
  font-family: 'Montserrat';
  font-size: 29px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--link-hover-color);
  padding-left: 47px;
  margin-bottom: 5px;
}

.content-title h4:before {
  background-color: var(--link-hover-color);
  display: block;
  content: "";
  position: absolute;
  width: 36px;
  height: 1px;
  left: 0;
  top: 50%;
}

.content {
  padding: 50px 0;
}

.content h2 {
  color: var(--btn-hover-color);
  font-family: 'Poppins';
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -0.5px;
  text-align: center;
}

.content p, .content ol > li, .content ul > li {
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0.3px;
  color: var(--text-color);
  margin-bottom: 25px;
}

.content-spacer {
  height: 50px;
}

/* contact boxes */

.contact-box {
  position: relative;
  padding: 10px;
}

.contact-box:before {
  background: transparent;
}

.contact-box:before {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: "";
  display: block;
  z-index: 1;
}

.contact-box .wrapper {
  width: 100%;
}

.contact-box .wrapper .inner {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  position: relative;
  z-index: 1;
}

.contact-box .wrapper .inner .icon-box {
  margin-bottom: 15px;
  text-align: center;
}

.contact-box .wrapper .inner .icon-box .icon-box-inner {
  padding-bottom: 33px;
  -webkit-box-shadow: 0 0 7px 0 rgba(43, 52, 59, .08);
  -moz-box-shadow: 0 0 7px 0 rgba(43,52,59,.08);
  box-shadow: 0 0 7px 0 rgba(43, 52, 59, .08);
}

.icon-div {
  margin-bottom: 15px;
}

.icon-div-inner {
  background-color: var(--link-hover-color);
}

.icon-div-inner {
  position: relative;
  height: 60px;
  width: 60px;
  display: block;
  margin: 0 auto;
  line-height: 60px;
}

.icon-div-inner:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 60px;
  border-width: 0 13px 12px 0;
  border-style: solid;
  border-color: var(--link-hover-color);
  border-right-color: transparent !important;
  border-left-color: transparent !important;
  display: block;
  transition: all .4s;
  opacity: .7;
  line-height: 60px;
}

.icon-div-inner i {
  color: var(--bg-navbar);
  font-size: 30px;
  transition: all 500ms ease;
}

.icon-div-inner:after {
  position: absolute;
  content: "";
  right: 0;
  height: 11px;
  width: 100%;
  top: -11px;
  transition: all .5s;
  background-color: var(--link-hover-color);
  transform: scale(1, 1.2);
  line-height: 60px;
}

.icon-box:hover .icon-div-inner i {
  transform: rotateY(180deg);
}

.icon-box .icon-box-inner:after {
  border-bottom-color: #312783 !important;
  transform: scaleX(0);
  transition: transform 800ms ease-in-out;
  position: absolute;
  content: '';
  border-bottom: 5px solid;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
}

.icon-box:hover .icon-box-inner:after {
  transform: scaleX(1);
}

.icon-heading {
  padding-top: 10px;
}

.icon-heading h2 {
  margin-bottom: 6px;
  font-size: 21px;
  line-height: 30px;
  font-family: 'Montserrat';
  position: relative;
  font-weight: 400;
  color: var(--text-color);
}

.icon-heading h2 > a {
  text-decoration: none;
  color: var(--text-color);
}

.icon-heading h6 {
  font-family: 'Montserrat';
  font-weight: 400;
  margin-bottom: 49px;
  font-size: 21px;
  line-height: 30px;
  color: var(--text-color);
}

.social-media-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 10px 0;
}

.social-media-box .social-icon {
  border-radius: 10%;
  padding: 10px 12px;
  font-size: 25px;
  line-height: 25px;
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.social-media-box .social-icon i {
  color: var(--bg-navbar);
  position: relative;
}

.social-media-box .social-icon:last-child {
  margin: 10%;
}

.social-media-box span {
  margin: 0 3px;
}

.social-icon:hover {
  opacity: .9;
  color: #fff;
}

