@import url(https://fonts.googleapis.com/css?family=Berkshire+Swash:regular);
@import url(https://fonts.googleapis.com/css?family=Mukta:200,300,regular,500,600,700,800);
:root {
  --primary-color: #DF2508;
  --secondary-color: #0D429A;
  --background-color: #F0F0F0;
}

@-webkit-keyframes stickyHeaderTransition {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes stickyHeaderTransition {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
:root {
  --primary-color: #DF2508;
  --secondary-color: #0D429A;
  --background-color: #F0F0F0;
}

@-webkit-keyframes stickyHeaderTransition {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes stickyHeaderTransition {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes stickyHeaderTransition {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes stickyHeaderTransition {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes topBottomAnimation {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes topBottomAnimation {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}
@-webkit-keyframes scalingBtnAnimation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.7;
  }
}
@keyframes scalingBtnAnimation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.7;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Mukta", sans-serif;
}

main {
  flex-grow: 1;
}

a {
  text-decoration: none;
  color: white;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0px;
  font-weight: 600;
  line-height: 1.5;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
  margin-bottom: 0 !important;
}

ul li {
  margin: 0;
  list-style: none;
  padding: 0;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

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

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

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

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

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

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

.padding__bottom {
  padding-bottom: 4rem;
}

.custom-container {
  max-width: 1536px;
  margin: auto;
}
@media (max-width: 1720px) {
  .custom-container {
    max-width: 95%;
  }
}

.section__titles {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section__titles .title {
  font-size: 36px;
  color: #000;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.5rem;
}
.section__titles .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 6px;
  border-radius: 50px;
  background: var(--primary-color);
}
.section__titles .title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 25%;
  height: 6px;
  border-radius: 50px;
  background: var(--secondary-color);
}
.section__titles .view__all {
  min-width: 2.5rem;
  height: 2.5rem;
  background: var(--secondary-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.section__titles .view__all::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  opacity: 0;
  border-radius: 50px;
  background: var(--primary-color);
  transition: all 300ms ease-in-out;
}
.section__titles .view__all:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.section__titles .view__all svg {
  display: block;
  color: white;
  position: relative;
}

.ending__section {
  position: relative;
  display: flex;
  justify-content: center;
}
.ending__section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50px;
}
.ending__section::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50px;
}

.light__background {
  background: var(--background-color);
}

.dark__background {
  background: var(--secondary-color);
}
.dark__background .title {
  color: white;
}
.dark__background .title::after {
  background: white;
}
.dark__background .ending__section::after {
  background: white;
}
.dark__background .view__all {
  background: white;
}
.dark__background .view__all svg {
  color: var(--secondary-color);
}
.dark__background .news__grid .news__grid-card .card__title,
.dark__background .news__grid .news__grid-card .card__desc {
  color: white;
}
.dark__background .news__grid .news__grid-card .card__title a,
.dark__background .news__grid .news__grid-card .card__desc a {
  color: white;
}

@-webkit-keyframes stickyHeaderTransition {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes stickyHeaderTransition {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes topBottomAnimation {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes topBottomAnimation {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}
@-webkit-keyframes scalingBtnAnimation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.7;
  }
}
@keyframes scalingBtnAnimation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.7;
  }
}
.header {
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(50px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 1.5rem 0;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .header__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .header__nav {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }
}
.header__nav .header__nav-logo {
  max-width: 250px;
}
@media (max-width: 992px) {
  .header__nav .header__nav-logo {
    grid-column: 2/3;
    grid-row: 1;
    display: grid;
    justify-self: center;
  }
}
@media (max-width: 600px) {
  .header__nav .header__nav-logo {
    grid-column: 1/3;
    grid-row: 1;
    display: grid;
    justify-self: center;
    max-width: 250px;
  }
}
.header__nav .header__nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__nav .hamburger__icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}
@media (max-width: 992px) {
  .header__nav .hamburger__icon {
    display: flex;
    grid-column: 1/2;
    grid-row: 1;
  }
}
@media (max-width: 600px) {
  .header__nav .hamburger__icon {
    grid-column: 1/2;
    grid-row: 2;
  }
}
.header__nav .hamburger__icon.active .bar {
  background: transparent;
}
.header__nav .hamburger__icon.active .bar::before {
  transform: rotate(45deg);
  top: 0;
  transition: top 0.2s ease-in-out, transform 0.4s ease-in-out 0.2s;
}
.header__nav .hamburger__icon.active .bar::after {
  transform: rotate(-45deg);
  top: 0;
  transition: top 0.2s ease-in-out, transform 0.4s ease-in-out 0.2s;
}
.header__nav .hamburger__icon .bar {
  width: 1.3rem;
  height: 0.1rem;
  background: #fff;
  position: relative;
  transition: all 300ms ease-in-out;
  transition-delay: 100ms;
}
.header__nav .hamburger__icon .bar::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 1.3rem;
  height: 0.1rem;
  background: #fff;
  transition: top 0.2s ease-in-out 0.4s, transform 0.4s ease-in-out;
}
.header__nav .hamburger__icon .bar::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 1.3rem;
  height: 0.1rem;
  background: #fff;
  transition: top 0.2s ease-in-out 0.4s, transform 0.4s ease-in-out;
}
.header__nav-menu {
  display: flex;
  align-items: center;
  grid-gap: 2rem;
}
@media (max-width: 1336px) {
  .header__nav-menu {
    grid-gap: 1rem;
  }
}
@media (max-width: 992px) {
  .header__nav-menu {
    display: none;
  }
}
.header__nav-menu li a {
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 300;
  color: white;
  transition: all 300ms ease-in-out;
}
@media (max-width: 1280px) {
  .header__nav-menu li a {
    font-size: 18px;
  }
}
.header__nav-menu li a:hover {
  opacity: 0.7;
}
.header__nav-social {
  display: flex;
  align-items: center;
  grid-gap: 2rem;
}
@media (max-width: 1336px) {
  .header__nav-social {
    grid-gap: 1rem;
  }
}
@media (max-width: 992px) {
  .header__nav-social {
    display: flex;
    grid-column: 3/4;
    grid-row: 1;
    display: flex;
    justify-content: flex-end;
  }
}
@media (max-width: 600px) {
  .header__nav-social {
    grid-column: 2/3;
    grid-row: 2;
  }
}
.header__nav-social li a {
  background: rgba(255, 255, 255, 0.2);
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 300;
  transition: all 300ms ease-in-out;
}
@media (max-width: 1280px) {
  .header__nav-social li a {
    min-width: 2rem;
    height: 2rem;
  }
}
.header__nav-social li a:hover {
  background: var(--secondary-color);
}
.header__nav-social li a svg {
  font-size: 16px;
  color: white;
}
.header .mobile__nav {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: var(--secondary-color);
  backdrop-filter: blur(50px);
  z-index: 50;
  padding: 1rem;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 500ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
@media (max-width: 500px) {
  .header .mobile__nav {
    min-width: 100%;
  }
}
.header .mobile__nav.active {
  opacity: 1;
  transform: scaleX(1);
}
.header .mobile__nav-close {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  outline: none;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.header .mobile__nav-close:hover {
  transform: scale(1.1);
  background: var(--primary-color);
}
.header .mobile__nav-close svg {
  color: white;
  font-size: 16px;
  display: block;
}
.header .mobile__nav-logo {
  max-width: 250px;
}
.header .mobile__nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header .mobile__nav-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  grid-gap: 2rem;
  margin-top: 2rem;
}
.header .mobile__nav-menu li a {
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 300;
  color: white;
  transition: all 300ms ease-in-out;
}
@media (max-width: 1280px) {
  .header .mobile__nav-menu li a {
    font-size: 18px;
  }
}
.header .mobile__nav-menu li a:hover {
  opacity: 0.7;
}
.header .mobile__nav-social {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
}
@media (max-width: 1336px) {
  .header .mobile__nav-social {
    grid-gap: 1rem;
  }
}
.header .mobile__nav-social li a {
  background: rgba(255, 255, 255, 0.2);
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 300;
  transition: all 300ms ease-in-out;
}
@media (max-width: 1280px) {
  .header .mobile__nav-social li a {
    min-width: 2rem;
    height: 2rem;
  }
}
.header .mobile__nav-social li a:hover {
  background: var(--primary-color);
}
.header .mobile__nav-social li a svg {
  font-size: 16px;
  color: white;
}

.footer {
  padding: 4rem 0;
  background: var(--secondary-color);
}
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 2rem;
}
.footer__nav .footer__nav-logo {
  max-width: 250px;
}
.footer__nav .footer__nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .footer__nav-menu {
    grid-gap: 1rem;
  }
}
.footer__nav-menu li a {
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 300;
  color: white;
  transition: all 300ms ease-in-out;
}
.footer__nav-menu li a:hover {
  opacity: 0.7;
}

.testimonial__grid {
  padding: 4rem 0;
  display: flex;
  align-items: center;
  grid-gap: 5rem;
}
@media (max-width: 1024px) {
  .testimonial__grid {
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .testimonial__grid {
    flex-direction: column;
    grid-gap: 1rem;
  }
}
.testimonial__grid .testimonial__img {
  flex: 1;
  width: 100%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .testimonial__grid .testimonial__img {
    height: 450px;
  }
}
@media (max-width: 1024px) {
  .testimonial__grid .testimonial__img {
    height: 350px;
  }
}
@media (max-width: 850px) {
  .testimonial__grid .testimonial__img {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .testimonial__grid .testimonial__img {
    max-width: 300px;
    width: unset;
    height: 300px;
    flex: unset;
  }
}
.testimonial__grid .testimonial__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial__grid .testimonial__details {
  flex: 2;
}
@media (max-width: 768px) {
  .testimonial__grid .testimonial__details {
    flex: unset;
  }
}
.testimonial__grid .testimonial__details .testimonial__name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #000;
}
.testimonial__grid .testimonial__details .testimonial__position {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--primary-color);
}
.testimonial__grid .testimonial__details .quotes {
  margin-top: 5rem;
}
.testimonial__grid .testimonial__details .quotes .quotes__text {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #000;
  line-height: 40px;
  padding-left: 1rem;
  position: relative;
}
@media (max-width: 550px) {
  .testimonial__grid .testimonial__details .quotes .quotes__text {
    padding-left: 1rem;
  }
}
.testimonial__grid .testimonial__details .quotes .quotes__text::before {
  content: ",,";
  position: absolute;
  bottom: 100%;
  left: 0;
  font-size: 60px;
  font-family: "Poller One";
  transform: rotate(180deg);
  letter-spacing: -5px;
  line-height: 0;
  color: #999;
}
.testimonial__grid .testimonial__details .quotes .quotes__text::after {
  content: ",,";
  position: absolute;
  top: 100%;
  right: 0;
  font-size: 60px;
  font-family: "Poller One";
  transform: rotate(360deg);
  letter-spacing: -5px;
  line-height: 0;
  color: #999;
}
@media (max-width: 550px) {
  .testimonial__grid .testimonial__details .quotes .quotes__text::after {
    font-size: 40px;
  }
}

.pagination {
  width: 100%;
  margin-bottom: 4rem;
}
.pagination nav {
  display: flex;
  justify-content: center;
}
.pagination nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  grid-gap: 1rem;
}
.pagination nav ul li a .number {
  min-width: 2rem;
  height: 2rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 500;
  transition: all 300ms ease-in-out;
}
.pagination nav ul li a .next__arrow,
.pagination nav ul li a .prev__arrow {
  min-width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  font-size: 12px;
  font-weight: 500;
  transition: all 300ms ease-in-out;
}
.pagination nav ul li a:hover {
  color: white;
}
.pagination nav ul li a:hover .number {
  background: var(--primary-color);
  color: white;
}
.pagination nav ul li a:hover .next__arrow,
.pagination nav ul li a:hover .prev__arrow {
  transform: scale(1.1);
}
.pagination nav ul li a.active .number {
  background: var(--primary-color);
  color: white;
}

.banner__img {
  width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .banner__img {
    height: 400px;
  }
}
.banner__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  padding: 4rem 0;
}
@media (max-width: 992px) {
  .news__grid {
    grid-gap: 1rem;
  }
}
@media (max-width: 768px) {
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 450px) {
  .news__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news__grid-card:hover .card__img::before {
  opacity: 0;
}
.news__grid-card:hover .card__img img {
  transform: scale(1.1);
}
.news__grid-card .card__img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
@media (max-width: 1150px) {
  .news__grid-card .card__img {
    height: 250px;
  }
}
@media (max-width: 992px) {
  .news__grid-card .card__img {
    height: 200px;
  }
}
@media (max-width: 550px) {
  .news__grid-card .card__img {
    height: 160px;
  }
}
@media (max-width: 450px) {
  .news__grid-card .card__img {
    height: 250px;
  }
}
@media (max-width: 400px) {
  .news__grid-card .card__img {
    height: 200px;
  }
}
.news__grid-card .card__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: all 300ms ease-in-out;
}
.news__grid-card .card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: all 300ms ease-in-out;
}
.news__grid-card .card__img .news__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  background: var(--secondary-color);
  padding: 0.2rem 1rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  letter-spacing: 0.5px;
  z-index: 2;
}
@media (max-width: 768px) {
  .news__grid-card .card__img .news__badge {
    top: 0.5rem;
    left: 0.5rem;
    font-size: 12px;
  }
}
.news__grid-card .card__img .news__badge span {
  margin-left: 0.3rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}
.news__grid-card .card__details {
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
  padding-top: 1rem;
}
.news__grid-card .card__details .card__title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
@media (max-width: 992px) {
  .news__grid-card .card__details .card__title {
    font-size: 20px;
  }
}
.news__grid-card .card__details .card__title:hover a {
  color: var(--primary-color);
}
.news__grid-card .card__details .card__title a {
  color: black;
  transition: all 300ms ease-in-out;
}
.news__grid-card .card__details .card__desc {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 30px;
  font-weight: 400;
}

.video__slider {
  padding: 4rem 0;
  display: flex;
  align-items: center;
  grid-gap: 2rem;
}
.video__slider .slider__card {
  margin: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
@media (max-width: 999px) {
  .video__slider .slider__card {
    box-shadow: unset;
  }
}
@media (max-width: 600px) {
  .video__slider .slider__card {
    margin: 0;
  }
}
.video__slider .slider__card-video {
  width: 100%;
  height: 350px;
}
.video__slider .slider__card-video iframe {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 500;
  object-fit: contain;
}

.owl-stage {
  margin: 7rem 0;
}
@media (max-width: 600px) {
  .owl-stage {
    margin: 0;
  }
}

.owl-item .slider__card {
  position: relative;
}
.owl-item .slider__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 300ms ease-in-out;
}

.owl-item.active.center {
  transform: scale(1.5);
  position: relative;
  z-index: 10;
}
.owl-item.active.center .slider__card::before {
  opacity: 0;
}

.owl-nav {
  display: flex;
  justify-content: center;
  grid-gap: 1rem;
  margin-top: 2rem;
}
.owl-nav button {
  background: var(--primary-color) !important;
  min-width: 3rem;
  height: 3rem;
  position: relative;
  transition: all 300ms ease-in-out;
}
.owl-nav button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  opacity: 0;
  background: var(--secondary-color);
  transition: all 300ms ease-in-out;
}
.owl-nav button:hover::before {
  opacity: 1;
  width: 100%;
  height: 100%;
}
.owl-nav button svg {
  font-size: 16px;
  color: white;
  position: relative;
}

.photo__gallery {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
}
@media (max-width: 992px) {
  .photo__gallery {
    grid-gap: 1rem;
  }
}
@media (max-width: 768px) {
  .photo__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 550px) {
  .photo__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .photo__gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}
.photo__gallery:hover .gallery__card::before {
  opacity: 1;
}
.photo__gallery .gallery__card {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 1200px) {
  .photo__gallery .gallery__card {
    height: 200px;
  }
}
@media (max-width: 992px) {
  .photo__gallery .gallery__card {
    height: 160px;
  }
}
@media (max-width: 600px) {
  .photo__gallery .gallery__card {
    height: 140px;
  }
}
@media (max-width: 550px) {
  .photo__gallery .gallery__card {
    height: 160px;
  }
}
@media (max-width: 450px) {
  .photo__gallery .gallery__card {
    height: 140px;
  }
}
@media (max-width: 400px) {
  .photo__gallery .gallery__card {
    height: 250px;
  }
}
@media (max-width: 350px) {
  .photo__gallery .gallery__card {
    height: 200px;
  }
}
.photo__gallery .gallery__card:hover::before {
  opacity: 0;
}
.photo__gallery .gallery__card:not(:hover) {
  opacity: 1;
}
.photo__gallery .gallery__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 300ms ease-in-out;
}
.photo__gallery .gallery__card img {
  width: 100%;
  height: 100%;
}

.hero__banner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.hero__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 5;
}
.hero__banner .video__overlay {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__banner .person__image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 4;
  max-width: 70rem;
  height: 50rem;
}
@media (max-width: 992px) {
  .hero__banner .person__image {
    height: 40rem;
  }
}
@media (max-width: 768px) {
  .hero__banner .person__image {
    height: 30rem;
  }
}
@media (max-width: 600px) {
  .hero__banner .person__image {
    height: 25rem;
  }
}
.hero__banner .person__image img {
  width: 100%;
  height: 100%;
}
.hero__banner .hero__text {
  position: absolute;
  z-index: 5;
  bottom: 15%;
  left: 200px;
}
@media (max-width: 1536px) {
  .hero__banner .hero__text {
    left: 2.5%;
  }
}
@media (max-width: 500px) {
  .hero__banner .hero__text {
    bottom: 45%;
  }
}
.hero__banner .hero__text .hero__title {
  font-size: 60px;
  color: white;
  letter-spacing: 0.5px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .hero__banner .hero__text .hero__title {
    font-size: 50px;
  }
}
.hero__banner .hero__text .hero__designation {
  color: white;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  .hero__banner .hero__text .hero__designation {
    font-size: 28px;
  }
}
.hero__banner .hero__text .hero__cta {
  display: flex;
  align-items: flex-start;
  margin-top: 2rem;
}
.hero__banner .hero__text .hero__cta .btn__cta {
  min-width: 10rem;
  height: 45px;
  border-radius: 5px;
  border: 0;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  position: relative;
  cursor: pointer;
}
.hero__banner .hero__text .hero__cta .btn__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center;
  width: 0;
  height: 100%;
  border-radius: 5px;
  background: var(--primary-color);
  opacity: 0;
  transition: all 300ms ease-in-out;
}
.hero__banner .hero__text .hero__cta .btn__cta:hover::before {
  width: 100%;
  opacity: 1;
}
.hero__banner .hero__text .hero__cta .btn__cta span {
  position: relative;
  color: white;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 400;
  transition: all 300ms ease-in-out;
}

.news__section {
  padding: 4rem 0;
}

.testimonial__section {
  padding: 4rem 0;
}

.video__section {
  padding: 4rem 0;
}

.gallery__section {
  padding: 4rem 0;
}

.details__section {
  margin: 3rem 0;
}
.details__section-wrapper {
  display: flex;
  flex-direction: column;
  grid-gap: 2rem;
}
.details__section-wrapper .details__title {
  font-size: 48px;
  letter-spacing: 0.5px;
  color: #000;
}
@media (max-width: 1280px) {
  .details__section-wrapper .details__title {
    font-size: 40px;
  }
}
@media (max-width: 550px) {
  .details__section-wrapper .details__title {
    font-size: 32px;
  }
}
.details__section-wrapper .details__content .floating__img {
  float: left;
  width: 600px;
  height: 400px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .details__section-wrapper .details__content .floating__img {
    width: 400px;
    height: 300px;
  }
}
@media (max-width: 650px) {
  .details__section-wrapper .details__content .floating__img {
    width: 300px;
    height: 200px;
  }
}
@media (max-width: 650px) {
  .details__section-wrapper .details__content .floating__img {
    width: 100%;
    height: auto;
  }
}
.details__section-wrapper .details__content .floating__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.details__section-wrapper .details__content .desc {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: #000;
  line-height: 35px;
  margin-bottom: 2rem;
}
.details__section-wrapper .details__content .desc a {
  color: var(--secondary-color);
  font-weight: 600;
}
.details__section-wrapper .details__content img {
  width: 100%;
  height: auto;
}
.details__section-wrapper .details__content iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1/0.6;
}
.details__section-wrapper .details__content .post__meta-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.news__list {
  padding-bottom: 4rem;
}
