/*
Theme Name: BSE Services
Theme URI: https://bse.bm
Author: Lovelltechnologies
Author URI: https://bse.bm
Description: Custom theme for BSE Services
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bse-services
*/

/* Fonts */
:root {
  --default-font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Sora", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  /*--background-color: #FFF4FB;*/
  /*--background-color: #fff8d3;*/
  --background-color: #fffbe7;
  --default-color: #3A3E4A;
  --heading-color: #433f39;
  --accent-color: #EC008C;
  --surface-color: #FFD700;
  --contrast-color: #4B007D;
  --bg-blue-color: #4539B4;
  --white-color: #fff;
  --dark-brown-bg: #3D172E;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #1E1E1E;
  --nav-hover-color: #EC008C;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #ffb03b;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #fffaf3;
  --surface-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--contrast-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.pink-text-color {
  color: var(--accent-color);
}

.dark-blue-text-color {
  color: var(--contrast-color) !important;
}

.dark-text-color {
  color: var(--heading-color);
}

.yellow-text-color {
  color: var(--surface-color) !important;
}

.bg-light-purple {
  background-color: #f5e7ff !important;
}

.morelight-pink-bg {
  background-color: #FFF0F9 !important;
}

.bg-light-pink {
  background-color: var(--background-color);
}

.bg-blue {
  background-color: var(--bg-blue-color);
}

.bg-dark-brown {
  background-color: var(--dark-brown-bg) !important;
}

.pink-bg-color {
  background-color: var(--accent-color);
}

.yellow-bg-color {
  background-color: var(--surface-color) !important;
}

.dark-blue-bg-color {
  background-color: var(--contrast-color) !important;
}

.w-85 {
  width: 85%;
}

.w-95 {
  width: 85%;
}

@media (max-width: 567px) {
  .w-85 {
    width: 100%;
  }

  .w-95 {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  position: relative;
  z-index: 99;
  padding: 20px;
}

.header .item-left {
  flex: 0 0 41%;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 40px;
}

.header .logo img {
  width: 70px;
}

.header .item-right {
  flex: 0 0 17%;
  display: flex;
  justify-content: flex-end;
}

.header .menu>ul>li {
  display: inline-block;
  line-height: 50px;
  margin: 0 20px;
}

.header .menu>ul>li>a {
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.header .menu>ul>li>a.active {
  color: var(--accent-color);
}

.header .menu>ul>li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #ffffff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}

@media(min-width: 992px) {
  .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
}

.header .menu>ul>li .sub-menu>ul>li {
  line-height: 1;
}

.header .menu>ul>li .sub-menu>ul>li>a {
  display: inline-block;
  padding: 10px 0;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}

.header .menu>ul>li .single-column-menu {
  min-width: 280px;
  max-width: 350px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  margin-bottom: 35px;
  transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li:hover {
  border-color: var(--accent-color);
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li i {
  position: absolute;
  right: 0;
  bottom: -10px;
  transition: .3s ease-in-out;
  opacity: 0;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li:hover i {
  bottom: 10px;
  opacity: 1;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
  padding: 10px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu.mega-menu {
  left: 44%;
  transform: translateX(-50%);
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
  max-width: 650px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 15px 15px;
  text-align: left;
  border-radius: 20px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
  flex: 0 0 33%;
  padding: 0 10px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item ul {
  border-right: 1px solid #ccc;
  padding: 0 15px 0 35px;
  padding-left: 0;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item:last-child ul {
  border-right: unset;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
  text-align: center;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a.active,
.header .menu>ul>li .sub-menu>ul>li>a:hover,
.header .menu>ul>li .sub-menu>ul>li>a.active,
.header .item-right a:hover,
.header .item-right a.active,
.header .menu>ul>li:hover>a,
.header .menu>ul>li>a.active {
  color: var(--accent-color);
}

/* banner section */
.banner-section {
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

@media (max-width: 1400px) {
  .header .item-left {
    flex: 0 0 48%;
  }
}

@media (max-width: 1200px) {
  .header .item-left {
    flex: 0 0 56%;
  }
}

/*responsive*/
@media(max-width: 991px) {

  .header .item-left,
  .header .item-right {
    flex: 0 0 50%;
    background-color: transparent;
  }

  .header .logo img {
    width: 85px;
  }

  .btn-grad {
    padding: 10px 40px;
  }

  .v-center {
    justify-content: space-between;
  }

  .header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #333333;
    width: 24px;
    position: relative;
  }

  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
  }

  .header .mobile-menu-trigger span:before {
    top: -6px;
  }

  .header .mobile-menu-trigger span:after {
    top: 6px;
  }

  .header .item-right {
    align-items: center;
  }

  .header .menu {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }

  .header .menu.active {
    transform: translate(0%);
  }

  .header .menu>ul>li {
    line-height: 1;
    margin: 0;
    display: block;
  }

  .header .menu>ul>li>a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header .menu>ul>li>a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }

  .header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }

  .header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }

  .header .menu .mobile-menu-head.active .go-back {
    display: block;
  }

  .header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
  }

  .header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }

  .header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-left: 0;
  }

  .header .menu>ul>li .sub-menu.mega-menu,
  .header .menu>ul>li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }

  .header .menu>ul>li .sub-menu.active {
    display: block;
    padding: 0;
  }

  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }

    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }

  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }

    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    margin-top: 0;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    margin-bottom: 20px;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
    margin-bottom: 0px;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 100%;
    padding: 0px;
  }

  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
    border-bottom: unset;
    margin-bottom: 0;
  }

  .header .menu>ul>li .sub-menu>ul>li>a,
  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    display: block;
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
    margin-bottom: 0;
    border-right: unset;
    padding: 0;
  }

  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }

  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}

@media(max-width: 567px) {

  .header .item-left,
  .header .item-right {
    flex: 0 0 40%;
  }
}

/* Global Header on Scroll
------------------------------*/

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.btn-close:focus {
  outline: 0;
  box-shadow: unset;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--surface-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  color: var(--surface-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 112px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 105px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Global Buttons
--------------------------------------------------------------*/


.btn-grad {
  display: block;
  padding: 12px 45px;
  text-align: center;
  color: var(--background-color);
  border-radius: 50px;
  transition: 0.5s;
}

.btn-grad:hover {
  color: var(--background-color);
}

.btn-gradient-2 {
  background: linear-gradient(#FFF4FB, #FFF4FB) padding-box,
    linear-gradient(to right, #ff00b8 0%, #a000c0 51%, #ff00b8 100%) border-box;
  border: 3px solid transparent;
}

.btn-gradient-2 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  color: var(--default-color);
  cursor: pointer;
}

.btn-bg-gradiant {
  display: block;
  padding: 12px 25px;
  text-align: center;
  color: var(--background-color);
  background: linear-gradient(90deg, rgba(236, 0, 140, 1) 0%, rgba(75, 0, 125, 1) 100%);
  border-radius: 50px;
  transition: all .5s ease-in-out;
}

.btn-bg-gradiant:hover {
  color: var(--background-color);
  background: linear-gradient(90deg, rgba(75, 0, 125, 1) 0%, rgba(236, 0, 140, 1) 100%);
}

.main-btn {
  position: relative;
  display: inline-block;
  color: #000;
  font-size: 1rem;
  text-decoration: none;
  padding: 1rem 4rem;
  overflow: hidden;
  font-weight: 400;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.6s ease;
  z-index: 1;
}

.main-btn::before {
  background: var(--white-color);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.6s ease;
}

.main-btn.btn-outline::before {
  width: 100%;
  height: 100%;
}

.main-btn.btn-outline:hover {
  border: 2px solid var(--accent-color);
  color: var(--default-color);
}

.main-btn.btn-outline:hover::before {
  height: 0%;
}

.main-btn .degree-45 {
  transform: rotate(-45deg);
  margin-left: 7px;
}

.main-btn .blue-arrow {
  color: var(--default-color);
  transition: all 0.6s ease;
}

.main-btn:hover .blue-arrow {
  color: var(--white-color);
}

.main-btn.right-blue-bg {
  padding-left: 2rem;
}

.main-btn .circle-arrow {
  position: absolute;
  top: 5px;
  right: 8px;
  color: var(--white-color);
  background: #EC008C;
  background: linear-gradient(150deg, rgba(236, 0, 140, 1) 0%, rgba(75, 0, 125, 1) 100%);
  padding: 15px;
  border-radius: 50%;
  transition: all 0.6s ease;
}

.main-btn:hover .circle-arrow {
  color: var(--accent-color);
  background: var(--white-color);
}

.main-outerline-btn {
  position: relative;
  display: inline-block;
  color: #000;
  font-size: 1rem;
  text-decoration: none;
  padding: 1rem 4rem;
  overflow: hidden;
  font-weight: 400;
  border-radius: 50px;
  border: 2px solid var(--accent-color);
  transition: all 0.6s ease;
}

.main-outerline-btn::before {
  background: var(--white-color);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.6s ease;
}

.main-outerline-btn .degree-45 {
  transform: rotate(-45deg);
  margin-left: 7px;
}

.main-outerline-btn .blue-arrow {
  color: var(--default-color);
  transition: all 0.6s ease;
}

.main-outerline-btn.right-blue-bg {
  padding-left: 2rem;
}

.main-outerline-btn .circle-arrow {
  position: absolute;
  top: 5px;
  right: 8px;
  color: var(--white-color);
  background: #EC008C;
  background: linear-gradient(150deg, rgba(236, 0, 140, 1) 0%, rgba(75, 0, 125, 1) 100%);
  padding: 15px;
  border-radius: 50%;
  transition: all 0.6s ease;
}

.btn-yellow {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: var(--default-color);
  font-weight: 500;
  background: transparent;
  border: 2px solid var(--surface-color);
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
  border-radius: 50px;
}

.btn-yellow::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--surface-color);
  transform: translateX(0%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-yellow:hover {
  color: #fff;
}

.btn-yellow.btn-hover-black:hover {
  color: #000;
}

.btn-yellow:hover::before {
  transform: translateX(-100%);
}

.btn-yellow.text-hover-white:hover {
  color: var(--white-color);
}

.btn-purple {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: var(--background-color);
  font-weight: 500;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(35px);
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
  border-radius: 50px;
}

.btn-purple::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--contrast-color);
  transform: translateX(0%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-purple:hover {
  color: #fff;
}

.btn-purple:hover::before {
  transform: translateX(-100%);
}

@media(max-width: 567px) {
  .btn-grad {
    padding: 8px 20px;
  }
}

@media (max-width: 457px) {

  .btn-yellow,
  .btn-purple {
    padding: 8px 18px;
  }
}

/*--------------------------------------------------------------
# Common Style Css
--------------------------------------------------------------*/

.borderUpperRadius {
  border-radius: 47px 47px 0 0;
}

.section-head .title {
  position: relative;
  color: #3A3E4A;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.section-head .title .right-fade-line::before {
  content: '';
  position: absolute;
  left: 6%;
  top: 8px;
  height: 4px;
  width: 4px;
  background: #3A3E4A;
  border-radius: 50%;
}

.section-head .title .right-fade-line::after {
  content: '';
  position: absolute;
  left: 6%;
  top: 9px;
  height: 1.5px;
  width: 180px;
  background-image: linear-gradient(to right, #3A3E4A 0%, #3A3E4A 0%, transparent 100%, transparent 100%);
}

.section-head .title .left-fade-line::before {
  content: '';
  position: absolute;
  left: 45%;
  top: 8px;
  height: 4px;
  width: 4px;
  background: #3A3E4A;
  border-radius: 50%;
}

.section-head .title .left-fade-line::after {
  content: '';
  position: absolute;
  left: 31%;
  top: 9px;
  height: 1.5px;
  width: 180px;
  background-image: linear-gradient(to right, #3A3E4A 0%, #3A3E4A 0%, transparent 100%, transparent 100%);
  transform: rotate(-180deg);
}

.section-head .title .right-fade-line.right-align::before {
  right: 45%;
  left: unset;
}

.section-head .title .right-fade-line.right-align::after {
  right: 31.2%;
  left: unset;
}

.section-head .title .left-fade-line.left-align::before {
  left: 45%;
}

.section-head .title .left-fade-line.left-align::after {
  left: 31.2%;
}

.section-head .title.color-white .left-fade-line::after,
.section-head .title.color-white .right-fade-line::after {
  background-image: linear-gradient(to right, #fff 0%, #fff 0%, transparent 100%, transparent 100%);
}

.section-head .title.color-white .left-fade-line::before,
.section-head .title.color-white .right-fade-line::before {
  background: #fff;
}

.section-head .title.accent-color .left-fade-line::after,
.section-head .title.accent-color .right-fade-line::after {
  background-image: linear-gradient(to right, #4B007D 0%, #4B007D 0%, transparent 100%, transparent 100%);
}

.section-head .title.accent-color .left-fade-line::before,
.section-head .title.accent-color .right-fade-line::before {
  background: #4B007D;
}

.section-head.about-head .title .right-fade-line::before {
  left: 11%;
}

.section-head.about-head .title .right-fade-line::after {
  left: 11%;
}

.section-head .section-head-heading {
  font-size: 4rem;
  display: inline-block;
  line-height: 4rem;
  margin-top: 10px;
}

.section-head .bg-gradiant-heading {
  background: linear-gradient(90deg, hsla(276, 100%, 25%, 1) 0%, hsla(51, 100%, 50%, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head .section-head-desc {
  font-size: 1.2rem;
  color: #505E6B;
}

.custom-carousel-dots .owl-theme .owl-dots {
  margin-top: 15px;
}

.custom-carousel-dots .owl-theme .owl-dots .owl-dot span {
  transition: all .2s ease;
  width: 8px;
  height: 8px;
}

.custom-carousel-dots .owl-theme .owl-dots .owl-dot.active span,
.custom-carousel-dots .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--surface-color);
}

.custom-carousel-dots .owl-theme .owl-dots .owl-dot.active span {
  position: relative;
}

.custom-carousel-dots .owl-theme .owl-dots .owl-dot span:before {
  content: '';
  position: absolute;
  width: 0px;
  height: 0px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: all .3s ease;
}

.custom-carousel-dots .owl-theme .owl-dots .owl-dot.active span:before {
  width: 20px;
  height: 20px;
  border: 1px solid var(--surface-color);
}

.degree-45 {
  transform: rotate(-45deg);
}

.accent-color {
  color: var(--contrast-color);
}

@media (max-width: 768px) {

  .section-head .section-head-heading {
    font-size: 3rem;
    line-height: 3rem;
  }

  .section-head .section-head-desc {
    font-size: 1rem;
  }

  .section-head .title .right-fade-line::before {
    left: 11%;
  }

  .section-head .title .right-fade-line::after {
    left: 11%;
  }

  .section-head .title .left-fade-line.left-align::after {
    left: 15.2%;
  }

  .section-head .title .left-fade-line.left-align::before {
    left: 41%;
  }

  .section-head .title .right-fade-line.right-align::after {
    right: 15.2%;
  }

  .section-head .title .right-fade-line.right-align::before {
    right: 41%;
  }

  .section-head.about-head .title .right-fade-line::before {
    left: 21%;
  }

  .section-head.about-head .title .right-fade-line::after {
    left: 21%;
  }
}

@media (max-width: 567px) {

  .section-head .section-head-heading {
    font-size: 2rem;
    line-height: 2.3rem;
  }

  .section-head .title .left-fade-line::after {
    width: 111px;
  }

  .section-head .title .right-fade-line::after {
    width: 111px;
  }

  .section-head .title .right-fade-line::before {
    left: 22%;
  }

  .section-head .title .right-fade-line::after {
    left: 22%;
  }

  .section-head .title .left-fade-line.left-align::after {
    left: 0%;
  }

  .section-head .title .left-fade-line.left-align::before {
    left: 31%;
  }

  .section-head .title .right-fade-line.right-align::after {
    right: 0%;
  }

  .section-head .title .right-fade-line.right-align::before {
    right: 31%;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section .hero-heading {
  position: relative;
  display: inline-block;
  font-family: "Sora", sans-serif;
}

.hero-section .hero-heading img {
  width: 115px;
  border-radius: 30px;
}

.hero-section .head-desc {
  font-size: 1.3rem;
  width: 90%;
}

.hero-section .hero-heading .heading {
  font-family: "Sora", sans-serif;
  text-transform: capitalize;
  color: var(--contrast-color);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1rem;
}

.hero-section .hero-heading .sub-heading {
  font-family: "Sora", sans-serif;
  text-transform: capitalize;
  color: var(--default-color);
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 4.5rem;
}

.hero-section .hero-heading .sub-heading span {
  color: var(--contrast-color);
}

.hero-section .home-sec-bg {
  width: 85%;
  border-radius: 30px;
}

.hero-section .center-pipe-man img {
  position: absolute;
  bottom: -85px;
  left: -180px;
  width: 80%;
}

.badge-box {
  position: absolute;
  top: 69px;
  left: 0px;
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  border: 8px solid rgb(0 0 0 / .2);
}

.trusted-badge {
  background: -webkit-linear-gradient(0deg, hsla(276, 100%, 25%, 1) 0%, hsla(324, 100%, 46%, 1) 50%, hsla(51, 100%, 50%, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 1rem;
  display: block;
  line-height: 1.2;
}

.badge-box small {
  color: #777;
  font-size: 0.65rem;
  display: block;
}

.badge-box .ribbon-star {
  position: absolute;
  right: -10%;
  bottom: -19px;
}

.star {
  color: #ff9800;
  font-size: 1.2rem;
  margin-left: 4px;
}

.counting-section {
  margin-top: -100px;
}

.counter-section {
  margin-top: 20px;
  margin-bottom: 70px;
}

.counter-section .counter-blk {
  margin-right: 30px;
}

.counter-section .counter-blk .counts {
  display: inline-block;
  font-size: 40px;
  font-weight: 600;
  color: var(--surface-color);
  font-family: 'Sora', sans-serif;
}

.counter-section .counter-blk span {
  font-size: 40px;
  color: var(--default-color);
  font-weight: 400;
}

.counter-section .counter-blk .count-detail {
  color: var(--heading-color);
  font-family: 'Sora', sans-serif;
}

.hire-us-title h2 {
  font-size: 3rem;
  font-weight: 600;
}

.hire-us-rotate .crescent {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--surface-color);
  position: absolute;
  right: 80px;
}

.hire-us-rotate .rotating-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--contrast-color);
  position: absolute;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--white-color);
}

.hire-us-rotate .center-dot {
  width: 30px;
  height: 30px;
  color: var(--accent-color);
  background: var(--background-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  z-index: 2;
  position: absolute;
  top: 26%;
  right: 12.8%;
  pointer-events: none;
}

.hire-us-rotate .text {
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 18px;
  fill: #fff;
}

.hire-us-rotate .rotatingText {
  animation-name: rotate-circle;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes rotate-circle {
  to {
    transform: rotate(1turn);
  }
}

@media (max-width: 997px) {

  .hero-section {
    padding: 20px;
  }

  .hero-section .hero-heading img {
    width: 80px;
  }

  .hero-section .hero-heading .sub-heading {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

  .hero-section .center-pipe-man img {
    left: -120px;
    width: 90%;
  }

  .trusted-badge {
    font-size: 0.75rem;
  }

  .badge-box {
    top: 13px;
    left: -46px;
  }

  .counting-section {
    margin-top: -30px;
  }

  .counter-section {
    margin-top: 46px;
    margin-bottom: 60px;
  }

  .counter-section .counter-blk {
    margin-right: 27px;
  }

  .counter-section .counter-blk .counts {
    font-size: 30px;
  }

  .counter-section .counter-blk span {
    font-size: 30px;
  }

  .counter-section .counter-blk .count-detail {
    font-size: 13px;
  }

  .hire-us-rotate .center-dot {
    right: 23.8%;
  }
}

@media (max-width: 567px) {

  .hero-section .home-section-blur-img {
    left: -100px;
    top: -225px;
  }

  .hero-section .hero-heading .heading {
    font-size: 1rem;
  }

  .hero-section .hero-heading .sub-heading {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }

  .hero-section .head-desc {
    font-size: 1rem;
    width: 100%;
  }

  .hero-section .home-sec-bg {
    width: 100%;
  }

  .hero-section .center-pipe-man img {
    bottom: -45px;
    width: 90%;
    left: -70px;
  }

  .badge-box {
    top: 18px;
    left: -25px;
    padding: 7px 15px;
    border: 4px solid rgb(0 0 0 / .2);
  }

  .badge-box .ribbon-star {
    right: -10%;
    bottom: -29px;
    transform: rotate(-15deg);
  }

  .trusted-badge {
    font-size: .8rem;
    display: block;
    line-height: 1;
  }

  .counting-section {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .counter-section {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .hire-us-rotate .crescent {
    right: 40px;
  }

  .hire-us-rotate .rotating-circle {
    right: 0px;
  }

  .hire-us-rotate .center-dot {
    right: 25.8%;
    top: 34%;
  }
}

@media (max-width:420px) {

  .counter-section .counter-blk {
    margin-right: 0px;
  }
}

/*--------------------------------------------------------------
# What we do Section
--------------------------------------------------------------*/

.what-we-do-section {
  position: relative;
  background: var(--contrast-color);
  width: 100%;
  height: 100%;
}


.what-to-do .what-to-do-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.what-to-do .what-to-do-card:hover .what-to-do-overlay {
  opacity: 1;
  visibility: visible;
}

.what-to-do .what-to-do-card .what-to-do-image {
  position: relative;
  overflow: hidden;
}

.what-to-do .what-to-do-card .what-to-do-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
}

.what-to-do .what-to-do-card .what-to-do-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--surface-color), transparent);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.what-to-do .what-to-do-card .what-to-do-actions {
  position: absolute;
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
}

.what-to-do .what-to-do-card:hover .what-to-do-actions {
  transform: translateY(0);
  position: absolute;
  top: 7%;
  right: 6%;
}

.what-to-do .what-to-do-actions .blue-circle {
  display: block;
  color: var(--white-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: 1px solid var(--white-color);
  background-color: rgba(255, 255, 255, .3);
  border-radius: 50%;
  transition: all 0.6s ease;
}

.what-to-do .what-to-do-card .what-to-do-actions a:hover {
  background-color: var(--white-color);
  color: var(--accent-color);
}

.what-to-do .what-to-do-card .what-to-do-content {
  position: absolute;
  bottom: 6%;
  left: 6%;
  opacity: 0;
}

.what-to-do .what-to-do-card:hover .what-to-do-content {
  opacity: 1;
}

.what-to-do .what-to-do-card .what-to-do-content .category {
  color: var(--white-color);
  font-size: 1.2rem;
  font-weight: 500;
}

.what-to-do .what-to-do-card .what-to-do-content p {
  color: var(--white-color);
  font-size: 1rem;
  margin: 0;
  line-height: 1.3;
}

.what-to-do .owl-theme .owl-nav {
  position: absolute;
  top: -20%;
  right: 3%;
}

.what-to-do .owl-theme .owl-nav button i {
  font-size: 25px;
  color: var(--surface-color);
}

.what-to-do .owl-theme .owl-nav button:hover {
  background-color: unset;
}

.what-to-do .owl-theme .owl-nav button.disabled i {
  color: var(--white-color);
}

@media (max-width: 457px) {

  .what-to-do .owl-theme .owl-nav {
    top: -24%;
    right: 5%;
  }

  .what-to-do .owl-theme .owl-nav button i {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Trust Us Section
--------------------------------------------------------------*/

.trust-us-section {
  position: relative;
  background: linear-gradient(90deg,rgba(255, 215, 0, 1) 0%, rgba(140, 0, 200, 0.3)), url('../img/trust-us-bg.jpg') center/cover no-repeat;
  width: 100%;
  height: 100%;
}

.trust-us-section .trust-blk {
  padding: 25px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(35px);
  color: var(--white-color);
  text-align: center;
  height: 100%;
}

.trust-us-section .trust-blk .trust-icon {
  display: inline-block;
  padding: 22px;
  border-radius: 50%;
  background-color: var(--white-color);
}

.trust-us-section .trust-blk .trust-icon img {
  width: 80px;
}

.trust-us-section .trust-blk .trust-details h2 {
  font-size: 1.7rem;
}

/*--------------------------------------------------------------
# Testimonial Section
--------------------------------------------------------------*/

.testimonial-section .vector-bubble {
  top: 10px;
  left: 40px;
}

.testimonial-section .pipe-wrench {
  top: 150px;
  left: 60px;
}

.testimonial-section .carbon-tool-kit {
  top: 10px;
  right: 40px;
}

.testimonial-section .pipe-light {
  bottom: 0;
  right: 0;
}

.testimonial-section .bubble-vector {
  bottom: 10px;
  right: 33%;
}

.testimonial-section .pipe-line {
  bottom: 0;
  left: 60px;
}

.testimonial-section.section {
  background-color: #f5e7ff;
}

.testimonial .testimonial-card {
  background-color: var(--white-color);
  padding: 50px;
  border-radius: 20px;
  margin: 20px;
  filter: blur(4px);
  -webkit-transform: scale3d(0.9, 0.9, 1);
  transform: scale3d(0.9, 0.9, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.testimonial .owl-item.center .testimonial-card {
  background-color: var(--contrast-color);
  color: var(--white-color);
  filter: blur(0px);
  transform: scale3d(1.0, 1.0, 1);
}

.customer-review .quote-icon {
    position: absolute;
    right: -43px;
    top: 73px;
    width: 75px !important;
}

.testimonial .testimonial-card .customer-review .para {
  font-size: 1.4rem;
  line-height: 1.8rem;
  margin-bottom: 42px;
  font-style: italic;
}

.testimonial-card .customer-details p {
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 600;
  line-height: .8rem;
  color: var(--surface-color);
}

.testimonial-card .customer-details span {
  font-size: .8rem;
  font-weight: 400;
  line-height: .8rem;
}

#testimonial-slider-2 .item {
  direction: ltr !important;
  text-align: left;
  /* Optional: align content correctly */
}

@media (max-width: 997px) {

  .testimonial .testimonial-card {
    margin: 0px;
  }

  .testimonial .testimonial-card .customer-review .para {
    font-size: 1rem;
    line-height: 1.4rem;
  }

  .customer-review .quote-icon {
    top: -128px;
    right: 39px;
    width: 65px !important;
  }
}

@media (max-width: 457px) {

  .customer-review {
    margin-bottom: 30px;
  }

  .testimonial .testimonial-card {
    padding: 20px 0px 0px 0px;
  }

  .testimonial .testimonial-card .customer-review .para {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

#gallery-slider .item {
  text-align: center;
  margin-bottom: 15px;
  -webkit-transform: scale3d(0.9, 0.9, 1);
  transform: scale3d(0.9, 0.9, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#gallery-slider .owl-item.active.center .item {
  transform: scale3d(1.0, 1.0, 1);
}

#gallery-slider .item .gallery-image img {
    border-radius: 25px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about-section {
  position: relative;
  overflow: clip;
  padding: 60px 0;
  z-index: 1;
}

.about-section::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background: url('../img/about-bg.png') right/contain no-repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-section .about-img img{
  border-radius: 30px;
}

.about-section .about-mobile {
  border-radius: 20px;
}

.about-section .veritical-content .ribbon-star-grey {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--contrast-color);
  padding: 10px 15px;
  border-radius: 8px;
}

.about-section .veritical-content span {
  position: absolute;
  right: 11px;
  top: 18%;
  font-size: 1.7rem;
  font-weight: 700;
  writing-mode: tb-rl;
  transform: rotate(-180deg);
  text-transform: uppercase;
  color: #6B6B81;
}

.about-section .veritical-content .about-side-img {
    position: absolute;
    right: -2px;
    bottom: -19px;
    border: 15px solid #fff;
    border-radius: 30px;
}


/*--------------------------------------------------------------
# Vision Mission Section
--------------------------------------------------------------*/

.vision-section .vision-blk {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 60px;
  color: #fff;
  text-align: center;
  border-radius: 25px;
}

.vision-section .vision-blk.bg-purple {
  background-color: var(--contrast-color);
}

.vision-section .vision-blk.bg-pink {
  background-color: var(--surface-color);
}

.vision-section .vision-blk .btn-div {
  background-color: #fff;
  border-radius: 50px;
  padding: 5px 40px;
  border: 3px solid rgb(0 0 0 / .2);
  margin-bottom: 25px;
}

.vision-section .vision-img {
  border-radius: 25px;
}

.vision-section .vision-blk .vision-btn {
  background: linear-gradient(90deg, hsla(276, 100%, 25%, 1) 0%, hsla(324, 100%, 46%, 1) 50%, hsla(51, 100%, 50%, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact-section .contact-blk {
  background: var(--background-color);
  padding: 20px;
  border-radius: 10px;
  height: 100%;
  transition: all .3s ease-in-out;
}

.contact-section .contact-blk:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contact-section .contact-blk .contact-img {
  background: #fff;
  border-radius: 50%;
  padding: 25px;
}

.contact-section .contact-blk .contact-img i {
  font-size: 30px;
  color: var(--surface-color);
}

.contact-section .contact-blk .contact-detail {
  width: 100%;
}

.contact-section .contact-blk .contact-detail a,
.contact-section .contact-blk .contact-detail p {
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/

.social-media-links li a {
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  width: 50px;
  height: 50px;
}

.social-media-links li .bg-dark-blue {
  background-color: var(--contrast-color);
}

.social-media-links li:hover a {
  transform: translateY(-10px)
}


/* About Page Css */

/*--------------------------------------------------------------
# Common Style Css
--------------------------------------------------------------*/

.about-section-heading {
  font-size: 50px;
  font-weight: 500;
}

.about-section-heading span {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .about-section-heading {
    font-size: 40px;
  }
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/

.about-hero-section .about-hero-heading .sub-heading {
  font-family: "Sora", sans-serif;
  text-transform: capitalize;
  color: var(--default-color);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 3.5rem;
}

.about-hero-section .about-hero-heading .sub-heading span {
  color: var(--contrast-color);
}

.about-hero-section .about-sec-bg {
  position: absolute;
  top: -100px;
  right: 0px;
  width: 600px;
  height: 100%;
  z-index: -1;
}

.about-hero-section .about-bse {
  color: rgba(255, 255, 255, 75%);
  background-color: var(--contrast-color);
  border-radius: 20px;
  padding: 45px;
  text-align: center;
  margin-top: -50px;
  z-index: 0;
}

.about-hero-section .about-bse span {
  font-size: 20px;
  color: var(--white-color);
}

.about-bse .vector-bubble {
  top: 10px;
  left: 0;
  z-index: -1;
}

.about-bse .pipe-wrench {
  top: 130px;
  left: 140px;
  z-index: -1;
}

.about-bse .pipe-light {
  bottom: 0;
  right: 0;
  z-index: -1;
}

/*--------------------------------------------------------------
# What we do Section
--------------------------------------------------------------*/

.what-to-do-blk {
  padding: 5px;
  border-radius: 25px;
  text-align: center;
  height: 100%;
}

.what-to-do-blk img{
  border-radius: 20px;
}

.what-to-do-blk h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  text-transform: uppercase;
}

.what-to-do-blk .to-do-blk-heading p {
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1;
}

.what-to-do-blk .center-blk-img {
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 450px;
}

.what-to-do-blk .blk-bottom-heading {
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
}

.what-to-do-blk .blk-bottom-heading p {
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1;
}

@media (max-width: 768px) {
    .what-to-do-blk .blk-bottom-heading {
      bottom: -2px;
    }
}

@media (max-width: 456px) {
    .what-to-do-blk .blk-bottom-heading {
      bottom: 2px;
    }
}

/*--------------------------------------------------------------
# Core Value Section
--------------------------------------------------------------*/

.core-value-section {
  background-color: #fff2af;
}

.core-value-section .core-value-img {
  border-radius: 20px;
}

.core-blk .core-img img {
  background-color: var(--accent-color);
  padding: 15px;
  border-radius: 50%;
  margin-right: 20px;
}

.core-blk .core-img.dark-blue-bg img {
  background-color: var(--contrast-color);
}

.core-blk .core-img.dark-yellow-bg img {
  background-color: #FFD700;
}

.core-blk .core-details h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.core-blk .core-details p {
  margin-bottom: 0;
  line-height: 1.3;
}

/*--------------------------------------------------------------
# About Trust Section
--------------------------------------------------------------*/

.about-trust-blk {
  color: var(--white-color);
  background-color: var(--contrast-color);
  border-radius: 20px;
  padding: 120px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.about-trust-blk h2 {
  font-size: 50px;
  font-weight: 600;
}

.about-trust-blk .vector-line-1 {
  top: 0;
  left: 0;
  z-index: -1;
}

.about-trust-blk .vector-line-2 {
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 768px) {
  .about-hero-section .about-hero-heading .sub-heading {
    font-size: 3rem;
    text-align: center;
  }

  .about-trust-blk {
    padding: 60px;
  }

  .about-trust-blk h2 {
    font-size: 40px;
  }
}

@media (max-width: 456px) {
  .about-hero-section .about-hero-heading .sub-heading {
    font-size: 2rem;
    line-height: 2rem;
  }

  .about-hero-section .about-bse {
    padding: 20px;
  }

  .to-do-blk-heading {
    height: 450px;
  }

  .about-trust-blk {
    padding: 30px;
  }

  .about-trust-blk h2 {
    font-size: 25px;
  }
}

/* Who We Serve Page Css */

.who-we-serve-home {
  display: block;
  position: relative;
  background-image: url(../img/who-we-serve.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
  width: 100%;
  height: 700px;
  z-index: 1;
  overflow: hidden;
}

.who-we-serve-home .who-we-serve-desc {
  right: 30px;
  bottom: 70px;
  width: 500px;
  text-align: right;
}

.who-we-serve-home h1 {
  font-size: 60px;
}

.serve-section-head h2 {
  font-size: 3rem;
  line-height: 3.3rem;
}

.what-we-serve-img img {
  border-radius: 30px;
}

@media (max-width: 997px) {

  .who-we-serve-home {
    height: 500px;
  }

  .who-we-serve-home h1 {
    font-size: 50px;
  }

  .serve-section-head h2 {
    font-size: 2.3rem;
    line-height: 2.5rem;
  }
}

@media (max-width: 577px) {

  .who-we-serve-home h1 {
    font-size: 35px;
  }

  .who-we-serve-home .who-we-serve-desc {
    right: 0;
    bottom: 15px;
    width: 100%;
    text-align: center;
  }

  .serve-section-head h2 {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}

/* FAQ Page Css */

.faq-hero-section {
  display: block;
  position: relative;
  background-image: url(../img/faq-blur-bg.png);
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 30px;
  width: 100%;
  z-index: 1;
}

.faq-hero-section .faq-home {
  display: block;
  position: relative;
  background-image: url(../img/faq-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
  width: 100%;
  z-index: 1;
}

.faq-hero-section .faq-home h1 {
  padding: 150px 200px;
  font-size: 4rem;
}

.faq-section .faq-heading {
  font-size: 3rem;
  font-weight: 600;
}

.faq-section .accordion-item {
  background-color: transparent;
}

.faq-section .accordion-collapse {
  background-color: #fff;
  border-radius: 10px;
}

.faq-section .accordion-header .accordion-button {
  background: #EC008C;
  background: linear-gradient(90deg, rgba(255, 215, 0, 1) 0%, rgba(75, 0, 125, 1) 100%);
  color: var(--white-color);
  border-radius: 10px;
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
  box-shadow: none;
  padding: 20px;
  border: 2px solid var(--white-color);
  transition: all .3s ease;
}

.faq-section.gradiant-yellow-bg .accordion-header .accordion-button {
  background: #4B007D;
  background: linear-gradient(90deg, rgba(75, 0, 125, 1) 0%, rgba(255, 215, 0, 1) 100%);
}

.faq-section .accordion-header .accordion-button.collapsed {
  background: var(--background-color);
  color: var(--heading-color);
  border-radius: 10px;
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
  box-shadow: none;
  border: 2px solid var(--surface-color);
}

.faq-section .accordion-body {
  border-radius: 10px;
}

.faq-section .accordion-header .accordion-button::after {
  display: none;
}

.faq-section .accordion-button .icon {
  transition: transform 0.3s;
}

.faq-section .accordion-button:not(.collapsed) .icon::before {
  content: "\f077";
}

.faq-section .accordion-button.collapsed .icon::before {
  content: "\f078";
}

@media (max-width: 997px) {
  .faq-hero-section .faq-home h1 {
    padding: 100px 50px;
    font-size: 4rem;
  }

  .faq-section .faq-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 567px) {
  .faq-hero-section {
    background-position: bottom;
  }

  .faq-hero-section .faq-home h1 {
    padding: 70px 15px;
    font-size: 2rem;
  }

  .faq-section .faq-heading {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}


/* Blog page Css */

.blog-hero-section .blog-home {
  display: block;
  position: relative;
  background-image: url(../img/blog-bg.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
  width: 100%;
  z-index: 1;
}

.blog-hero-section .blog-home h1 {
  padding: 150px 200px;
  font-size: 4rem;
}

.link,
.link .fa-arrow-right {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, rgba(236, 0, 140, 1) 0%, rgba(75, 0, 125, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

.link.without-underline::after {
  display: none;
}

.link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 88%;
  height: 1px;
  background: linear-gradient(90deg, rgba(236, 0, 140, 1), rgba(75, 0, 125, 1));
}

.badges .badge {
  border-radius: 5px;
  padding: 10px;
  font-weight: 500;
}

.badges .large-badge {
  border-radius: 25px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 400;
}

.badge.primary-badge {
  background-color: #EC008C30;
  color: var(--accent-color);
}

.badge.yellow-badge {
  background-color: #FFD700;
  color: var(--accent-color);
}

.badge.blue-badge {
  background-color: #4B007D30;
  color: var(--contrast-color);
}

.blog-blk img {
  border-radius: 15px;
}

.blog-blk .blog-details h3 {
  font-size: 18px;
  font-weight: 700;
  min-height: 45px;
}

.blog-blk .blog-details p {
  font-size: 15px;
  min-height: 65px;
}

.blog-blk .blog-user-details img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.blog-blk .blog-user-details .blog-date {
  font-size: 14px;
  color: #9696A7;
  line-height: 1;
}

.blog-blk .blog-user-details .blog-date {
  font-size: 14px;
  color: #530031;
  font-weight: 600;
  line-height: 1;
}

.form-section {
  padding: 0;
}

.form-control,
.form-select {
  background-color: #EC008C17;
  border: none;
  border-radius: 25px;
  padding: 15px;
}

.form-control:focus,
.form-select:focus {
  outline: unset;
  box-shadow: unset;
  background-color: #EC008C17;
}

.form-control.bse-invalid {
  border-color: #ff0000 !important;
}

.bse-error {
  color: #ff0000;
}

.form-control::placeholder {
  color: #A78398;
}

@media (max-width: 997px) {
  .blog-hero-section .blog-home h1 {
    padding: 50px 100px;
    font-size: 3rem;
  }

  .barmuda-clean-section .serve-section-head h2 {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}

@media (max-width: 567px) {
  .blog-hero-section .blog-home h1 {
    padding: 50px 15px;
    font-size: 2rem;
  }

  .barmuda-clean-section .serve-section-head h2 {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}

/* Service Area Page Css */

.bermuda-map {
  margin-top: -60px;
  text-align: center;
}

.bermuda-map-img {
  position: relative;
  width: 800px;
}

.services-section {
  position: relative;
  z-index: 1;
}

.services-blue-blur-bg {
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.services-pink-blur-bg {
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

.services-section .services-heading {
  color: var(--white-color);
  font-size: 40px;
  font-weight: 500;
}

.services-section .services-heading span {
  color: var(--surface-color);
}

.services-section-head .services-head-heading {
  font-size: 35px;
  font-weight: 600;
}

.services-section-head .services-head-desc {
  font-size: 17px;
  text-transform: capitalize;
}

.services-section-head .services-area-points h3 {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 600;
}

.services-area-points li {
  position: relative;
  font-size: 17px;
  margin-bottom: 20px;
  padding-left: 45px;
  line-height: 1.5;
}

.services-area-points li::before {
  content: '\f00c';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--contrast-color);
  border-radius: 50%;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-area-points.yellow-check-bg li::before {
  background-color: var(--surface-color);
  color: #000;
}

@media (max-width: 567px) {
  .bermuda-map {
    margin-top: 0px;
  }

  .services-section .services-heading {
    font-size: 30px;
  }

  .services-section-head .services-head-heading {
    font-size: 27px;
  }

  .services-section-head .services-head-desc {
    font-size: 16px;
  }

  .services-section-head .services-area-points h3 {
    font-size: 23px;
  }

  .services-area-points li {
    font-size: 15px;
  }
}

/* Service Area Page Css */

.emergency-page-home-section {
  position: relative;
  z-index: 0;
}

.emergency-page-home-section.hero-section .hero-heading .sub-heading {
  font-size: 3.5rem;
  line-height: 3.5rem;
}

.blury-text {
  position: absolute;
  color: var(--contrast-color);
  font-size: 10rem;
  font-weight: 700;
  line-height: .8;
  text-transform: uppercase;
  font-family: "Sora", sans-serif;
  ;
  opacity: .2;
  z-index: -1;
}

.blury-text.blury-text-left {
  left: -160px;
  top: 40px;
}

.blury-text.blury-text-right {
  right: -180px;
  top: 170px;
}

.availability-section .availability-section-heading {
  font-size: 3rem;
  color: #330721;
  line-height: 1;
  font-weight: 700;
}

.availability-section .availability-section-desc {
  color: #806173;
}

.availability-blk {
  display: flex;
  align-items: center;
  justify-content: center;
}

.availability-blk img {
  width: 300px;
  border-radius: 38px;
  z-index: 1;
  box-shadow: 55px 77px 74px 0px #3307211F;
}

.availability-blk-content {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 30px 35px 70px;
  margin-left: -40px;
  margin-top: 70px;
}

.availability-blk-content .availability-blk-heading {
  font-size: 1.2rem;
  color: #530031;
  font-weight: 600;
  margin-bottom: 1rem;
}

.availability-blk-content .availability-blk-points {
  padding-left: 1rem;
  font-size: .9rem;
  color: #6B6B81;
}

.availability-blk-content .availability-blk-points li {
  margin-bottom: 1rem;
}

.why-emergency-sectiion .about-section-heading span {
  background: linear-gradient(90deg, rgba(236, 0, 140, 1) 0%, rgba(75, 0, 125, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 997px) {
  .emergency-page-home-section.hero-section .hero-heading .sub-heading {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

  .blury-text {
    font-size: 6rem;
  }

  .blury-text.blury-text-right {
    right: -151px;
    top: 40px;
  }

  .availability-blk {
    display: block;
  }

  .availability-blk-content {
    padding: 44px 24px 10px;
    margin-left: 40px;
    margin-top: -33px;
  }

  .availability-blk img {
    width: 250px;
  }
}

@media (max-width: 567px) {

  .emergency-page-home-section.hero-section .hero-heading .sub-heading {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  .availability-section .to-do-blk-heading {
    height: 150px;
  }


  .blury-text {
    font-size: 3rem;
  }

  .blury-text.blury-text-left {
    left: -31px;
    top: 20px;
  }

  .blury-text.blury-text-right {
    right: -45px;
  }
}


/* Contact us page Css */

.contact-us-home-section {
  overflow: unset;
  position: relative;
}

.contact-us-home-section .contact-us-img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--contrast-color);
  margin-bottom: 60px;
}

.contact-form-section .info-section {
  background: linear-gradient(145deg, rgba(83, 0, 49, 1) 0%, rgba(236, 0, 140, 1) 100%);
  border-radius: 15px;
  color: var(--white-color);
  padding: 45px 35px;
  z-index: 1;
}

.info-bg-gradiant {
  bottom: -36%;
  width: 100%;
  z-index: -1;
}


.contact-form-section .hire-us-rotate .center-dot {
  top: 57%;
  right: 38.5%;
}

.request-form {
  position: relative;
  background: #6d4c63;
  padding: 50px;
  color: #fff;
  border-radius: 15px;
  z-index: 1;
}

.request-form-section .form-control,
.request-form-section .form-select {
  border-radius: 12px;
  background-color: #86667b;
  border: 1px solid #fff;
  color: #fff;
}

.request-form-section .form-check-input {
  border-radius: 2px;
  background-color: #fff;
  border: 1px solid #ff0080;
  color: #fff;
}

.request-form-section .form-control:focus,
.request-form-section .form-select:focus,
.request-form-section .form-check-input:focus {
  outline: unset;
  box-shadow: unset;
}

.request-form-section .form-check-label {
  color: #fff;
  font-size: 15px;
}

.request-form-section .form-check-checkbox {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: .125rem;
}

.request-form-section .form-check-input:checked {
  background-color: #ff0080;
  border-color: #ff0080;
}

.request-form-section input[type="radio"] {
  accent-color: #ff0080;
}

.request-form-section .form-box {
  border-radius: 16px;
  margin-bottom: 20px;
}

.request-form-section input.form-control::placeholder,
.request-form-section textarea.form-control::placeholder {
  color: #fff;
}

.urgent-help-section .urgent-help-bg {
  bottom: 0;
  left: 0;
  z-index: 0;
}

.urgent-help-blk {
  color: var(--white-color);
  padding: 100px;
  text-align: center;
  z-index: 1;
}

.urgent-help-blk h2 {
  font-size: 50px;
  font-weight: 600;
}

@media (max-width: 997px) {

  .contact-form-section .hire-us-rotate .center-dot {
    top: 32%;
    right: 34.5%;
  }

  .request-form-section .form-check-checkbox {
    padding-left: 0em;
  }

  .request-form-section .form-check-label {
    font-size: 13px;
  }

  .urgent-help-blk {
    padding: 60px;
  }

  .urgent-help-blk h2 {
    font-size: 40px;
  }

}

@media (max-width: 557px) {

  .contact-us-home-section .contact-us-img {
    margin-bottom: 52px;
  }

  .hire-us-title h2 {
    font-size: 2rem;
  }

  .contact-form-section .hire-us-section {
    margin-top: 80px;
  }

  .contact-form-section .hire-us-rotate .center-dot {
    top: 25%;
  }

  .contact-form-section .info-section {
    padding: 30px 26px;
  }

  .request-form {
    padding: 20px 10px;
  }

  .request-form-section .form-check-label {
    font-size: 10px;
  }

  .urgent-help-blk {
    padding: 15px;
  }

  .urgent-help-blk h2 {
    font-size: 25px;
  }
}

/* Carrer page css */

.career-home-section .home-section-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 15px;
}

.career-home-section .hero-heading .sub-heading {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 600;
}

.career-home-section .main-btn {
  margin-bottom: 14rem;
}

.career-home-section .main-btn.btn-outline:hover {
  border: 2px solid transparent;
  color: #000;
}

.career-home-section .main-btn.btn-outline:hover::before {
  height: 100%;
}

.career-home-section .main-btn:hover .circle-arrow {
  color: var(--white-color);
  background: var(--accent-color);
}

.open-position-blk {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
  padding: 20px;
  transition: all 10s ease-in-out;
}

.position-number {
  font-size: 4.5rem;
  font-weight: 800;
  opacity: .6;
  line-height: 1;
}

.position-department {
  font-size: 1rem;
  font-weight: 500;
}

.position-name .fa-user-tie {
  font-size: 1.7rem;
  color: var(--contrast-color);
}

.position-name p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
  margin-left: 10px;
}

.position-location .fa-location-dot {
  font-size: 1.7rem;
  color: var(--contrast-color);
}

.position-location p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
  margin-left: 10px;
}

.position-desc {
  font-size: .9rem;
  line-height: 1.5;
  color: #806173;
}

.open-position-blk:hover {
  background: linear-gradient(144deg, rgba(255, 215, 0, 1) 0%, rgba(75, 0, 125, 1) 100%);
}

.open-position-blk:hover .position-department,
.open-position-blk:hover .position-name .fa-user-tie,
.open-position-blk:hover .position-name p,
.open-position-blk:hover .position-location .fa-location-dot,
.open-position-blk:hover .position-location p,
.open-position-blk:hover .position-desc {
  color: var(--white-color);
}

.open-position-blk:hover .link {
  background: unset;
  -webkit-background-clip: text;
  -webkit-text-fill-color: white;
}

.open-position-blk:hover .link::after {
  background: var(--white-color);
}

.open-position-blk .link::after {
  width: 100%;
}

.priority-section .services-section-head .services-head-heading {
  font-size: 45px;
}

.services-area-points .bg-dark-blue:before {
  background-color: var(--contrast-color);
}


.services-area-points .bg-yellow:before {
  background-color: var(--surface-color);
}

@media (max-width: 997px) {

  .career-home-section .hero-heading .sub-heading {
    font-size: 2rem;
  }

  .career-home-section .home-section-bg {
    top: unset;
    width: 100%;
  }

  .career-home-section .main-btn {
    margin-bottom: 8rem;
  }

  .transport-section .urgent-help-blk {
    padding: 40px;
  }
}

@media (max-width: 567px) {

  .career-home-section .main-btn {
    margin-bottom: 0;
  }

  .transport-section .urgent-help-blk {
    padding: 10px 40px;
  }
}

.how-we-operate-section .operate-section-home {
  display: block;
  position: relative;
  background-image: url(../img/how-to-operate-bg.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
  width: 100%;
  z-index: 1;
}

.operate-section-home h1 {
  padding: 150px 200px;
  font-size: 4rem;
}

.operates-blk {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px;
  margin-top: -15px;
}

.operates-blk p {
  min-height: 215px;
  margin-bottom: 0;
}

.operates-blk-img {
  display: inline-block;
  width: 140px;
  height: 140px;
  line-height: 140px;
  margin-bottom: -50px;
  border-radius: 50%;
  z-index: 1;
}

.operates-blk-img .operate-bg-blur {
  left: -30px;
  top: 0;
  z-index: -1;
}

.operates-section .operates-blk-img.operate-gradiant-bg {
  background: linear-gradient(144deg, rgba(236, 0, 140, 1) 0%, rgba(75, 0, 125, 1) 100%);
}

@media (max-width: 997px) {
  .operate-section-home h1 {
    padding: 50px 100px;
    font-size: 3rem;
  }

  .operates-blk p {
    min-height: 250px;
  }
}

@media (max-width: 567px) {
  .operate-section-home h1 {
    padding: 50px 15px;
    font-size: 2rem;
  }

  .operates-blk-img {
    margin-bottom: -60px;
  }

  .operates-blk {
    padding: 15px;
    margin-top: -10px;
  }

  .operates-blk p {
    min-height: unset;
    margin-bottom: 15px;
  }
}

/*Modal Css*/
.modal-body .request-form {
  border-radius: 0px;
}

.modal-header {
  background-color: #6d4c63;
}

.modal-header .btn-close {
  background-color: #fff;
}

.request-form-modal::-webkit-scrollbar {
  width: 8px;
  /* scrollbar width */
  height: 8px;
  /* scrollbar height (for horizontal) */
}

/* Background of scrollbar track */
.request-form-modal::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* light grey */
  border-radius: 10px;
}

/* Scrollbar handle */
.request-form-modal::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ec008c, #4b007d);
  /* gradient */
  border-radius: 10px;
}

/* Handle on hover */
.request-form-modal::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff4fa0, #6a00b3);
}

/* For Firefox */
.request-form-modal {
  scrollbar-width: thin;
  /* "auto" or "thin" */
  scrollbar-color: #ec008c #f1f1f1;
  /* thumb color | track color */
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(2);
  cursor: pointer;
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/*Single page css*/

.blog-details .post-hero img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 500px;
    /* Adjust height if you want */
    object-fit: cover;
    border-radius: 15px;
}

.blog-details .post-title {
    font-size: 2.2rem;
    font-weight: bold;
}

.blog-details .post-meta {
    font-size: 0.95rem;
    color: #777;
}

.blog-details .post-content {
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.main-service-heading{
    text-transform: capitalize;
    color: var(--contrast-color);
    font-size: 4rem;
    font-weight: 500;
    line-height: 4rem;
}

.service-home-section .service-heading{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
  font-size: 3rem;
}

@media (max-width: 567px) {

  .main-service-heading{
    font-size: 2rem;
    line-height: 1;
}

  .service-home-section .service-heading{
    font-size: 2rem;
    text-align: center;
  }
}

.wp-block-list {
    padding-left: 0;
    list-style: none;
}

.wp-block-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 45px;
}

.wp-block-list li::before {
    content: '\f00c';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--accent-color);
    border-radius: 50%;
    font-size: 9px;
    color: #fff;
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Out Team */

.our-team-home {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.our-team-home .team-img,
.our-team-home .team-gradiant {
  display: block;
  width: 100%;
  border-radius: inherit;
}

.our-team-content {
  width: 80%;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  z-index: 2;
}

.our-team-content .heading {
  font-family: "Sora", sans-serif;
  text-transform: capitalize;
  color: var(--default-color);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 3.5rem;
}

.team-gradiant {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1;
}

.leaders-section {
  background-color: #F3D3E6;
}

.leader-blk {
  background-color: var(--white-color);
  border-radius: 16px;
  padding: 40px 20px;
}

.leader-img {
  width: 330px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 50% / 33%;
  display: inline-block;
}

.leader-name {
  font-size: 1.8rem;
  font-weight: 600;
}

.leader-position {
  font-size: 1.3rem;
}

.department-blk {
  background-color: var(--white-color);
  border-radius: 24px;
  padding: 10px 80px;
}

.department-name {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 25px;
  border-radius: 10px;
}

.department-name.pink-bg-color {
  box-shadow: 0px 32px 48.4px 0px #EC008C26;
}

.department-name.dark-blue-bg-color {
  box-shadow: 0px 32px 48.4px 0px #4B007D29;
}

.department-name.yellow-bg-color {
  box-shadow: 0px 32px 48.4px 0px #FFD70063;
}

.department-name.bg-blue {
  box-shadow: 0px 32px 48.4px 0px #4B007D29;
}

.department-name h3 {
  font-size: 1.2rem;
}

.member-details {
  margin-top: 150px;
}

.member-details .member-img-div p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-size: 2rem;
  font-weight: 600;
  background-color: #5E3425;
  color: #FF8957;
  border-radius: 50%;
  margin-bottom: 0px;
}

.member-details .member-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0;
}

.member-details .member-position {
  font-size: 1.1rem;
}

@media (max-width: 1200px) {
  .our-team-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .our-team-content .heading {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}

@media (max-width: 567px) {

  .our-team-content {
    width: 98%;
    bottom: 5%;
  }

  .our-team-content .heading {
    font-size: 1.3rem;
    line-height: 1.3rem;
  }

  .our-team-content .para {
    font-size: .775rem;
  }

  .department-blk {
    padding: 10px 40px;
  }

  .members-content{
    background: #fff;
    border-radius: 20px;
    box-shadow: rgba(244, 249, 255, 1) 0px 4px 16px, rgba(244, 249, 255, 1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    padding: 20px 30px;
  }
}