/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
// Variables
// Common
// Custom
// Slider
// Page
// Main
// Contact
// Footer
// Search
// Mobile
// blog
// Events
// Donations
// Volunteers
// Sponsors
// Testimonials
// Cta
// funfact
// About
// Newsletter
// Gallery
// Video
// Faq
--------------------------------------------------------------*/
/*
  // Variables
*/
:root {
  --paroti-font: 'Manrope', sans-serif;
  --paroti-base: #ed1b24;
  --paroti-base-rgb: 222, 82, 18;
  --paroti-primary: #138999;
  --paroti-primary-rgb: 19, 137, 153;
  --paroti-secondary: #fdbe44;
  --paroti-secondary-rgb: 253, 190, 68;
  --paroti-black: #144047;
  --paroti-black-rgb: 20, 64, 71;
  --paroti-dark: #002c33;
  --paroti-dark-rgb: 0, 44, 51;
  --paroti-text: #768385;
  --paroti-gray: #f1f6f7;
  --paroti-border: #dde8ea;
  --paroti-light: #8fa6aa;

      --primary-blue: #0d9488;
    --hr-authority-primary: #1A237E;
    --hr-authority-light: #303F9F;
    --hr-justice-primary: #0d9488;
    --hr-justice-light: #D32F2F;
    --hr-freedom-accent: #2196F3;
    --hr-equality-accent: #FF8F00;
    --neutral-dark: #263238;
    --neutral-medium: #546E7A;
    --neutral-light: #FAFAFA;
    --pure-white: #FFFFFF;
    --text-primary: #212121;
    --text-secondary: #424242;
    
    --gradient-authority: linear-gradient(135deg, #1A237E 0%, #303F9F 100%);
    --gradient-justice: linear-gradient(135deg, #0d9488 0%, #D32F2F 100%);
    --gradient-mixed: linear-gradient(135deg, #0d9488 0%, #1A237E 50%, #FF8F00 100%);
    --gradient-gold: linear-gradient(135deg, #FF8F00 0%, #FFB300 100%);

    --primary-justice: #0d9488;
    --primary-justice-light: #D32F2F;
    --primary-justice-dark: #8C1A1A;
    --primary-justice-darker: #641414;
    --secondary-authority: #1A237E;
    --secondary-authority-light: #303F9F;
    --accent-freedom: #2196F3;
    --accent-freedom-light: #42A5F5;
    --text-primary: #212121;
    --text-secondary: #424242;
    --text-light: #757575;
    --text-white: #FFFFFF;
    --text-muted: #9E9E9E;
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --bg-light: #F5F5F5;
    --bg-card: #FFFFFF;
    --bg-dark: #263238;
    --gradient-primary: linear-gradient(to top right, #0d9488, #054e47, #064d49);
    --gradient-secondary: linear-gradient(45deg, var(--secondary-authority) 0%, var(--accent-freedom-light) 100%);
    --gradient-accent: linear-gradient(90deg, var(--accent-freedom) 0%, var(--secondary-authority-light) 100%);
    --gradient-justice: linear-gradient(135deg, var(--primary-justice) 0%, var(--primary-justice-light) 100%);
    --shadow-light: rgba(183, 28, 28, 0.1);
    --shadow-medium: rgba(183, 28, 28, 0.2);
    --shadow-dark: rgba(183, 28, 28, 0.3);
    --shadow-authority: rgba(26, 35, 126, 0.15);
    --overlay-light: rgba(183, 28, 28, 0.7);
    --overlay-medium: rgba(183, 28, 28, 0.8);
    --overlay-dark: rgba(183, 28, 28, 0.9);
    --overlay-authority: rgba(26, 35, 126, 0.8);
}
/*
  // Common
*/
html {
  font-size: 12px;
}

@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: var(--paroti-font, "Manrope", sans-serif);
  font-size: 16px;
  line-height: 2em;
  font-weight: 500;
  color: var(--paroti-text, #768385);
}

a, a:hover, a:active {
  text-decoration: none;
}

h1 {
  font-family: var(--paroti-font, "Manrope", sans-serif);
}

h2 {
  font-family: var(--paroti-font, "Manrope", sans-serif);
}

h3 {
  font-family: var(--paroti-font, "Manrope", sans-serif);
}

h4 {
  font-family: var(--paroti-font, "Manrope", sans-serif);
}

h5 {
  font-family: var(--paroti-font, "Manrope", sans-serif);
}

h6 {
  font-family: var(--paroti-font, "Manrope", sans-serif);
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.ml-0 {
  margin-left: 0;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.google-map iframe {
  border: none;
  display: block;
  width: 100%;
  height: 539px;
}

.sec-pad-top {
  padding-top: 50px;
}

.sec-pad-bottom {
  padding-bottom: 50px;
}

.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: var(--paroti-primary, #138999);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background-color: var(--paroti-secondary, #fdbe44);
}

.scroll-to-top:hover i {
  color: #fff;
}

.thm-btn {
    border: none;
    outline: none;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
    padding: 7px 25px;
    border-radius: 15px;
    transition: all 0.9s ease;
}


.thm-btn:hover {
  color: #fff;
    background: var(--gradient-secondary);  
    box-shadow: 0 10px 25px var(--shadow-dark);
}


.thm-btn span {
  position: relative;
  color: inherit;
  z-index: 2;
}

.thm-btn--two {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 5px 5px 30px;
}

.thm-btn--two::before {
  background-color: #2e8a0e;
}

.thm-btn--two i {
  position: relative;
  z-index: 2;
  width: 41px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--paroti-base, #a50d0d);
  font-size: 12px;
  background-color: #fff;
  margin-left: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-btn--two:hover i {
  background-color: var(--paroti-base, #a50d0d);
  color: #fff;
}

.thm-btn--light::after {
  background-color: #fff;
}

.thm-btn--light:hover {
  color: var(--paroti-black, #144047);
}

.sec-title {
  padding-bottom: 50px;
}

.sec-title__tagline {
  font-size: 16px;
  color: #000;
  margin: 0;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 7px;
}

.sec-title__tagline::after {
  content: '';
  width: 83px;
  height: 1px;
  background-color: var(--paroti-base, #a50d0d);
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.sec-title__title {
  margin: 0;
  font-size: 2.125rem;
  line-height: 1.2em;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #000;
}

.sec-title2 {
  padding-bottom: 50px;
}

.sec-title__tagline2 {
  font-size: 16px;
  color: #fff;
  margin: 0;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 7px;
}

.sec-title__tagline2::after {
  content: '';
  width: 83px;
  height: 1px;
  background-color: var(--paroti-base, #a50d0d);
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.sec-title__title2 {
  margin: 0;
  font-size: 2.125rem;
  line-height: 1.2em;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99991;
  background-color: var(--paroti-dark, #002c33);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.preloader__inner {
  position: relative;
  width: 150px;
  height: 150px;
}

.preloader__inner span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -webkit-animation: anime 4s infinite;
          animation: anime 4s infinite;
}

.preloader__inner span:nth-child(1) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.preloader__inner span:nth-child(2) {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.preloader__inner span:nth-child(3) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.preloader__inner span:nth-child(4) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.preloader__inner span:nth-child(5) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.preloader__inner span:nth-child(6) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.preloader__inner span:nth-child(7) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.preloader__inner span:nth-child(8) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

/*
  // Custom Animation
*/
@-webkit-keyframes anime {
  0% {
    width: 0px;
    height: 0px;
    -webkit-box-shadow: inset 0 0 0 0px rgba(0, 0, 0, 0);
            box-shadow: inset 0 0 0 0px rgba(0, 0, 0, 0);
  }
  20% {
    -webkit-box-shadow: inset 0px 5px 60px 15px rgba(255, 255, 255, 0.4);
            box-shadow: inset 0px 5px 60px 15px rgba(255, 255, 255, 0.4);
  }
  40% {
    -webkit-box-shadow: inset 0px 5px 60px 15px rgba(255, 255, 255, 0.2);
            box-shadow: inset 0px 5px 60px 15px rgba(255, 255, 255, 0.2);
  }
  100% {
    width: 150px;
    height: 150px;
    -webkit-box-shadow: inset 0 0 0 0px rgba(0, 0, 0, 0);
            box-shadow: inset 0 0 0 0px rgba(0, 0, 0, 0);
  }
}
@keyframes anime {
  0% {
    width: 0px;
    height: 0px;
    -webkit-box-shadow: inset 0 0 0 0px rgba(0, 0, 0, 0);
            box-shadow: inset 0 0 0 0px rgba(0, 0, 0, 0);
  }
  20% {
    -webkit-box-shadow: inset 0px 5px 60px 15px rgba(255, 255, 255, 0.4);
            box-shadow: inset 0px 5px 60px 15px rgba(255, 255, 255, 0.4);
  }
  40% {
    -webkit-box-shadow: inset 0px 5px 60px 15px rgba(255, 255, 255, 0.2);
            box-shadow: inset 0px 5px 60px 15px rgba(255, 255, 255, 0.2);
  }
  100% {
    width: 150px;
    height: 150px;
    -webkit-box-shadow: inset 0 0 0 0px rgba(0, 0, 0, 0);
            box-shadow: inset 0 0 0 0px rgba(0, 0, 0, 0);
  }
}

@-webkit-keyframes btnIconMove {
  0%,
  50%,
  100% {
    -webkit-transform: rotate(0deg) translate(0px, 0px);
            transform: rotate(0deg) translate(0px, 0px);
  }
  25%,
  75% {
    -webkit-transform: rotate(5deg) translate(0px, 5px);
            transform: rotate(5deg) translate(0px, 5px);
  }
}

@keyframes btnIconMove {
  0%,
  50%,
  100% {
    -webkit-transform: rotate(0deg) translate(0px, 0px);
            transform: rotate(0deg) translate(0px, 0px);
  }
  25%,
  75% {
    -webkit-transform: rotate(5deg) translate(0px, 5px);
            transform: rotate(5deg) translate(0px, 5px);
  }
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
          animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  50% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  50% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
          animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes bgSlide {
  0% {
    background-position: 0 100%;
  }
  20% {
    background-position: -100px 100%;
  }
  40% {
    background-position: -200px 100%;
  }
  60% {
    background-position: -150px 100%;
  }
  80% {
    background-position: -100px 100%;
  }
  100% {
    background-position: 0px 100%;
  }
}

@keyframes bgSlide {
  0% {
    background-position: 0 100%;
  }
  20% {
    background-position: -100px 100%;
  }
  40% {
    background-position: -200px 100%;
  }
  60% {
    background-position: -150px 100%;
  }
  80% {
    background-position: -100px 100%;
  }
  100% {
    background-position: 0px 100%;
  }
}

/*
  // Slider
*/
.slider-one {
  background-color: #2b2d2d;
}

.slider-one__item {
/*  background-color: var(--paroti-black, #144047);*/
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  height: 500px;
}

.slider-one__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-blend-mode: color-dodge;
/*  background-color: var(--paroti-black, #144047);*/
  opacity: 0.9;
}

.slider-one__title {
  margin: 0;
  color: #fff;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1em;
  margin-bottom: 22px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition-delay: 2500ms;
          transition-delay: 2500ms;
  -webkit-transition: opacity 2000ms ease, color 500ms ease,
 background 500ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, color 500ms ease,
 background 500ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
 background 500ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
 background 500ms ease, -webkit-transform 2000ms ease;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}

@media (min-width: 768px) {
  .slider-one__title {
    font-size: 6.25rem;
    margin-bottom: 32px;
    margin-top: -20px;
  }
}

.slider-one__title span {
  position: relative;
}

.slider-one__title span::before {
  content: "";
  width: 41px;
  height: 43px;
  background-image: url(../images/shapes/slider-s-1.png);
  background-repeat: no-repeat;
  position: absolute;
  display: none;
  -webkit-animation: float-bob-y 4s linear 0s infinite;
          animation: float-bob-y 4s linear 0s infinite;
}

@media (min-width: 768px) {
  .slider-one__title span::before {
    display: block;
    left: 87px;
    top: 20px;
  }
}

@media (min-width: 992px) {
  .slider-one__title span::before {
    left: 103px;
    top: 26px;
  }
}

.active .slider-one__title {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.slider-one__text {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  margin: 0;
  margin-bottom: 40px;
  -webkit-transform: translateY(-120px);
          transform: translateY(-120px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition-delay: 1500ms;
          transition-delay: 1500ms;
  -webkit-transition: opacity 2000ms ease, color 500ms ease,
 background 500ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, color 500ms ease,
 background 500ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
 background 500ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
 background 500ms ease, -webkit-transform 2000ms ease;
}

@media (min-width: 768px) {
  .slider-one__text {
    margin-bottom: 45px;
  }
}

.active .slider-one__text {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.slider-one__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition-delay: 2500ms;
          transition-delay: 2500ms;
  -webkit-transition: opacity 2000ms ease, color 500ms ease,
 background 500ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, color 500ms ease,
 background 500ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
 background 500ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
 background 500ms ease, -webkit-transform 2000ms ease;
}

.active .slider-one__btns {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.slider-one__btn {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.slider-one__btn:hover {
  color: var(--paroti-black, #144047);
}

.slider-one__btn::after {
  background-color: #fff;
}

.slider-one .container {
  position: relative;
}

.slider-one .owl-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 1200px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.slider-one .owl-carousel .owl-nav [class*="owl-"] {
  margin: 0;
  width: 5.875rem;
  height: 5rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
  color: var(--paroti-black, #144047);
  border-radius: 0;
  outline: none;
  border: none;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.slider-one .owl-carousel .owl-nav [class*="owl-"]:hover {
  background-color: var(--paroti-gray, #f1f6f7);
  color: var(--paroti-base, #a50d0d);
}

.slider-one .owl-carousel .owl-dots {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 992px) {
  .slider-one .owl-carousel .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.slider-one .owl-carousel .owl-dots [class*="owl-"] span {
  margin: 0;
  width: 16px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.slider-one .owl-carousel .owl-dots [class*="owl-"].active span, .slider-one .owl-carousel .owl-dots [class*="owl-"]:hover span {
  background-color: #fff;
}

.slider-one .owl-carousel .owl-dots [class*="owl-"] + [class*="owl-"] {
  margin-top: 6px;
}

.slider-two {
  background-repeat: repeat-x;
  background-position: top center;
  background-color: rgba(0, 0, 0, 0);
  padding-top: 114px;
}

@media (min-width: 992px) {
  .slider-two {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 42px;
  }
}

@media (min-width: 1200px) {
  .slider-two {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.slider-two .owl-item {
  text-align: center;
}

.slider-two .slider-one__image {
  opacity: 0.5;
}

.slider-two .slider-one__item {
  padding-top: 13.25rem;
  padding-bottom: 13.25rem;
}

.slider-two .slider-one__btns {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider-two .slider-one__title {
  font-size: 5rem;
  line-height: 1em;
  letter-spacing: 0.1em;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .slider-two .slider-one__title {
    font-size: 7rem;
  }
}

@media (min-width: 992px) {
  .slider-two .slider-one__title {
    font-size: 9rem;
  }
}

@media (min-width: 1200px) {
  .slider-two .slider-one__title {
    font-size: 10rem;
    margin-bottom: 30px;
  }
}

.slider-two .slider-one__text {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 14px;
  margin-top: -10px;
}

@media (min-width: 992px) {
  .slider-two .slider-one__text {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
}

.slider-two .owl-carousel .owl-nav {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  left: 0;
}

.slider-three .owl-item {
  text-align: center;
}

.slider-three .slider-one__image {
  opacity: 0.4;
}

.slider-three .slider-one__item {
  padding-top: 18.75rem;
  padding-bottom: 11.6875rem;
}

.slider-three .slider-one__btns {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .slider-three .slider-one__text {
    margin-bottom: 40px;
  }
}

.slider-three .slider-one__title {
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .slider-three .slider-one__title {
    margin-bottom: 38px;
  }
}


.page-header {
    background-size: cover;
    background-color: rgb(0 0 0 / 50%);
    padding-top: 100px;
    padding-bottom: 100px;
    backdrop-filter: blur(20px);
    text-align: center;
    background-position: center;
    background-blend-mode: overlay;
}

.page-header__title {
  font-size: 30px;
  color: #ffffff;
  font-weight: 800;
  margin: 0;
  margin-top: 3px;
  margin-bottom: -10px;
}

@media (min-width: 768px) {
  .page-header__title {
    font-size: 40px;
  }
}

@media (min-width: 992px) {
  .page-header__title {
    font-size: 50px;
    margin-top: -6px;
  }
}

.breadcrumb-one {
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  top: -12px;
}

.breadcrumb-one li {
  font-size: 14px;
  color: #fff;
}

.breadcrumb-one li:not(:last-of-type)::after {
  content: '/';
  margin-left: 10px;
  margin-right: 10px;
}

.breadcrumb-one li span,
.breadcrumb-one li a {
  color: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

/*
  // Main Menu
*/
.main-header {
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.main-header--two {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header--three {
  position: absolute;
  -webkit-box-shadow: none;
          box-shadow: none;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 91;
}

.main-header__btn {
color: #000000;
    font-size: 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__btn:hover {
  color: var(--paroti-base, #a50d0d);
}

.main-header__btn + .main-header__btn {
  margin-left: 30px;
}

.main-header__toggler {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 45px;
  height: 45px;
  background-color: var(--paroti-gray, #f1f6f7);
  padding: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-left: 30px;
}

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

.main-header__toggler:hover {
  background-color: var(--paroti-black, #144047);
}

.main-header__toggler:hover span {
  background-color: #ffffff;
}

.main-header__toggler span {
  width: 100%;
  height: 2px;
  background-color: var(--paroti-black, #144047);
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__toggler span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}

.main-header--three .main-header__toggler {
  background-color: var(--paroti-base, #a50d0d);
}

.topbar {
  /* display: none; */
  background: var(--gradient-primary) !important;
}

@media (min-width: 992px) {
  .topbar {
    display: block;
  }
}

.topbar--three {
  background-color: #fff;
}

@media (min-width: 992px) {
  .topbar .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1200px) {
  .topbar .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.topbar__inner {
/*  background-color: var(--paroti-base, #a50d0d);*/
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  padding-right: 0px;
}


.topbar--three .topbar__inner {
  background-color: transparent;
  padding-left: 0;
}

@media (min-width: 1200px) {
  .topbar--three .topbar__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.topbar__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

.topbar__info li {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.topbar__info li + li {
  margin-left: 30px;
}

.topbar__info li i {
  color: var(--paroti-secondary, #fdbe44);
  font-size: 14px;
  margin-right: 10px;
}

.topbar__info li a {
  color: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.topbar__info li a:hover {
  color: #fff;
}

.topbar--three .topbar__info li {
  color: var(--paroti-text, #768385);
}

.topbar--three .topbar__info li a:hover {
  color: var(--paroti-black, #144047);
  text-shadow: 0 0 1px currentColor;
}

.topbar__inner {
    /* background-color: var(--paroti-base, #a50d0d); */
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0px;
    padding-right: 0px;
    justify-content: space-between;
}

.topbar__social a {
  color: #0f0f0f;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  /* padding-top: 20px; */
  background-color: #ffffff;
  width: 50px !important;
  height: 50px;
  padding: 12px;
  border-radius: 50px;
}
.topbar__social {
  padding-top: 33px;
  margin-left: 31px;
}
@media (max-width: 768px) {
  .mobile-topbar {
      background: #054e47;
      color: white;
      position: sticky;
      top: 0;
      z-index: 9999;
    }
.topbar__inner {
  /* background-color: var(--paroti-base, #a50d0d); */
  /* display: none; */
}
  .mobile-topbar .mobile-title {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
  }

  .mobile-logo img {
    max-height: 40px;
  }

  .main-menu__right .mobile-nav__toggler {
    display: none !important;
  }
}

.topbar__social a + a {
  margin-left: 25px;
}

.topbar__social a:hover {
  color: var(--paroti-black, #144047);
}

.topbar--three .topbar__social {
  background-color: rgba(0, 0, 0, 0);
  padding-left: 0;
  padding-right: 0;
}

.topbar--three .topbar__social a {
  color: var(--paroti-black, #144047);
}

.topbar--three .topbar__social a:hover {
  color: var(--paroti-base, #a50d0d);
}

.topbar__links {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  margin-left: 40px;
  display: none;
}

@media (min-width: 1200px) {
  .topbar__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.topbar__links li {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}

.topbar__links li:not(:first-child)::before {
  content: "/";
  margin-left: 9px;
  margin-right: 9px;
}

.topbar__links li a {
  color: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.topbar__links li a:hover {
  color: var(--paroti-black, #144047);
}

.topbar--three .topbar__links li {
  color: var(--paroti-text, #768385);
}

.topbar--three .topbar__links li a:hover {
  color: var(--paroti-black, #144047);
  text-shadow: 0 0 1px currentColor;
}

.main-menu--three .container-fluid {
  --paroti-black: #fff;
  --paroti-text: #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-menu .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 992px) {
  .main-menu .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1200px) {
  .main-menu .container-fluid {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.main-menu__list {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1200px) {
  .main-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 6px;
  }
}

.main-menu__list > li {
  position: relative;
  padding: 25px 0;
}

.main-menu__list > li + li {
  margin-left: 0px;
}

@media (min-width: 1210px) {
  .main-menu__list > li + li {
    margin-left: 0px;
  }
}

.main-menu__list > li > a {
  color: #000;
  font-weight: 600;
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  padding: 3px 8px;
}



.main-menu__list > li:hover > a, .main-menu__list > li.current > a {
    text-shadow: 0 0 1px var(--hr-justice-primary);
    color: var(--hr-justice-primary);

    font-weight: 600;
        /*transform: scale(1.1);*/
}

.main-menu__list > li > ul {
  left: 0;
  top: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  min-width: 220px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  z-index: 99;
  -webkit-box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

.main-menu__list > li > ul > li {
  position: relative;
}

.main-menu__list > li > ul > li > a {
  color: #000;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  padding: 7px 20px;
  font-size: 16px;
}

.main-menu__list > li > ul > li > a:hover {
    background: rgba(59, 130, 246, 0.08);
    padding-left: 25px;
    color: var(--primary-blue);
}

.main-menu__list > li > ul > li > ul {
  left: 100%;
  top: 0%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  min-width: 220px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  z-index: 99;
  -webkit-box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

.main-menu__list > li > ul > li > ul > li > a {
  color: var(--paroti-text, #768385);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  padding: 7px 20px;
  font-size: 16px;
}

.main-menu__list > li > ul > li > ul > li > a:hover {
  background-color: var(--paroti-primary, #138999);
  color: #fff;
}

.main-menu__list > li > ul > li > ul > li > ul {
  display: none;
}

.main-menu__list > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
}

.main-menu__list > li:hover > ul {
  opacity: 1;
  visibility: visible;
}

.main-menu--three .main-menu__list {
  margin-left: 0;
}

.main-menu--three .main-menu__list > li > ul,
.main-menu--three .main-menu__list > li > ul > li > ul {
  --paroti-text: var(--paroti-text, #768385);
}

.main-menu--three .main-menu__list > li:hover > a,
.main-menu--three .main-menu__list > li.current > a {
  background-color: rgba(255, 255, 255, 0.1);
}

.main-menu__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}

.main-menu__right .thm-btn {
    margin-right: 6px;
    margin-left: 6px;
}
@media (min-width: 1485px) {
  .main-menu__right .thm-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.main-menu--three .main-menu__right {
  margin-left: 0;
}

.main-menu--three .main-menu__right .thm-btn {
  margin-right: 0;
}

.main-menu--three .main-menu__right .thm-btn:hover {
  color: var(--paroti-base, #a50d0d);
}

.main-menu__cta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}

@media (min-width: 1700px) {
  .main-menu__cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu__cta__icon {
  background-color: var(--paroti-gray, #f1f6f7);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 54px;
  height: 54px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cta__icon i {
  font-size: 26px;
  color: var(--paroti-primary, #138999);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cta:hover .main-menu__cta__icon {
  background-color: var(--paroti-secondary, #fdbe44);
}

.main-menu__cta:hover .main-menu__cta__icon i {
  color: #ffffff;
}

.main-menu__cta__text {
  line-height: 1;
  margin-left: 14px;
}

.main-menu__cta__text span {
  line-height: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--paroti-text, #768385);
  position: relative;
  display: inline-block;
}

.main-menu__cta__text span::after {
  content: "";
  position: absolute;
  top: 23%;
  left: 111%;
  width: 12px;
  height: 17px;
  background-image: url(../images/shapes/header-btn-arrow.png);
  background-repeat: no-repeat;
  z-index: 10;
  -webkit-animation: btnIconMove 4s linear 0ms infinite;
          animation: btnIconMove 4s linear 0ms infinite;
}

.main-menu__cta__text a {
  line-height: 1;
  font-weight: bold;
  font-size: 16px;
  color: var(--paroti-black, #144047);
  display: block;
  margin-top: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cta__text a:hover {
  color: var(--paroti-primary, #138999);
}

.sticky-header--cloned {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.sticky-header--cloned.main-menu--three {
  background-color: var(--paroti-black, #144047);
}

@media (max-width: 1199px) {
  .sticky-header--cloned {
    display: none !important;
  }
}

.sticky-header--cloned.sticky-fixed {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}

/*
  // Contact
*/
.contact-one__form .row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
  color: #000;
}

.contact-one__form h5{
  text-align: center;
}

.contact-one__text {
  margin: 0;
}

.contact-one__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact-one__social a {
  width: 40px;
  height: 40px;
  background-color: var(--paroti-gray, #f1f6f7);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 14px;
  color: var(--paroti-black, #144047);
}

.contact-one__social a:hover {
  background-color: var(--paroti-black, #144047);
  color: #ffffff;
}

.contact-one__social a + a {
  margin-left: 10px;
}
.contact-one__form {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
/*    background: #000;*/
    padding: 22px 23px;
    border-radius: 12px;
    box-shadow: 0px 0px 10px #7d7d7d;
}

.contact-one__form input[type=text], input[type=time], .contact-one__form input[type=email], .contact-one__form input[type=phone], .contact-one__form input[type=date], .contact-one__form input[type=number], .contact-one__form input[type=password], .contact-one__form input[type=file], .contact-one__form select, .contact-one__form textarea {
    display: block;
    border: none;
    outline: none;
    width: 100%;
    height: 40px;
    background-color: var(--paroti-gray, #f1f6f7);
    color: var(--paroti-text, #768385);
    font-size: 14px;
    font-weight: 500;
    padding-left: 15px;
    padding-right: 30px;
    border-radius: 5px;
    border:1px solid #999;
}

.contact-one__form input[type=text].error,
.contact-one__form input[type=email].error,
.contact-one__form input[type=phone].error,
.contact-one__form input[type=date].error,
.contact-one__form input[type=number].error,
.contact-one__form select.error,
.contact-one__form textarea.error {
  -webkit-box-shadow: 0 0 0 1px red;
          box-shadow: 0 0 0 1px red;
}

.contact-one__form textarea {
  height: 192px;
  padding-top: 20px;
  padding-bottom: 30px;
}

.contact-one__text {
  margin-top: -20px;
  margin-bottom: 36px;
}

.contact-info__inner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 60px 0;
}

.contact-info__item {
  text-align: center;
}

.contact-info__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 78px;
  height: 78px;
  border: 1px solid var(--paroti-base, #a50d0d);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-info__icon::before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  right: 6px;
  background-color: var(--paroti-base, #a50d0d);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-info__icon span,
.contact-info__icon i {
  position: relative;
  color: #fff;
  font-size: 18px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

@media (min-width: 992px) {
  .contact-info [class*=col-] + [class*=col-] {
    border-left: 1px solid var(--paroti-border, #dde8ea);
  }
}

[class*=col-]:nth-child(2n) .contact-info__icon {
  border-color: #368604;
}

[class*=col-]:nth-child(2n) .contact-info__icon::before {
  background-color: #368604;
}

[class*=col-]:nth-child(3n) .contact-info__icon {
  border-color: var(--paroti-secondary, #fdbe44);
}

[class*=col-]:nth-child(3n) .contact-info__icon::before {
  background-color: var(--paroti-secondary, #fdbe44);
}

.contact-info__item:hover .contact-info__icon {
  border-color: var(--paroti-black, #144047);
}

.contact-info__item:hover .contact-info__icon::before {
  background-color: #000;
}

.contact-info__item:hover .contact-info__icon span,
.contact-info__item:hover .contact-info__icon i {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.contact-info__text {
  font-size: 18px;
  line-height: 1.8888888888888888em;
  font-weight: 500;
  color: #000;
  margin: 0;
  margin-top: 10px;
  margin-bottom: -5px;
}

.contact-info__text a {
  color: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-info__text a:hover {
  color: var(--paroti-base, #a50d0d);
}

/*
  // Footer
*/
.site-footer {
  background-size: cover;
  background-repeat: no-repeat;
}

.site-footer__top {
  padding-top: 50px;
/*  padding-bottom: 50px;*/
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.site-footer__social a {
  width: 40px;
  height: 40px;
  background-color: #2e8a0e;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 14px;
  color: #ffffff;
}

.site-footer__social a:hover {
  background-color: var(--paroti-base, #a50d0d);
  color: #ffffff;
}

.site-footer__social a + a {
  margin-left: 10px;
}

.site-footer__bottom__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 576px) {
  .site-footer__bottom__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.site-footer__bottom__text {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--paroti-light, #8fa6aa);
  margin-bottom: 10px;
}

@media (min-width: 576px) {
  .site-footer__bottom__text {
    margin-bottom: 0;
  }
}

.site-footer__widget {
  margin-bottom: 30px;
}

@media (min-width: 1200px) {
  .site-footer__widget__cta {
    margin-left: -28px;
  }
}

.site-footer__widget__text {
  font-weight: 500;
  color: #fff;
  font-size: 15px;
  line-height: 2em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__widget__title {
  margin: 0;
  font-size: 20px;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 20px;
}

.site-footer__widget__title span {
  position: relative;
}

/*.site-footer__widget__cta .site-footer__widget__title span::after {
  content: '';
  position: absolute;
  top: 80%;
  left: 110%;
  width: 18px;
  height: 26px;
  background-image: url(../images/shapes/footer-btn-arrow.png);
  background-repeat: no-repeat;
  z-index: 10;
  -webkit-animation: btnIconMove 4s linear 0ms infinite;
          animation: btnIconMove 4s linear 0ms infinite;
}*/

.site-footer__widget__contact, .site-footer__widget__links {
  margin: 0;
  margin-top: -15px;
  margin-bottom: -14px;
}

.site-footer__widget__contact li, .site-footer__widget__links li {
  color: var(--paroti-light, #8fa6aa);
  font-size: 15px;
  font-weight: 500;
  line-height: 2.4em;
}

.site-footer__widget__contact li a, .site-footer__widget__links li a {
  color: #fff;
  -webkit-transition: color 500ms ease;
  transition: color 500ms ease;
}

.site-footer__widget__contact li a:hover, .site-footer__widget__links li a:hover {
  color: #ffffff;
}

.site-footer__widget__contact li {
  position: relative;
  padding-left: 28px;
}

.site-footer__widget__contact li i {
  position: absolute;
  color: var(--paroti-secondary, #fdbe44);
  font-size: 14px;
  top: 11px;
  left: 0;
}

.site-footer__widget__about .site-footer__widget__logo {
  position: relative;
  top: -18px;
  display: inline-block;
}

.site-footer__widget__about .site-footer__widget__text {
  margin-top: 12px;
/*  padding-top: 30px;*/
}

/*
  // Search Popup
*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9991;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.search-popup.active {
  opacity: 1;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.9;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-130%);
  transform: translateY(-130%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.search-popup.active .search-popup__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--paroti-primary, #138999);
  border: 0;
}

.search-popup__content .thm-btn i {
  background-color: transparent;
  margin-left: 0;
}

.search-popup__content .thm-btn:hover {
  background-color: var(--paroti-secondary, #fdbe44);
}

/*
  // Mobile Drawer
*/
.mobile-nav__wrapper {
  position: fixed;
  z-index: 9991;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.9;
}

.mobile-nav__content {
  width: 100%;
  max-width: 300px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
/*  background-color: var(--paroti-dark, #002c33);*/
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 30px 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__content::-webkit-scrollbar {
  display: none;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 30px;
  margin-bottom: 10px;
}

.mobile-menu__list .menu-item-has-children button {
  width: 30px;
  height: 30px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--paroti-black, #144047);
  border: none;
  outline: none;
  float: right;
  margin-top: 5px;
}

.mobile-menu__list li.current > a {
  color: #fff;
}

.mobile-menu__list > li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__list > li > a {
  font-weight: 500;
  font-size: 15px;
  color: var(--paroti-light, #8fa6aa);
  display: block;
  line-height: 40px;
}

.mobile-menu__list > li > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
  padding-left: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__list > li > ul > li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__list > li > ul > li > a {
  font-weight: 500;
  font-size: 15px;
  color: var(--paroti-light, #8fa6aa);
  display: block;
  line-height: 40px;
}

.mobile-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 5px;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__list > li > ul > li > ul > li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__list > li > ul > li > ul > li > a {
  font-weight: 500;
  font-size: 15px;
  color: var(--paroti-light, #8fa6aa);
  display: block;
  line-height: 40px;
}

.mobile-menu__list > li > ul > li > ul > li > ul {
  display: none;
}

.mobile-nav__social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -5px;
  margin-right: -5px;
}

.mobile-nav__social li {
  margin: 0 5px;
}

.mobile-nav__social li a {
  width: 40px;
  height: 40px;
  background-color: var(--paroti-black, #144047);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 14px;
  color: #ffffff;
}

.mobile-nav__social li a:hover {
  background-color: var(--paroti-base, #a50d0d);
  color: #ffffff;
}

.mobile-nav__contact {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  position: relative;
  padding-left: 33px;
  color: var(--paroti-light, #8fa6aa);
  font-size: 15px;
  line-height: 2em;
}

.mobile-nav__contact li > i {
  font-size: 15px;
  color: var(--paroti-secondary, #fdbe44);
  position: absolute;
  top: 8px;
  left: 0;
}

.mobile-nav__contact li a {
  color: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-nav__contact li a:hover {
  color: #fff;
}

.mobile-nav__close {
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  top: 20px;
  right: 15px;
}

.mobile-nav__close span {
  width: 2px;
  height: 100%;
  display: block;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav__close span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

/*
  // blog
*/
.blog-card {
  -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  background-color: #ffffff;
}

.blog-card:hover {
  -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
}

.blog-card__image {
  position: relative;
  background-color: var(--paroti-black, #144047);
}

.blog-card__image img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
}

.blog-card:hover .blog-card__image img {
  opacity: 0.7;
}

.blog-card__date {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60px;
  height: 70px;
  background-color: var(--paroti-base, #a50d0d);
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card__date span {
  font-size: 20px;
  display: block;
  line-height: 1;
  padding-bottom: 2px;
}

.blog-card__content {
  padding: 0 40px;
  padding-top: 21px;
  padding-bottom: 28px;
}

.blog-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: var(--paroti-text, #768385);
  margin: 0;
  margin-bottom: 5px;
}

.blog-card__meta li + li {
  margin-left: 5px;
}

.blog-card__meta a {
  color: inherit;
}

.blog-card__meta a:hover {
  color: var(--paroti-black, #144047);
}

.blog-card__meta i {
  color: var(--paroti-secondary, #fdbe44);
  margin-right: 5px;
}

.blog-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25em;
  color: var(--paroti-black, #144047);
  letter-spacing: -0.04em;
  margin-bottom: 11px;
}

.blog-card__title a {
  color: inherit;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 2px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 2px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-card__title a:hover {
  background-size: 100% 2px;
}

.blog-card__links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  color: var(--paroti-black, #144047);
  letter-spacing: 0.1em;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-card__links i {
  color: var(--paroti-base, #a50d0d);
  margin-right: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-card__links:hover {
  color: var(--paroti-secondary, #fdbe44);
}

.blog-card__links:hover i {
  color: var(--paroti-black, #144047);
}

.blog-card-two {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  position: relative;
}

.blog-card-two::after {
  display: table;
  content: "";
  clear: both;
}

.blog-card-two .blog-card__date {
  left: auto;
  right: 0;
}

@media (min-width: 1200px) {
  .blog-card-two .blog-card__meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 1200px) {
  .blog-card-two .blog-card__meta li {
    line-height: 1;
  }
}

@media (min-width: 1200px) {
  .blog-card-two .blog-card__meta li + li {
    margin-left: 0;
    margin-top: 10px;
  }
}

.blog-card-two__image {
  display: none;
  float: right;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-right: 15px;
}

@media (min-width: 768px) {
  .blog-card-two__image {
    display: block;
  }
}

@media (min-width: 992px) {
  .blog-card-two__image {
    display: none;
  }
}

@media (min-width: 1200px) {
  .blog-card-two__image {
    display: block;
  }
}

.blog-card-two__content {
  padding: 30px;
}

@media (min-width: 768px) {
  .blog-card-two__content {
    float: left;
    width: calc(100% - 219px);
  }
}

@media (min-width: 992px) {
  .blog-card-two__content {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .blog-card-two__content {
    width: calc(100% - 219px);
  }
}

.blog-card-two__content__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 13px;
}

.blog-card-two__author {
  margin-right: 9px;
}

.blog-card-two__author img {
  border-radius: 50%;
}

.blog-card-two__text {
  border-top: 1px solid var(--paroti-border, #dde8ea);
  margin-top: 24px;
  padding-top: 20px;
  margin-bottom: -6px;
}

.blog-card-two .blog-card__links {
  position: relative;
  bottom: -11px;
}

.blog-home-two {
  position: relative;
}

.blog-home-two__shape {
  position: absolute;
  top: 0;
  right: 0;
}

.blog-home-two .container {
  position: relative;
}

.blog-home-3 {
  position: relative;
}

.blog-home-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 520px;
  background-color: var(--paroti-black, #144047);
  background-image: url(../images/shapes/blog-3-header-bg-1.png);
}

@media (min-width: 768px) {
  .blog-home-3::before {
    height: 491px;
  }
}

@media (min-width: 992px) {
  .blog-home-3::before {
    height: 605px;
  }
}

@media (min-width: 1200px) {
  .blog-home-3::before {
    height: 545px;
  }
}

.blog-home-3 .sec-title {
  --paroti-black: #ffffff;
  --paroti-text: var(--paroti-light, #8fa6aa);
}

.blog-home-3 .container {
  position: relative;
}

.sidebar__single {
  padding: 50px;
  background-color: var(--paroti-gray, #f1f6f7);
}

.sidebar__single--search {
  padding: 0;
  background-color: var(--paroti-primary, #138999);
  position: relative;
}

.sidebar__single--search input[type="text"],
.sidebar__single--search input[type="search"] {
  border: none;
  outline: none;
  width: 100%;
  height: 67px;
  background-color: var(--paroti-primary, #138999);
  display: block;
  padding-left: 50px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

.sidebar__single--search button[type="submit"] {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  font-size: 22px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0;
  width: auto;
}

.sidebar__title {
  margin: 0;
  letter-spacing: -0.04em;
  font-size: 20px;
  font-weight: 800;
  color: var(--paroti-black, #144047);
  margin-top: -5px;
  margin-bottom: 25px;
}

.sidebar__single + .sidebar__single {
  margin-top: 30px;
}

.sidebar__post {
  margin: -15px;
}

.sidebar__post li {
  padding: 15px;
  overflow: visible;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background-color: rgba(0, 0, 0, 0);
}

.sidebar__post li:hover {
  background-color: #fff;
}

.sidebar__post li::after {
  content: "";
  clear: both;
  display: table;
}

.sidebar__post li img {
  float: left;
  margin-right: 20px;
}

.sidebar__post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1em;
  font-size: 14px;
  color: var(--paroti-text, #768385);
}

.sidebar__post__meta i {
  color: var(--paroti-secondary, #fdbe44);
  font-size: 14px;
  margin-right: 5px;
}

.sidebar__post__title {
  color: var(--paroti-black, #144047);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2em;
  margin-top: 10px;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post__title:hover {
  color: var(--paroti-base, #a50d0d);
}

.sidebar__lists {
  margin-bottom: -10px;
  margin-top: -15px;
}

.sidebar__lists li {
  font-size: 16px;
  line-height: 2.5rem;
}

.sidebar__lists li::after {
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: right;
  font-size: 14px;
  color: var(--paroti-black, #144047);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__lists li a {
  color: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__lists li:hover::after {
  color: var(--paroti-base, #a50d0d);
}

.sidebar__lists li:hover a {
  text-shadow: 0 0 1px currentColor;
  color: var(--paroti-black, #144047);
}

.sidebar__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0;
  margin-left: -5px;
  margin-right: -5px;
  margin-top: -10px;
}

.sidebar__tags a {
  background-color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 10px;
  font-weight: 800;
  color: var(--paroti-black, #144047);
  padding: 3px 18px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__tags a:hover {
  color: #ffffff;
  background-color: var(--paroti-base, #a50d0d);
}

.sidebar__organizer {
  margin-bottom: 0;
}

.sidebar__organizer > li {
  padding-left: 79px;
  position: relative;
}

.sidebar__organizer > li img {
  position: absolute;
  top: 0;
  left: 0;
}

.sidebar__organizer > li ul {
  margin: 0;
}

.sidebar__organizer > li ul li {
  color: var(--paroti-text, #768385);
  font-size: 15px;
  line-height: 1.2em;
}

.sidebar__organizer > li ul li + li {
  margin-top: 11px;
}

.sidebar__organizer > li ul li i {
  color: var(--paroti-base, #a50d0d);
  margin-right: 4px;
}

.sidebar__organizer > li ul li a {
  color: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__organizer > li ul li a:hover {
  color: var(--paroti-secondary, #fdbe44);
}

.sidebar__organizer__date {
  font-size: 14px;
  font-weight: 500;
  color: var(--paroti-black, #144047);
  line-height: 1.2em;
  text-shadow: 0 0 1px currentColor;
  margin-bottom: 7px;
}

.sidebar__organizer__meta {
  margin: 0;
  font-size: 16px;
  color: var(--paroti-text, #768385);
  line-height: 1.2em;
  margin-bottom: 15px;
}

.sidebar__organizer__meta span {
  font-weight: 800;
  color: var(--paroti-black, #144047);
}

.sidebar__donations {
  margin: 0;
}

.sidebar__donations li {
  position: relative;
/*  padding-left: 89px;*/
  margin-right: -4px;
}

.sidebar__donations li a:hover {
color: red;
font-weight: 800;
}


.sidebar__donations li + li {
  margin-top: 30px;
}

.sidebar__donations li img {
  position: absolute;
  top: 0;
  left: 0;
}

.sidebar__donations__amount {
  line-height: 1em;
  color: var(--paroti-base, #a50d0d);
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  margin-bottom: 10px;
}

.sidebar__donations__meta {
  margin: 0;
  line-height: 1.2em;
  font-size: 14px;
  color: var(--paroti-text, #768385);
  margin-bottom: 7px;
}

.sidebar__donations__meta span {
  color: var(--paroti-black, #144047);
  font-weight: bold;
  font-size: 16px;
  letter-spacing: -0.04em;
}

.sidebar__donations__text {
  margin: 0;
  line-height: 1.2em;
}

.blog-details__image {
  position: relative;
}

.blog-details__image img {
  max-width: 100%;
}

.blog-details__content p {
  margin: 0 0 1.875rem;
}

.blog-details .blog-card__meta {
  margin: 0;
  margin-top: 20px;
}

.blog-details .blog-card__title {
  margin: 0;
  font-size: 2.125rem;
  margin-bottom: 10px;
}

.blog-details__bottom {
  border-top: 1px solid var(--paroti-border, #dde8ea);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 20px;
  margin-top: 50px;
}

.blog-details__tags span {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--paroti-black, #144047);
}

.blog-details__tags a {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  margin-left: 10px;
  font-weight: 800;
  padding: 12px 18px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background-color: var(--paroti-base, #a50d0d);
  color: #ffffff;
}

.blog-details__tags a:hover {
  background-color: var(--paroti-black, #144047);
  color: #ffffff;
}

.blog-details__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-details__social a {
  width: 40px;
  height: 40px;
  background-color: var(--paroti-gray, #f1f6f7);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 14px;
  color: var(--paroti-black, #144047);
}

.blog-details__social a:hover {
  background-color: var(--paroti-black, #144047);
  color: #ffffff;
}

.blog-details__social a + a {
  margin-left: 10px;
}

.blog-details__author {
  padding: 3.125rem;
  margin-bottom: 3.125rem;
  background-color: var(--paroti-gray, #f1f6f7);
}

.blog-details__author img {
  border-radius: 50%;
  float: left;
  margin-right: 30px;
  margin-bottom: 30px;
}

.blog-details__author__name {
  font-size: 24px;
  margin: 0;
  color: var(--paroti-black, #144047);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-top: -5px;
}

.blog-details__author__bio {
  margin: 0;
  margin-bottom: -5px;
  margin-top: 10px;
}

.blog-details__sec__title {
  margin: 0;
  color: var(--paroti-black, #144047);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.875rem;
  margin-top: -7px;
  margin-bottom: -7px;
  padding-bottom: 3.75rem;
}

.blog-details__comments__list li {
  border-bottom: 1px solid var(--paroti-border, #dde8ea);
  padding-bottom: 3.75rem;
  margin-bottom: 3.75rem;
  position: relative;
}

.blog-details__comments__list li::after {
  content: "";
  clear: both;
  display: table;
}

.blog-details__comments__list li img {
  float: left;
  border-radius: 50%;
  margin-right: 30px;
}

.blog-details__comments__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 15px;
}

.blog-details__comments__name {
  margin: 0;
  color: var(--paroti-black, #144047);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-right: 10px;
}

.blog-details__comments__date {
  margin: 0;
  color: var(--paroti-base, #a50d0d);
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
}

.blog-details__comments__text {
  max-width: 610px;
  margin: 0;
  margin-bottom: -5px;
}

.blog-details__comments__btn {
  padding: 5.5px 30px;
  font-size: 12px;
  float: right;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .blog-details__comments__btn {
    margin-top: 0;
    float: none;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.blog-carousel .tns-ovh {
  overflow: visible;
}

.blog-carousel .tns-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-carousel .tns-item.tns-slide-active {
  opacity: 1;
  visibility: visible;
}

/*
  // Events
*/

.events-card h3{
  padding-top:10px;
}

.events-card {
  position: relative;
  border-radius: 20px;
}

.events-card__image {
  background-color: #161819;
border-radius: 20px;
box-shadow: 0 0px 32px rgb(0 0 0 / 31%);
overflow: hidden;
}


.events-card__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease; /* Smooth animation */
}

.events-card__image:hover img {
    transform: scale(1.15); /* Slight zoom */
}

.events-card__image--hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: normal !important;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
  visibility: visible;
  border-radius: 20px;
}

.events-card:hover .events-card__image--hover {
  opacity: 0;
  visibility: hidden;
}


.events-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 30px);
    /* background-color: rgba(var(--paroti-black-rgb, 20, 64, 71), 0.95); */
    padding: 30px;
    background: #363232c2;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.events-card__date {
  position: absolute;
  bottom: 100%;
  right: 0;
  background-color: var(--paroti-base, #a50d0d);
  text-transform: uppercase;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1em;
  padding: 10.5px 14.5px;
}

.events-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  margin-top: -10px;
}

.events-card__meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 14px;
}

.events-card__meta li + li {
  margin-left: 6px;
}

.events-card__meta li i {
  color: var(--paroti-secondary, #fdbe44);
  margin-right: 3px;
}

.events-card__meta li a {
  color: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.events-card__meta li a:hover {
  color: var(--paroti-base, #a50d0d);
}

.events-card__title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.2em;
  margin-top: 3px;
  margin-bottom: -5px;
  max-width: 205px;
}

.events-card__title a {
  color: inherit;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 2px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 2px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.events-card__title a:hover {
  background-size: 100% 2px;
}

.events-details__image {
  position: relative;
}

.events-details__image img {
  max-width: 100%;
}

.events-details__image .events-card__date {
  bottom: 0;
  right: auto;
  left: 0;
}

.events-details__content h4 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2em;
  color: var(--paroti-black, #144047);
  margin: 0;
  margin-bottom: 15px;
}

.events-details__content p {
  margin: 0 0 1.875rem;
}

.events-details__btn {
  margin-top: 10px;
}

.events-details .events-card__title {
  margin: 0;
  font-size: 2.25rem;
  color: var(--paroti-black, #144047);
  max-width: unset;
  margin-bottom: 10px;
  margin-top: -10px;
}

.events-details__sidebar {
  padding: 50px;
  background-color: #fff;
  border-top: 10px solid var(--paroti-secondary, #fdbe44);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.events-details__sidebar__single + .events-details__sidebar__single {
  margin-top: 30px;
}

.events-details__sidebar__info {
  margin-bottom: -5px;
}

.events-details__sidebar__info p {
  margin: 0;
  font-size: 14px;
  color: var(--paroti-text, #768385);
  line-height: 24px;
  margin-top: -5px;
}

.events-details__sidebar__info p + p {
  margin-top: 20px;
}

.events-details__sidebar__info p a {
  color: inherit;
}

.events-details__sidebar__info p a:hover {
  color: var(--paroti-secondary, #fdbe44);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.events-details__sidebar__info p span {
  display: block;
  color: var(--paroti-black, #144047);
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 1px;
}

.events-details__sidebar__map {
  display: block;
  border: none;
  width: 100%;
  height: 168px;
  mix-blend-mode: luminosity;
  background-color: var(--paroti-gray, #f1f6f7);
}

.events-details__sidebar__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.events-details__sidebar__social a {
  width: 40px;
  height: 40px;
  background-color: var(--paroti-gray, #f1f6f7);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 14px;
  color: var(--paroti-black, #144047);
}

.events-details__sidebar__social a:hover {
  background-color: var(--paroti-black, #144047);
  color: #ffffff;
}

.events-details__sidebar__social a + a {
  margin-left: 10px;
}

.event-home-two__content {
  position: relative;
  z-index: 10;
}

@media (min-width: 1200px) {
  .event-home-two__content {
    margin-right: -30px;
  }
}

.event-home-two__content__text {
  margin-top: -30px;
  padding-bottom: 38px;
}

.event-home-two__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1200px) {
  .event-home-two__carousel {
    margin-left: 70px;
    margin-right: 30px;
  }
}

.event-home-two__carousel .owl-stage-outer {
  overflow: visible;
}

.event-home-two__carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.event-home-two__carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1200px) {
  .event-home-two__carousel .owl-item.active + .owl-item {
    opacity: 1;
    visibility: visible;
  }
}

/*
  // Donations
*/
.donations-card {
      background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.donations-card__image {
  position: relative;
}



.donations-card__image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}



.donations-card__category {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #2e8a21;
  text-transform: uppercase;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1em;
  padding: 11.5px 19.5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.donations-card__category a {
  color: inherit;
}

.donations-card__category:hover {
  background-color: var(--paroti-black, #144047);
  color: #fff;
}

.donations-card__content {
  padding: 15px 10px 10px;
  /*background-color: #fff;*/
  -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
}

.donations-card__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25em;
  color: var(--paroti-black, #144047);
  margin-bottom: 10px;
}

.donations-card__title a {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 2px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 2px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.donations-card__title a:hover {
  color: var(--accent-freedom-light);
  text-decoration: none;
}

.donations-card__title a:hover {
  background-size: 100% 2px;
}

.donations-card__text {
    margin: 0;
    /*border-bottom: 1px solid var(--paroti-border, #dde8ea);*/
    /*padding-bottom: 20px;*/
    color: #fff;
}
.donations-card .bar {
  width: 100%;
  height: 6px;
  background-color: var(--paroti-gray, #f1f6f7);
  position: relative;
  border-radius: 3px;
  margin-top: 49px;
}

.whoweare .blog-card__links{
  color: var(--accent-freedom-light);
}

.donations-card .bar-inner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  border-radius: 3px;
  background-color: var(--accent-color);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.donations-card .bar-inner .count-text {
  position: absolute;
  bottom: 100%;
  right: 0;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: bold;
  line-height: 1em;
  padding-bottom: 9px;
}

.donations-card__amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2px;
  margin-bottom: -9px;
}

.donations-card__amount p {
  margin: 0;
  font-size: 14px;
  color: var(--paroti-text, #768385);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.donations-card__amount p span {
  color: var(--paroti-black, #144047);
  font-weight: bold;
  font-size: 18px;
  letter-spacing: -0.04em;
  margin-right: 5px;
}

[class*="col-"]:nth-child(2) .donations-card {
  --accent-color: #8139e7;
}

[class*="col-"]:nth-child(3) .donations-card {
  --accent-color: #fdbe44;
}

[class*="col-"]:nth-child(4) .donations-card {
  --accent-color: #138999;
}

[class*="col-"]:nth-child(5) .donations-card {
  --accent-color: #ceaa6a;
}

[class*="col-"]:nth-child(6) .donations-card {
  --accent-color: #2ec58e;
}

.donations-details .donations-card .bar {
  margin-top: 5px;
}

.donations-details .donations-card__content {
  margin-bottom: 30px;
}

.donations-details .donations-card__title {
  margin: 0;
  margin-bottom: 20px;
  font-size: 2.125rem;
}

.donations-details__content img {
  max-width: 100%;
  margin-bottom: 30px;
}

.donations-details__content p {
  margin: 0 0 1.875rem;
}

.donations-details__list {
  margin: 0 0 1.875rem;
}

.donations-details__list li {
  font-size: 18px;
  font-weight: 800;
  color: var(--paroti-black, #144047);
  letter-spacing: -0.04em;
  position: relative;
  padding-left: 24px;
}

.donations-details__list li + li {
  margin-top: 4px;
}

.donations-details__list li i {
  color: var(--paroti-base, #a50d0d);
  position: absolute;
  top: 8px;
  left: 0;
}

.donations-details__bottom {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.donations-details__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 30px;
}

@media (max-width: 479px) {
  .donations-details__social {
    margin-left: 0;
    margin-top: 20px;
  }
}

.donations-details__social a {
  width: 40px;
  height: 40px;
  background-color: var(--paroti-gray, #f1f6f7);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 14px;
  color: var(--paroti-black, #144047);
}

.donations-details__social a:hover {
  background-color: var(--paroti-black, #144047);
  color: #ffffff;
}

.donations-details__social a + a {
  margin-left: 10px;
}

.donations-details__presentation {
  padding: 3.125rem;
  background-color: var(--paroti-gray, #f1f6f7);
  margin-top: 30px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .donations-details__presentation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.donations-details__presentation i {
  font-size: 50px;
  color: var(--paroti-base, #a50d0d);
}

.donations-details__presentation__title {
  margin: 0;
  color: var(--paroti-black, #144047);
  letter-spacing: -0.04em;
  font-size: 26px;
  font-weight: 800;
  margin-top: 15px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .donations-details__presentation__title {
    margin: 0;
    margin-left: 20px;
  }
}

@media (min-width: 768px) {
  .donations-details__presentation__btn {
    margin-left: auto;
  }
}

.donations-details__presentation__btn::before {
  background-color: var(--paroti-primary, #138999);
}

.donations-carousel {
  position: relative;
}

.donations-carousel .tns-ovh {
  overflow: visible;
}

.donations-carousel .tns-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.donations-carousel .tns-item.tns-slide-active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1200px) {
  .donations-carousel .tns-item.tns-slide-active + .tns-item {
    opacity: 1;
    visibility: visible;
  }
}

.donations-carousel .tns-nav {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  bottom: calc(100% + 84px);
  right: 0;
  display: none;
}

@media (min-width: 992px) {
  .donations-carousel .tns-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.donations-carousel .tns-nav button {
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 2px solid var(--paroti-black, #144047);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.donations-carousel .tns-nav button:hover, .donations-carousel .tns-nav button.tns-nav-active {
  background-color: var(--paroti-black, #144047);
}

.donations-carousel .tns-nav button + button {
  margin-left: 6px;
}

.donation-two {
  background-color: var(--paroti-gray, #f1f6f7);
  position: relative;
}

.donation-two::before {
  background-color: var(--paroti-gray, #f1f6f7);
  content: "";
  background-image: url(../images/shapes/donation-2-bg-1-1.png);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-position: bottom center;
  background-repeat: repeat-x;
  -webkit-animation: bgSlide 20s linear infinite;
          animation: bgSlide 20s linear infinite;
}

.donation-two .container {
  position: relative;
}

.donation-two__carousel .owl-stage-outer {
  overflow: visible;
}

.donation-two__carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 500ms ease, visibility 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.donation-two__carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 992px) {
  .donation-two__carousel .owl-item.active + .owl-item {
    opacity: 1;
    visibility: visible;
  }
}

.donation-two__text {
  margin: 0;
  margin-top: -25px;
}

.donation-card-two {
  padding: 50px;
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  --accent-color: var(--paroti-base, #a50d0d);
}

.donation-card-two__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  background-image: url(../images/shapes/donation-card-two-bg-1.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.donation-card-two:hover .donation-card-two__bg {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.donation-card-two__title {
  margin: 0;
  position: relative;
  font-size: 20px;
  line-height: 1.5em;
  color: #000;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-top: -7px;
}

.donation-card-two__title a {
  color: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 2px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 2px no-repeat;
  transition: all 500ms ease;
}

.donation-card-two__title a:hover {
  background-size: 100% 2px;
}

.donation-card-two:hover .donation-card-two__title a {
  color: #fff;
}

.donation-card-two__text {
  position: relative;
  margin: 0;
  font-size: 15px;
  line-height: 1.8666666666666667em;
  color: #000;
  margin-top: 14px;
  margin-bottom: 25px;
  margin-right: -3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.donation-card-two:hover .donation-card-two__text {
  color: #fff;
  opacity: 0.9;
}

.donation-card-two__icon {
  position: relative;
  color: var(--accent-color);
  font-size: 64px;
  display: inline-block;
  bottom: -5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.donation-card-two:hover .donation-card-two__icon {
  color: #fff;
}

.donation-card-two__link {
  position: absolute;
  bottom: 50px;
  right: 30px;
  width: 43px;
  height: 43px;
  background-color: var(--paroti-gray, #f1f6f7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--paroti-black, #144047);
  font-size: 12px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.donation-card-two__link:hover {
  color: #fff;
  background-color: rgba(var(--paroti-black-rgb, 20, 64, 71), 0.1);
}

.donation-card-two:hover .donation-card-two__link {
  color: #fff;
  background-color: rgba(var(--paroti-black-rgb, 20, 64, 71), 0.1);
}

.donation-card-two__shape {
  width: 64px;
  height: 2px;
  background-color: var(--accent-color);
  position: absolute;
  bottom: 0;
  left: 50px;
}

.donation-home-3 {
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.donation-home-3__shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 480px;
  background-color: var(--paroti-gray, #f1f6f7);
}

@media (min-width: 768px) {
  .donation-home-3__shape {
    height: 490px;
  }
}

@media (min-width: 992px) {
  .donation-home-3__shape {
    height: 483px;
  }
}

@media (min-width: 1200px) {
  .donation-home-3__shape {
    height: 544px;
  }
}

.donation-home-3__shape::before {
  content: "";
  background-image: url(../images/shapes/donation-2-bg-1-1.png);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-position: bottom center;
  background-repeat: repeat-x;
  -webkit-animation: bgSlide 20s linear infinite;
          animation: bgSlide 20s linear infinite;
}

.donation-home-3 .container {
  position: relative;
}

.donation-home-3__carousel .owl-stage-outer {
  overflow: visible;
}

.donation-home-3__carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 500ms ease, visibility 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.donation-home-3__carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.donation-card-three {
  --accent-color: #8139e7;
}

.donation-card-three__image img {
  width: 100%;
}

.donation-card-three__content {
  background-color: var(--accent-color);
  text-align: center;
  background-image: url(../images/shapes/donation-3-1.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  padding-left: 40px;
  padding-right: 40px;
}

.donation-card-three__icon {
  width: 126px;
  height: 126px;
  background-color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: var(--accent-color);
  position: relative;
  border-radius: 50%;
  font-size: 60px;
  margin-top: -63px;
  z-index: 9;
}

.donation-card-three__icon::before {
  content: "";
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.donation-card-three__icon i {
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.donation-card-three:hover .donation-card-three__icon i {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.donation-card-three__title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0;
  margin-top: 25px;
  margin-bottom: 15px;
}

.donation-card-three__title a {
  color: inherit;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 2px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 2px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.donation-card-three__title a:hover {
  background-size: 100% 2px;
}

.donation-card-three__text {
  margin: 0;
  color: #fff;
  opacity: 0.7;
  line-height: 1.875em;
  padding-bottom: 53.4px;
}

/*
  // Volunteers
*/

.volunteers-card {
    --accent-color: var(--paroti-primary, #138999);
    background-color: #2e8a10;
    padding-left: 40px;
    padding-top: 40px;
    position: relative;
    border-radius: 15px;
    box-shadow: 0px 0px 10px #000000b3;
}

.volunteers-card__image img {
  max-width: 100%;
}

.volunteers-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25em;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-top: -6px;
  margin-bottom: 5px;
}

.volunteers-card__title a {
  color: inherit;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 2px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 2px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.volunteers-card__title a:hover {
  background-size: 100% 2px;
}

.volunteers-card__designation {
  color: #fff;
  font-size: 14px;
  opacity: 0.6;
  margin: 0;
  line-height: 1.2em;
  margin-bottom: 36px;
}

.volunteers-card__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  bottom: 20px;
  left: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
}

.volunteers-card__social a {
  width: 40px;
  height: 40px;
  background-color: var(--paroti-gray, #f1f6f7);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 14px;
  color: var(--paroti-black, #144047);
}

.volunteers-card__social a:hover {
  background-color: var(--accent-color);
  color: #ffffff;
}

.volunteers-card__social a + a {
  margin-left: 10px;
}

.volunteers-card:hover .volunteers-card__social {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

[class*=col-]:nth-child(2) .volunteers-card {
  --accent-color: var(--paroti-base, #a50d0d);
}

[class*=col-]:nth-child(3) .volunteers-card {
  --accent-color: var(--paroti-secondary, #fdbe44);
}

[class*=col-]:nth-child(4) .volunteers-card {
  --accent-color: #8139e7;
}

[class*=col-]:nth-child(5) .volunteers-card {
  --accent-color: #ceaa6a;
}

[class*=col-]:nth-child(6) .volunteers-card {
  --accent-color: #2ec58e;
}

/*
  // Sponsors
*/
.sponsor-carousel {
  border-top: 1px solid var(--paroti-border, #dde8ea);
}

.sponsor-carousel--home-2 {
  border-top: 0;
  border-bottom: 1px solid var(--paroti-border, #dde8ea);
}

.sponsor-carousel--home-3 {
  background-color: var(--paroti-gray, #f1f6f7);
  background-size: cover;
  background-position: top center;
  border: none;
}

.sponsor-carousel img {
  max-width: 100%;
  opacity: 0.3;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sponsor-carousel img:hover {
  opacity: 0.7;
}

/*
  // Testimonials
*/
.testimonials-one {
  position: relative;
  background-color: var(--paroti-primary, #138999);
}

.testimonials-one--bottom-pd-lg {
  padding-bottom: 7.5rem;
}

@media (min-width: 1200px) {
  .testimonials-one--bottom-pd-lg {
    padding-bottom: 13.75rem;
  }
}

.testimonials-one--bottom-pd-lg .testimonials-one__gallery img:nth-child(4) {
  bottom: 242px;
}

.testimonials-one--bottom-pd-lg .testimonials-one__gallery img:nth-child(5) {
  bottom: 195px;
}

.testimonials-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-color: var(--paroti-primary, #138999);
  opacity: 0.15;
  mix-blend-mode: luminosity;
}

.testimonials-one__gallery {
  display: none;
}

@media (min-width: 992px) {
  .testimonials-one__gallery {
    display: block;
  }
}

.testimonials-one__gallery img {
  position: absolute;
  opacity: 0.5;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.07);
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
}

.testimonials-one__gallery img:nth-child(1) {
  top: 85px;
  right: 53%;
}

.testimonials-one__gallery img:nth-child(2) {
  top: 60px;
  right: 30%;
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.testimonials-one__gallery img:nth-child(3) {
  top: 270px;
  right: 230px;
}

.testimonials-one__gallery img:nth-child(4) {
  bottom: 147px;
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
  right: 58%;
}

.testimonials-one__gallery img:nth-child(5) {
  bottom: 95px;
  right: 40%;
}

.testimonials-one__text {
  margin: 0;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 40px;
}

.testimonials-one__btn:hover {
  color: var(--paroti-black, #144047);
}

.testimonials-one__btn::before {
  background-color: var(--paroti-black, #144047);
}

.testimonials-one__btn::after {
  background-color: #fff;
}

.testimonials-one .sec-title {
  padding-bottom: 30px;
}

.testimonials-one .sec-title__tagline {
  color: #8bd1da;
}

.testimonials-one .sec-title__title {
  color: #fff;
}

.testimonials-one .container {
  position: relative;
}

.testimonials-one .thm-tns__carousel {
  margin-bottom: 31px;
}

.testimonials-one .tns-ovh {
  overflow: visible;
}

.testimonials-one .tns-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonials-one .tns-item.tns-slide-active {
  opacity: 1;
  visibility: visible;
}

.testimonials-card {
  background-color: #fff;
  border-left: 4px solid var(--paroti-secondary, #fdbe44);
  position: relative;
  padding: 3.75rem;
  padding-bottom: 1.875rem;
}

.testimonials-card::before {
  content: "";
  width: 86px;
  height: 31px;
  background-color: var(--paroti-secondary, #fdbe44);
  position: absolute;
  top: 100%;
  left: 60px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%, 50% 100%);
}

.testimonials-card::after {
  content: "";
  width: 86px;
  height: 31px;
  position: absolute;
  top: calc(100% - 2px);
  left: 62px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%, 50% 100%);
}

.testimonials-card__bg {
  position: absolute;
  bottom: 0;
  right: 0;
}

.testimonials-card__icon {
  position: absolute;
  bottom: 3.75rem;
  right: 3.75rem;
  font-size: 54px;
  color: var(--paroti-secondary, #fdbe44);
  display: none;
}

@media (min-width: 481px) {
  .testimonials-card__icon {
    display: block;
  }
}

.testimonials-card__text {
  position: relative;
  font-size: 1.25rem;
  line-height: 2.375rem;
  margin-top: -12px;
  margin-bottom: 22px;
}

.testimonials-card__meta {
  position: relative;
}

.testimonials-card__meta img {
  float: left;
  border-radius: 50%;
  border: 8px solid #ffffff;
  -webkit-box-shadow: 0 0 0 2px var(--paroti-base, #a50d0d);
          box-shadow: 0 0 0 2px var(--paroti-base, #a50d0d);
  margin-right: 22px;
}

.testimonials-card__name {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--paroti-black, #144047);
  letter-spacing: -0.04em;
  line-height: 1em;
  margin-bottom: 10px;
  padding-top: 22px;
}

.testimonials-card__designation {
  line-height: 1em;
  margin: 0;
}

.testimonials-two {
/*  background-color: var(--paroti-base, #a50d0d);*/
  position: relative;
  padding: 3rem 0 1em;
}

.testimonials-two::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/shapes/funfact-bg-1-1.png);
  background-repeat: repeat-x;
  background-position: bottom center;
  display: none;
}

@media (min-width: 992px) {
  .testimonials-two::after {
    display: block;
  }
}



.testimonials-two__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/backgrounds/testimonials-2-bg.jpg);
  background-size: cover;
  background-position: center center;
  opacity: 0.1;
  background-blend-mode: luminosity;
}

.testimonials-two .container {
  position: relative;
}

.testimonials-two__thumb {
  display: none;
  position: absolute;
  top: 0;
  left: 15px;
}

@media (min-width: 1200px) {
  .testimonials-two__thumb {
    display: block;
  }
}

.testimonials-two__thumb .swiper-slide {
  cursor: pointer;
  overflow: hidden;
  border-radius: 50%;
}

.testimonials-two__thumb .swiper-slide img {
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonials-two__thumb .swiper-slide.swiper-slide-thumb-active img {
  opacity: 0.7;
}

.testimonials-two .swiper-pagination-bullets {
  margin-top: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  bottom: auto;
  left: auto;
}

@media (min-width: 992px) {
  .testimonials-two .swiper-pagination-bullets {
    padding-left: 70px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.testimonials-two .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0);
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
  line-height: 1;
  margin: 0;
}

.testimonials-two .swiper-pagination-bullets .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 6px;
}

.testimonials-two .swiper-pagination-bullets .swiper-pagination-bullet:hover, .testimonials-two .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #ffffff;
}

@media (min-width: 1200px) {
  .testimonials-two__carousel {
    margin-left: 88px;
  }
}

.testimonials-two__card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 40px 80px;
    border-radius: 20px;
}

@media (min-width: 768px) {
  .testimonials-two__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: center;
  }
}

.testimonials-two__card__image {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .testimonials-two__card__image {
    margin-bottom: 0;
    margin-right: 30px;
  }
}

.testimonials-two__card__text {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.6667em;
  font-weight: 800;
  letter-spacing: -0.04em;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .testimonials-two__card__text {
    margin-top: 30px;
  }
}

@media (min-width: 992px) {
  .testimonials-two__card__text {
    font-size: 20px;
  }
}

.testimonials-two__card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0px;
}

.testimonials-two__card__designation {
    color: #b7d970;
    font-weight: 500;
    margin: 0;
    line-height: 1;
    font-size: 18px;
}

.testimonials-two__card__icon {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 54px;
  color: var(--paroti-secondary, #fdbe44);
}

/*
  // Cta
*/
.cta-one {
  background-color: #1d1e1e;
  position: relative;
  overflow: hidden;
}

.cta-one--pad-bottom {
  padding-bottom: 13.75rem;
}

.cta-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: color-dodge;
  background-color: var(--paroti-black, #144047);
  opacity: 0.3;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}

.cta-one__shape {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0px;
  background-position: top left;
  background-repeat: no-repeat;
  display: none;
}

@media (min-width: 992px) {
  .cta-one__shape {
    display: block;
  }
}

.cta-one .container {
  position: relative;
}

.cta-one .sec-title {
  padding-bottom: 40px;
}

.cta-one .sec-title__tagline {
  color: #ffffff;
  opacity: 0.7;
  margin-bottom: 22px;
}

.cta-one .sec-title__tagline::after {
  display: none;
}

@media (min-width: 992px) {
  .cta-one .sec-title__tagline {
    font-size: 20px;
  }
}

.cta-one .sec-title__title {
  color: #ffffff;
}

.cta-one .sec-title__title span {
  position: relative;
}

.cta-one .sec-title__title span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/shapes/cta-s-2-1.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 85%;
}

.cta-one__btn {
  margin-bottom: -10px;
}

.cta-two {
  background-color: var(--paroti-primary, #138999);
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 50px;
  padding-left: 3.5625rem;
  padding-right: 3.5625rem;
  position: relative;
}

.cta-two__icon {
  font-size: 58px;
  color: #fff;
}

.cta-two__title {
  margin: 0;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 35px;
  margin-top: 18px;
}

.cta-two__btn::before {
  background-color: var(--paroti-secondary, #fdbe44);
}

.cta-two__arrow {
  position: absolute;
  bottom: 152px;
  right: 127px;
  background-image: url(../images/shapes/cta-2-arrow-1.png);
  width: 40px;
  height: 67px;
  background-repeat: no-repeat;
  display: block;
  -webkit-animation: btnIconMove 4s linear 0ms infinite;
          animation: btnIconMove 4s linear 0ms infinite;
}

.cta-three__inner {
  background-color: #8139e7;
  position: relative;
  text-align: center;
  padding: 4.25rem 15px;
}

@media (min-width: 992px) {
  .cta-three__inner {
    text-align: left;
    padding: 0;
    padding-right: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cta-three__inner__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #8139e7;
  opacity: 0.05;
  mix-blend-mode: luminosity;
  background-position: bottom center;
  background-repeat: repeat-x;
  -webkit-animation: bgSlide 20s linear infinite;
          animation: bgSlide 20s linear infinite;
}

.cta-three__icon {
  position: relative;
  width: 120px;
  height: 120px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #7832dc;
}

@media (min-width: 992px) {
  .cta-three__icon {
    height: 197px;
    margin-right: 57px;
  }
}

.cta-three__icon i {
  font-size: 58px;
}

.cta-three__title {
  position: relative;
  font-size: 2.25rem;
  line-height: 1.2em;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  margin: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .cta-three__title {
    max-width: 415px;
    margin-right: auto;
    margin: 0;
  }
}

.cta-three__btns {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}

@media (min-width: 992px) {
  .cta-three__btns {
    margin-left: auto;
  }
}

.cta-three__btn::before {
  background-color: var(--paroti-secondary, #fdbe44);
}

.cta-three__btn::after {
  background-color: var(--paroti-base, #a50d0d);
}

.cta-four {
  margin-bottom: 2px;
}

.cta-four .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.cta-four .row {
  --bs-gutter-x: 2px;
  --bs-gutter-y: 2px;
}

.cta-four__item {
  --accent-color: var(--paroti-base, #a50d0d);
  position: relative;
  text-align: center;
  background-color: #242525f2;
  padding-top: 5.9375rem;
  padding-bottom: 4.875rem;
}

.cta-four__item__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--paroti-black, #144047);
  opacity: 0.3;
  background-size: cover;
  background-position: center;
  mix-blend-mode: color-dodge;
}

.cta-four__item__icon {
  position: relative;
  width: 64px;
  height: 64px;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 27px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.cta-four__item__icon::before {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: -6px;
  right: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-four__item__icon i {
  color: var(--accent-color);
  font-size: 32px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.cta-four__item:hover .cta-four__item__icon {
  background-color: var(--accent-color);
}

.cta-four__item:hover .cta-four__item__icon i {
  color: #fff;
}

.cta-four__item__title {
  position: relative;
  color: #fff;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0;
  line-height: 1.2em;
  max-width: 278px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.cta-four__item__title a {
  color: inherit;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 2px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 2px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.cta-four__item__title a:hover {
  background-size: 100% 2px;
}

/*
  // funfact
*/
.funfact-one--m-margin-top {
  margin-top: -6.25rem;
}

.funfact-one__inner {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}

.funfact-one__inner::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: #8139e7;
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 768px) {
  .funfact-one__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .funfact-one__inner {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.funfact-one__item {
  text-align: center;
  padding: 9px 0;
}

@media (min-width: 768px) {
  .funfact-one__item + .funfact-one__item {
    border-left: 1px solid var(--paroti-border, #dde8ea);
  }
}

.funfact-one__title {
  margin: 0;
  color: var(--paroti-black, #144047);
  letter-spacing: -0.04em;
  font-weight: 800;
  font-size: 30px;
  line-height: 1em;
  margin-bottom: 7px;
}

@media (min-width: 768px) {
  .funfact-one__title {
    font-size: 40px;
  }
}

.funfact-one__text {
  margin: 0;
  line-height: 1.2em;
}

.funfact-two {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-blend-mode: luminosity;
    background-color: #ddd;
}

.funfact-two__shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/shapes/funfact-bg-1-1.png);
  background-repeat: repeat-x;
  background-position: bottom center;
}

.funfact-two .container {
  position: relative;
}

.funfact-two__list {
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}

@media (min-width: 992px) {
  .funfact-two__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    grid-gap: 0px;
  }
}

.funfact-two__list__item {
  position: relative;
  --accent-color: var(--paroti-base, #a50d0d);
}

.funfact-two__list__item:not(:last-child)::before {
  content: "";
  width: 1px;
  height: 139px;
  position: absolute;
  top: 50%;
  right: -100px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  display: none;
}

@media (min-width: 992px) {
  .funfact-two__list__item:not(:last-child)::before {
    display: block;
  }
}

.funfact-two__list__icon {
  width: 119px;
  height: 119px;
  background-color: var(--accent-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  font-size: 57px;
  border-radius: 50%;
  margin-bottom: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.funfact-two__list__icon i {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.funfact-two__list__item:hover .funfact-two__list__icon {
  background-color: #2e8a0e;
  color: #ffffff;
}

.funfact-two__list__item:hover .funfact-two__list__icon i {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.funfact-two__list__count {
  margin: 0;
  color: #000;
  font-size: 40px;
  letter-spacing: -0.04em;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 11px;
}

.funfact-two__list__text {
  margin: 0;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
}

/*
  // About
*/
.about-one {
  position: relative;
}

.about-one .container {
  position: relative;
}

.about-one__shape-1, .about-one__shape-2 {
  position: absolute;
  display: none;
}

@media (min-width: 992px) {
  .about-one__shape-1, .about-one__shape-2 {
    display: block;
  }
}

.about-one__shape-1 {
  top: 20px;
  left: 0;
}

.about-one__shape-2 {
  bottom: 0;
  right: 0;
}

.about-one__images {
  position: relative;
  display: inline-block;
}

.about-one__images::before {
  content: "";
  position: absolute;
  top: 50px;
  left: -20px;
  bottom: 50px;
  right: 0;
  background-color: var(--paroti-secondary, #fdbe44);
}

.about-one__images img {
  position: relative;
}

.about-one__images img:nth-child(2) {
  display: none;
  position: absolute;
  bottom: -50px;
  right: -100px;
}

@media (min-width: 1200px) {
  .about-one__images img:nth-child(2) {
    display: block;
  }
}

.about-one .sec-title {
  padding-top: 10px;
  padding-bottom: 10px;
}
.about-one__text {
  margin: 0;
}

.about-one__tagline {
  color: var(--paroti-base, #a50d0d);
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1.375rem;
}

.about-one__list {
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  padding-bottom: 2.6875rem;
}

@media (min-width: 576px) {
  .about-one__list {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.about-one__list li {
  background-color: var(--paroti-gray, #f1f6f7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14.5px 30px;
  color: var(--paroti-black, #144047);
  font-size: 16px;
  font-weight: 800;
}

.about-one__list li i {
  color: var(--paroti-primary, #138999);
  margin-right: 10px;
}

.about-one__meta {
  position: relative;
  margin-top: 2.625rem;
}

.about-one__meta img {
  float: left;
  border-radius: 50%;
  border: 8px solid #ffffff;
  -webkit-box-shadow: 0 0 0 2px var(--paroti-base, #a50d0d);
          box-shadow: 0 0 0 2px var(--paroti-base, #a50d0d);
  margin-right: 20px;
}

.about-one__name {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--paroti-black, #144047);
  letter-spacing: -0.04em;
  line-height: 1em;
  margin-bottom: 10px;
  padding-top: 22px;
}

.about-one__designation {
  line-height: 1em;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
}

.about-two {
  position: relative;
}

.about-two__shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.about-two__image {
    display: inline-block;
    position: relative;
    width: 100%;
}

@media (min-width: 1200px) {
  .about-two__image {
    margin-bottom: 60px;
  }
}

.about-two__image__shape-1 {
  width: 27px;
  height: 30px;
  background-color: var(--paroti-secondary, #fdbe44);
  position: absolute;
  top: 30px;
  right: 100%;
}

.about-two__image__shape-2 {
  position: absolute;
  display: none;
  background-color: var(--paroti-gray, #f1f6f7);
  position: absolute;
  top: 60px;
  left: -60px;
  right: -60px;
  bottom: -60px;
}

@media (min-width: 1200px) {
  .about-two__image__shape-2 {
    display: block;
  }
}

.about-two__image__shape-3 {
  position: absolute;
  display: none;
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 171px;
  background-color: #fff;
}

.about-two__image__shape-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 6px solid var(--paroti-secondary, #fdbe44);
  z-index: 10;
}

@media (min-width: 1200px) {
  .about-two__image__shape-3 {
    display: block;
  }
}

.about-two__image img {
    width: 100%;
    position: relative;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0px 16px rgb(0 0 0 / 38%);
}

.about-two__image__caption {
  background-color: var(--paroti-primary, #138999);
  text-align: center;
  padding: 45px 0;
}

.about-two__image__caption::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100%;
  width: 50px;
  height: 60px;
  background-color: var(--paroti-primary, #138999);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  display: none;
}

@media (min-width: 1200px) {
  .about-two__image__caption::after {
    display: block;
  }
}

@media (min-width: 1200px) {
  .about-two__image__caption {
    position: absolute;
    right: 100%;
    bottom: -60px;
    width: 200px;
    height: 196px;
    z-index: 10;
  }
}

.about-two__image__caption__count {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0;
  line-height: 1em;
  margin-bottom: 16px;
}

.about-two__image__caption__text {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.25em;
  font-weight: 500;
  max-width: 101px;
  margin-left: auto;
  margin-right: auto;
}


.about-two .sec-title {
  padding-bottom: 40px;
}

.about-two__info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
  margin: 0;
  padding-top: 35px;
  padding-bottom: 35px;
}

@media (min-width: 768px) {
  .about-two__info {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.about-two__info__item {
  --accent-color: var(--paroti-primary, #138999);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-two__info__item i {
  font-size: 63px;
  color: #a50d0d;
  position: relative;
  margin-right: 20px;
}

.about-two__info__item i::after {
  content: "";
  width: 49px;
  height: 49px;
  background-color: var(--accent-color);
  opacity: 0.1;
  position: absolute;
  bottom: -10px;
  right: -10px;
  border-radius: 50%;
}

.about-two__info__title {
  color: #000;
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0;
}

.about-two__list {
  margin: 0;
  margin-bottom: 50px;
}

.about-two__list li {
  font-size: 16px;
  font-weight: 500;
  padding-left: 26px;
  position: relative;
}

.about-two__list li i {
  position: absolute;
  font-size: 16px;
  color: var(--paroti-secondary, #fdbe44);
  top: 8px;
  left: 0;
}

.about-two__text {
  margin: 0;
}

.about-two .container {
  position: relative;
}

.about-three {
  padding: 0 0 7.5rem;
  position: relative;
}

.about-three__shape {
  position: absolute;
  top: -7.5rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/shapes/about-3-1.png);
  background-position: top left;
  background-repeat: no-repeat;
}

@media (min-width: 992px) {
  .about-three {
    padding: 0;
  }
}

.about-three .container {
  position: relative;
}

.about-three__text {
  margin-top: -22px;
  padding-bottom: 31px;
}

.about-three__image {
  position: relative;
}

@media (min-width: 1200px) {
  .about-three__image {
    margin-left: 30px;
  }
}

.about-three__image::before {
  content: "";
  width: 10000px;
  position: absolute;
  left: 210px;
  top: 0rem;
  bottom: 0rem;
  display: none;
  background-color: var(--paroti-secondary, #fdbe44);
}

@media (min-width: 992px) {
  .about-three__image::before {
    display: block;
  }
}

.about-three__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 170px;
  width: 12px;
  height: 90px;
  background-color: var(--paroti-base, #a50d0d);
}

@media (min-width: 992px) {
  .about-three__image {
    padding: 7.5rem 0;
  }
}

.about-three__image img {
  position: relative;
  max-width: 100%;
}

@media (min-width: 992px) {
  .about-three__image img {
    max-width: none;
  }
}

@media (min-width: 992px) {
  .about-three__content {
    padding: 7.5rem 0;
  }
}

.about-three__list {
  margin: 0;
}

.about-three__list__item {
  --accent-color: var(--paroti-base, #a50d0d);
  position: relative;
  padding-left: 95px;
}

.about-three__list__item:not(:last-child) {
  padding-bottom: 31px;
}

.about-three__list__icon {
  position: absolute;
  top: 5px;
  left: 0;
}

.about-three__list__icon::before {
  content: "";
  width: 49px;
  height: 49px;
  background-color: var(--accent-color);
  opacity: 0.1;
  position: absolute;
  bottom: -10px;
  right: -10px;
  border-radius: 50%;
}

.about-three__list__icon i {
  position: relative;
  color: var(--accent-color);
  font-size: 60px;
}

.about-three__list__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--paroti-black, #144047);
  letter-spacing: -0.04em;
  margin: 0;
}

.about-three__list__text {
  margin: 0;
  margin-top: 3px;
}

.about-four {
  background-color: #fff;
  background-image: url(../images/shapes/about-4-1.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  position: relative;
}

.about-four__shape {
  position: absolute;
  bottom: 0;
  right: 0;
}

.about-four .container {
  position: relative;
}

.about-four__image {
  position: relative;
}

@media (min-width: 1200px) {
  .about-four__image {
    margin-bottom: 20px;
  }
}

.about-four__image::before {
  content: "";
  width: 71.28205128205128%;
  height: calc(100% - 50px);
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--paroti-base, #a50d0d);
  display: none;
}

@media (min-width: 1200px) {
  .about-four__image::before {
    display: block;
  }
}

.about-four__image img {
  position: relative;
  max-width: 100%;
}

@media (min-width: 1200px) {
  .about-four__image img {
    max-width: none;
  }
}

.about-four__video {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--paroti-secondary, #fdbe44);
  width: 8.625rem;
  height: 8.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-size: 1.875rem;
}

@media (min-width: 1200px) {
  .about-four__video {
    right: -15px;
    bottom: -20px;
  }
}

.about-four__video:hover {
  background-color: var(--paroti-black, #144047);
  color: #fff;
}

@media (min-width: 1200px) {
  .about-four__content {
    padding-left: 70px;
  }
}

.about-four__content__text {
  color: var(--paroti-base, #a50d0d);
  font-size: 24px;
  line-height: 1.5em;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0;
  position: relative;
  top: -9px;
  padding-bottom: 28px;
}

.about-four__list__item {
  position: relative;
  padding-left: 88px;
  padding-bottom: 36px;
}

.about-four__list__item:last-child {
  padding-bottom: 0;
}

.about-four__list__item > i {
  position: absolute;
  top: 4px;
  left: 0;
  width: 58px;
  height: 58px;
  background-color: var(--paroti-gray, #f1f6f7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: var(--paroti-primary, #138999);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-four__list__item:hover > i {
  background-color: var(--paroti-primary, #138999);
  color: var(--paroti-gray, #f1f6f7);
}

.about-four__list__title {
  margin: 0;
  color: var(--paroti-black, #144047);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 9px;
}

.about-four__list__text {
  margin: 0;
  font-weight: 500;
}

.about-five {
  background-color: #fff;
  background-image: url(../images/shapes/about-4-1.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  position: relative;
}

.about-five__content {
  position: relative;
}

.about-five__content__arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 124px;
  height: 85px;
  background-repeat: no-repeat;
  background-image: url(../images/shapes/about-5-arrow-1.png);
}

.about-five__text {
  margin-top: -25px;
  padding-bottom: 20px;
}

.about-five__blockquote {
  background-color: var(--paroti-gray, #f1f6f7);
  padding: 15px 0;
  padding-left: 30px;
  padding-right: 56px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--paroti-black, #144047);
  font-size: 15px;
  font-weight: bold;
  letter-spacing: -0.04em;
  line-height: 1.7334em;
  position: relative;
  margin-bottom: 20px;
}

.about-five__blockquote::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 30px;
  height: 20px;
  background-color: var(--paroti-gray, #f1f6f7);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.about-five__blockquote > i {
  font-size: 32px;
  color: var(--paroti-secondary, #fdbe44);
  margin-right: 19px;
}

.about-five__person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 36px;
}

.about-five__person__image img {
  border-radius: 50%;
  border: 8px solid #ffffff;
  -webkit-box-shadow: 0 0 0 2px var(--paroti-base, #a50d0d);
          box-shadow: 0 0 0 2px var(--paroti-base, #a50d0d);
  margin-right: 18px;
}

.about-five__person__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--paroti-black, #144047);
  letter-spacing: -0.04em;
  margin: 0;
  line-height: 1;
  margin-bottom: 13px;
}

.about-five__person__designation {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0;
  line-height: 1em;
}

.about-five__item {
  background-color: var(--accent-color);
  padding: 40px;
}

.about-five__item__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #fff;
  margin-bottom: 35px;
}

.about-five__item__icon i {
  font-size: 72px;
}

.about-five__item__title {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.04em;
  line-height: 1em;
  margin-bottom: 11px;
}

.about-five__item__title a {
  color: inherit;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 2px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 2px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-five__item__title a:hover {
  background-size: 100% 2px;
}

.about-five__item__tagline {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0;
  line-height: 1em;
  opacity: 0.7;
  color: #fff;
}

.about-six {
  background-color: var(--paroti-gray, #f1f6f7);
  position: relative;
}

.about-six--pad-bottom {
  padding-bottom: 12.8125rem;
}

.about-six--pad-top {
  padding-top: 7.1875rem;
}

.about-six .container {
  position: relative;
}

.about-six__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--paroti-gray, #f1f6f7);
  opacity: 0.1;
  background-position: top left;
  background-repeat: no-repeat;
  mix-blend-mode: luminosity;
  display: none;
}

@media (min-width: 992px) {
  .about-six__bg {
    display: block;
  }
}

.about-six__shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: bottom right;
  background-repeat: no-repeat;
}

.about-six__images {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.about-six__images::before {
  content: "";
  width: 14px;
  height: 230px;
  background-color: var(--paroti-secondary, #fdbe44);
  position: absolute;
  top: 0;
  right: -34px;
}

.about-six__images img {
  max-width: 100%;
}

.about-six__images img:nth-child(2) {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (min-width: 768px) {
  .about-six__images img:nth-child(2) {
    left: auto;
    right: -165px;
  }
}

.about-six__content__text {
  margin-top: -25px;
  margin-bottom: 37px;
}

.about-six__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
  margin: 0;
  margin-bottom: 35px;
}

@media (min-width: 768px) {
  .about-six__list {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.about-six__list__item {
  position: relative;
  padding-left: 30px;
}

.about-six__list__icon {
  position: absolute;
  top: 6px;
  left: 0;
  font-size: 20px;
  color: var(--paroti-primary, #138999);
}

.about-six__list__title {
  margin: 0;
  font-size: 20px;
  color: var(--paroti-black, #144047);
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 0;
  margin-bottom: 3px;
}

.about-six__list__text {
  margin: 0;
}

.about-six__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*
  // Newsletter
*/
.newsletter-one {
  background-color: var(--paroti-base, #a50d0d);
  position: relative;
  padding: 6.25rem 0;
}

.newsletter-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center left;
  mix-blend-mode: luminosity;
  opacity: 0.1;
}

.newsletter-one__shape {
  position: absolute;
  bottom: 0;
  right: 0;
}

.newsletter-one__icon {
  position: absolute;
  top: 0;
  right: 100px;
  background-color: var(--paroti-secondary, #fdbe44);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  width: 171px;
  height: 171px;
  -webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  display: none;
}

@media (min-width: 992px) {
  .newsletter-one__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.newsletter-one__icon::after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  background-color: var(--paroti-secondary, #fdbe44);
  top: 79%;
  right: 78%;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.newsletter-one .container {
  position: relative;
}

.newsletter-one .sec-title__tagline {
  color: #f5c9b4;
  font-size: 20px;
}

.newsletter-one .sec-title__tagline::after {
  display: none;
}

.newsletter-one .sec-title__title {
  color: #fff;
}

.newsletter-one .sec-title__title br {
  display: none;
}

@media (min-width: 768px) {
  .newsletter-one .sec-title__title br {
    display: inherit;
  }
}

.newsletter-one__form {
  background-color: #fff;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.newsletter-one__form input[type=text],
.newsletter-one__form input[type=email] {
  border: none;
  outline: none;
  background-color: #fff;
  color: var(--paroti-text, #768385);
  font-size: 15px;
  padding-left: 20px;
  width: 100%;
}

.newsletter-one__form button[type=submit] {
  cursor: pointer;
  border: none;
  outline: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .1em;
  background-color: var(--paroti-base, #a50d0d);
  color: #fff;
  padding: 6px 39.25px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.newsletter-one__form button[type=submit]:hover {
  background-color: var(--paroti-black, #144047);
  color: #fff;
}

/*
  // Gallery
*/
.gallery-one {
  padding-top: 7.5rem;
}

@media (min-width: 1200px) {
  .gallery-one {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: -6.25rem;
  }
}

.gallery-one--home-3 {
  padding: 7.5rem 0;
  margin: 0;
}

@media (min-width: 768px) {
  .gallery-one--home-3 .container-fluid {
    padding-left: 8.5625rem;
    padding-right: 8.5625rem;
  }
}

@media (min-width: 1200px) {
  .gallery-one--home-3 .gallery-one__carousel .owl-stage-outer {
    overflow: hidden;
  }
}

@media (min-width: 1200px) {
  .gallery-one__carousel .owl-stage-outer {
    overflow: visible;
  }
}

.gallery-card {
  overflow: hidden;
  position: relative;
}

.gallery-card__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--paroti-base-rgb, 222, 82, 18), 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
}

.gallery-card__content a {
  color: #fff;
  font-size: 40px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.gallery-card__content a:hover {
  opacity: 0.7;
}

.gallery-card:hover .gallery-card__content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*
  // Video
*/
.video-one {
  --accent-color: #8139e7;
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url(../images/shapes/video-bg-1-1.png);
}

.video-one__inner {
  background-color: var(--accent-color);
  padding: 2.5rem;
  background-size: cover;
  background-blend-mode: luminosity;
  position: relative;
}

@media (min-width: 992px) {
  .video-one__inner {
    padding-left: 5rem;
  }
}

.video-one__inner::before {
  content: "";
  background-color: var(--accent-color);
  opacity: 0.85;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.video-one__content {
  position: relative;
}

@media (min-width: 992px) {
  .video-one__content {
    padding-top: 3.4375rem;
  }
}

.video-one__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 99px;
  height: 99px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  color: var(--paroti-base, #a50d0d);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.video-one__btn:hover {
  background-color: var(--paroti-base, #a50d0d);
  color: #fff;
}

.video-one__btn::before {
  content: "";
  position: absolute;
  top: -15.5px;
  left: -15.5px;
  right: -15.5px;
  bottom: -15.5px;
  border: 1px solid #fff;
  opacity: 0.2;
  border-radius: 50%;
}

.video-one__btn__arrow {
  position: absolute;
  top: 90%;
  left: 135%;
  width: 31px;
  height: 45px;
  background-image: url(../images/shapes/video-arrow-1-1.png);
  -webkit-animation: btnIconMove 4s linear 0ms infinite;
          animation: btnIconMove 4s linear 0ms infinite;
}

.video-one__title {
  margin: 0;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-top: 48px;
}

.video-one__list {
  margin: 0;
  margin-top: 40px;
}

.video-one__list li {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding-left: 28px;
}

.video-one__list li + li {
  margin-top: 3px;
}

.video-one__list li > i {
  position: absolute;
  top: 8px;
  left: 0;
  font-size: 18px;
  color: var(--paroti-secondary, #fdbe44);
}

.video-one__form {
  background-color: #fff;
  padding: 3.75rem;
  position: relative;
}

@media (min-width: 992px) {
  .video-one__form {
    margin-left: -20px;
  }
}

.video-one__form input[type="text"],
.video-one__form input[type="email"],
.video-one__form input[type="phone"],
.video-one__form input[type="date"],
.video-one__form input[type="number"],
.video-one__form select {
  height: 60px;
}

.video-one__form textarea {
  height: 120px;
}

.video-one__form .contact-one__btn {
  padding: 11px 31.5px;
}

/*
  // Faq
*/
.faq-one {
  position: relative;
  background-color: var(--paroti-black, #144047);
  overflow: hidden;
  padding: 7.5rem 0;
}

@media (min-width: 1200px) {
  .faq-one {
    padding: 0 0;
  }
}

.faq-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.08;
  background-color: var(--paroti-black, #144047);
  background-blend-mode: color-dodge;
  background-position: top left;
}

.faq-one .container {
  position: relative;
}

@media (min-width: 1200px) {
  .faq-one__content {
    padding: 7.5rem 0;
  }
}

.faq-one .sec-title__tagline {
  color: var(--paroti-light, #8fa6aa);
}

.faq-one .sec-title__title {
  color: #fff;
}

.faq-one__content__text {
  margin-top: -30px;
  color: var(--paroti-light, #8fa6aa);
  margin-bottom: 35px;
}

.faq-one__accordion {
  background-color: #10383e;
  padding-left: 30px;
  padding-right: 30px;
}

.faq-one__accordion__item {
  border: 0;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0);
}

.faq-one__accordion__item:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-one__accordion__header {
  font-family: var(--paroti-font, "Manrope", sans-serif);
}

.faq-one__accordion__button {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  color: #fff;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0);
  padding: 27px 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.04em;
  position: relative;
}

@media (min-width: 992px) {
  .faq-one__accordion__button {
    font-size: 18px;
  }
}

.faq-one__accordion__button:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

.faq-one__accordion__button:not(.collapsed) {
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.faq-one__accordion__button:not(.collapsed) .faq-one__accordion__icon::before {
  opacity: 0;
}

.faq-one__accordion__button:not(.collapsed) .faq-one__accordion__icon::after {
  background-color: var(--paroti-secondary, #fdbe44);
}

.faq-one__accordion__button::after {
  display: none;
}

.faq-one__accordion__icon {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
}

.faq-one__accordion__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__accordion__icon::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.faq-one__accordion__body {
  color: var(--paroti-light, #8fa6aa);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  padding: 21px 0;
}

.faq-one__image {
  position: relative;
}

.faq-one__image::before {
  content: "";
  width: 22px;
  height: calc(100% - 15rem);
  position: absolute;
  top: 50%;
  left: -10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--paroti-secondary, #fdbe44);
}

@media (min-width: 1200px) {
  .faq-one__image {
    margin-left: 75px;
  }
}

.faq-one__image img {
  max-width: 100%;
  position: relative;
}

@media (min-width: 1200px) {
  .faq-one__image img {
    max-width: none;
  }
}
/*# sourceMappingURL=paroti.css.map */

.testimonials-two__card__image img {
    width: 100px;
}
.main-header__logo img {
  object-fit: contain;
  height: 100px;
  padding: 5px 0px;
}
.site-footer{
  background: #000;
}
p{
  color: #000;
}

.team-info img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-box img {
    object-fit: cover;
    height: 100px;
}
.user-image{
        width: 130px;
    height: 90px;
    object-fit: contain;
}

/* Blinking animation */
@keyframes blink {
  50% {
    color: #fdbe44; /* Alternate text color */
  }
}

/* Apply the blinking effect to the link */
a.blinking {
    animation: blink 0.5s infinite;
    color: red; /* Optional: Set color for the link */
    text-decoration: none; /* Optional: Remove underline */
}

.topbar__links li a:hover {
  color: #fdbe44; /* Alternate text color */
}

.pay img {
    height: 500px;
    box-shadow: 0px 0px 10px #514b4b;
}
.maruquee-bar {
    background: #064c49 !important;
    color: #ed1b24;
}
.maruquee-bar h6 {
  font-weight: bold;
  color: #fff;
  font-size: 22px;
  padding: 26px;
}
@media (max-width:767px) {
  .slider-one__item {height:200px}
  /* .main-menu__right {
    position: absolute;
    top: 135px;
    right: 50px;
  } */
}

.id-card{
  border: 1px solid #ddd;
  width:370px;
}

.id-header {
    position: relative;
    background-color: #a50d0d;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    height: 207px;
    box-shadow: 0px 5px 5px 0px #b8b8b8;
}

.id-header h2 {
    color: white;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 34px;
    padding-top: 5px;
}
.id-header .id-logo {
  position: absolute;
  top: 1rem;
  width: 120px;
}

.id-photo {
    border-radius: 50%;
    width: 150px;
    height: 150px !important;
    margin: auto;
    text-align: center;
    display: block;
    object-fit: contain;
    background: #ffc9c7;
}

.id-details{
  padding: 1rem;
}

.id-details h1 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-top: 0px;
    text-transform: uppercase;
}

.id-details h3{
  text-align: center;
  color: #ff0000;
  margin-top: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.id-details .m-info {
    display: flex;
    gap: 2rem;
    justify-content: space-evenly;
}

.id-details .m-info-group{
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.id-details .m-info-group .info-value{
  color: #8F6144;
  font-weight: 500;
}

.id-details .m-info-group .info-value.email{
  text-transform: lowercase;
}

.id-details .m-info-group h4{
  margin-bottom: 0;
  margin-top: 0.2rem
}

.id-details .m-qrcode{
  display: flex;
  justify-content: center;
  align-items: center
}

.id-details .m-qrcode img {
  width: 150px;
}

.id-footer{
  background-color: #a50d0d;
  color: #FFFFFF;
  text-align: center;
  padding: 0.3rem;
}
.id-card h4 {
    font-size: 18px;
    font-weight: 500;
}

.profile lable{
  color:#000;
}












/* ----------------------------------- */



.form_outer{ background-color: #f5f6fa; display: flex; flex-wrap: wrap; border-radius: 10px; margin-top: 40px;}
.form_outer ul, .form_outer li{ list-style: none; padding: 0; margin: 0;}
.form_block {
    padding: 35px 20px;
    background: #efefef;
    border-radius: 8px;
}
.form_block h3{ color: #2a2b6b; font-size: 20px; text-align: left; padding-bottom: 20px; padding-top: 20px;}
ul.amt_list{ display: flex; flex-wrap: wrap; padding-bottom: 10px;}
.amt_list > li {
    width: 100%;
    padding: 0 30px 10px;
    list-style: none;
}
.amt_list > li:last-child{ padding-bottom: 0;}
.amt_list > li > a{ width: 100%; padding: 0 20px; border: 1px solid #d4d4d4; line-height: 50px; float: left; text-align: center; text-decoration: none!important; color: #9e9e9e!important; font-weight: 700; transition: all 0.25s ease-in 0s; cursor: pointer; background-color: #fff; font-size: 18px; border-radius: 10px;}
.amt_list > li.active > a, .amt_list > li > a:hover{ border: 3px solid #fff; box-shadow: 2px 13px 50px rgba(0,0,0,.12); line-height: 46px; color: #000!important; background-color: #fff000; font-size: 24px;}
.form_block .form-group{ margin-bottom: 10px;}
.form_block .form-control{ padding: 0 20px; border: 1px solid #d4d4d4; height: 50px; color: #202020; transition: all 0.25s ease-in 0s; background-color: #fff; font-size: 16px; border-radius: 7px;}
.form_block textarea.form-control{ resize: none; height: 80px; padding-top: 10px}
.form_block .form-control::-moz-placeholder{ color:#9e9e9e;}
.form_block .form-control::-webkit-input-placeholder{ color:#9e9e9e;}
.form_block .form-control:focus{ box-shadow: none;}
.form_block .form-control.disabled{ background-color: transparent; cursor: not-allowed; color: #9e9e9e;}
.form_block .relative{ position: relative;}
.form_block .relative span{ position: absolute; left: 0; top: 0; width: 70px; line-height: 40px; text-align: center; border-right: 1px solid #d4d4d4; color: #9e9e9e; font-size: 18px;font-weight:700}
.form_block .relative .form-control{ padding-left: 90px;}
.form_block .btn{ background-color: #ed1b24; color: #fff; width: 100%; line-height: 48px; border: 1px solid #ed1b24; transition: all 0.25s ease-in 0s; font-size: 18px; font-weight: 700; text-transform: uppercase; padding: 0 20px; border-radius: 7px;}
.form_block .btn .fa{ padding-left: 7px;}
.form_block .btn:hover{ background-color: #fff; color: #ed1b24}
.select_amt{ padding: 0 30px;}
.select_amt p{ font-size: 12px; color: #202020; text-align: left; padding: 5px 0 0;}
.select_amt .form-group{ margin-bottom: 20px;}
.carousel_block{width: 50%; background-color: #fff; padding: 30px 100px 10px; box-shadow: 0 2px 59px rgba(164,164,164,.2); border-radius: 0 10px 10px 0;}


.home-button {
    float: left;
    width: auto;
    font-size: 19px;
}

.badge {
    transition: background-color 1s ease; /* Smooth transition for background color */
}

.badge.bg-dark-1 {
    background-color: #4CAF50; /* Green */
}
.badge.bg-dark-1:hover {
    background-color: #388E3C; /* Darker Green */
}
.badge.bg-dark-2 {
    background-color: #ed1b24; /* Turquoise */
}
.badge.bg-dark-2:hover {
    background-color: #a50c13; /* Darker Turquoise */
}


.badge.bg-dark-3 {
    background-color: #2196F3; /* Blue */
}
.badge.bg-dark-3:hover {
    background-color: #1976D2; /* Darker Blue */
}

.badge.bg-dark-4 {
    background-color: #9C27B0; /* Purple */
}
.badge.bg-dark-4:hover {
    background-color: #7B1FA2; /* Darker Purple */
}

.badge.bg-dark-5 {
    background-color: #E91E63; /* Pink */
}
.badge.bg-dark-5:hover {
    background-color: #C2185B; /* Darker Pink */
}

.badge.bg-dark-6 {
    background-color: #3F51B5; /* Indigo */
}
.badge.bg-dark-6:hover {
    background-color: #303F9F; /* Darker Indigo */
}

.badge.bg-dark-7 {
    background-color: #009688; /* Teal */
}
.badge.bg-dark-7:hover {
    background-color: #00796B; /* Darker Teal */
}

.badge.bg-dark-8 {
    background-color: #795548; /* Brown */
}
.badge.bg-dark-8:hover {
    background-color: #5D4037; /* Darker Brown */
}

.badge.bg-dark-9 {
    background-color: #D32F2F; /* Dark Red */
}
.badge.bg-dark-9:hover {
    background-color: #E57373; /* Lighter Red */
}

.badge.bg-dark-10 {
    background-color: #C2185B; /* Dark Rose */
}
.badge.bg-dark-10:hover {
    background-color: #F48FB1; /* Lighter Rose */
}

.badge.bg-dark-11 {
    background-color: #512DA8; /* Dark Violet */
}
.badge.bg-dark-11:hover {
    background-color: #B39DDB; /* Lighter Violet */
}

.badge.bg-dark-12 {
    background-color: #00796B; /* Dark Cyan */
}
.badge.bg-dark-12:hover {
    background-color: #80CBC4; /* Lighter Cyan */
}

.badge.bg-dark-13 {
    background-color: #5D4037; /* Dark Coffee */
}
.badge.bg-dark-13:hover {
    background-color: #BCAAA4; /* Lighter Coffee */
}

.badge.bg-dark-14 {
    background-color: #455A64; /* Dark Slate */
}
.badge.bg-dark-14:hover {
    background-color: #90A4AE; /* Lighter Slate */
}

.badge.bg-dark-15 {
    background-color: #1B5E20; /* Dark Forest Green */
}
.badge.bg-dark-15:hover {
    background-color: #66BB6A; /* Lighter Forest Green */
}



@media (max-width:768px){
  .main-header__logo img {
      object-fit: contain;
      height: 79px;
      padding: 0px;
    }

    .topbar__social , .maruquee-bar , .topbar__info{
      display: none;
    }

    .ql-card {
      padding: 25px 10px !important;
      min-height: auto !important;
    }

        .whoweare {
          padding: 50px 0 !important;
        }
}


.whoweare {
    position: relative;
    color: white;
    padding: 90px 0;
    overflow: hidden;
    background: var(--gradient-primary);
}

.ql-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.ql-card {
  background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 25px rgba(59, 130, 246, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid rgb(28 39 129 / 8%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  min-height: 260px;
}

.ql-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 
    0 25px 50px rgba(59, 130, 246, 0.18),
    0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.ql-card h3 {
  color: #fff;
  margin: 20px 0 12px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.ql-card p {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.ql-icon {
    font-size: 3rem;
    color: #b4d96d;
    transition: all 0.4s ease;
}

.ql-card:hover .ql-icon {
  transform: scale(1.15);
  color: #fff;
}


.constitution-section {
    position: relative;
    background: #fff;
    padding: 60px 0;
    overflow: hidden;
}

.constitution-shape {
    position: absolute;
    top: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(0, 119, 182, 0.15);
    border-radius: 50%;
    z-index: 0;
}

.constitution-image-wrapper img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: fadeInLeft 1.5s ease-in-out;
    height: 100%;
    margin-bottom: 20px;
    z-index: 99;
    position: relative;
}

.section-header .tagline {
    color: #202984;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-header .title {
    font-size: 2rem;
    color: #0d9488;
    margin-bottom: 1rem;
}

.constitution-content .description {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content{
  color: #000;
}

.topbar__social.me-3 {
  padding-top: 30px;
  /* font-size: 38px; */
}