/* @import url(sub_css/blog_details.css);
@import url(sub_css/contactus.css);
@import url(sub_css/photography.css);
@import url(sub_css/privacy_policy.css);
@import url(sub_css/videography.css);
@import url(sub_css/services.css); */
:root {
  --body-color: #d5ddf8;
  --color-white: #fff;
  --color-black: #000;
  --text-color: #001b4c;
  --fire-color: #3f33bb;
  --border-card: rgba(170, 170, 170, 1);
  --color-new-black: rgba(68, 68, 68, 1);
}

:root {
  --roboto: font-family: "Roboto", serif;
  --normal: 400;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow: auto;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body::-webkit-scrollbar-thumb {
  background: var(--fire-color);
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--text-color);
}

body::-webkit-scrollbar-track {
  background: #f4e4ff;
}

body {
  font-size: 18px;
  font-family: var(--roboto);
  font-weight: var(--normal);
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background-color: var(--body-color) !important;
}

.mn_wrap {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mn_wrap.open {
  transform: translateX(0);
}

/* CLOSE BUTTON */
.mn_close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 10000;
  color: #000;
}


#window {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

.book_now_popup .modal-body.custom-modal-body {
  padding: 0px !important;
}

.paddy_90 {
  padding: 70px 0px;
}

button {
  display: inline-block;
}

p {
  line-height: 26px;
  margin-bottom: 20px;
  font-family: var(--roboto);
  color: var(--text-color);
}

a {
  text-decoration: none !important;
  color: var(--text-color);
}

hr {
  margin-top: 16px;
  margin-bottom: 16px;
  border: 0;
  opacity: 1;
}

img,
svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

figure {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
}

a:focus,
:focus-visible {
  outline: none;
}

ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

ul li {
  padding: 0px;
  margin: 0px;
}

.none {
  display: none;
}

.hidescroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-color);
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  position: relative;
  line-height: normal;
}

body h1 {
  font-size: 74px;
  line-height: 81px;
  font-weight: 700;
}

body h2 {
  font-size: 64px;
  line-height: 80px;
  color: var(--text-color);
}

body h4 {
  font-size: 48px;
}

body h5 {
  font-size: 35px;
}

body h6 {
  font-size: 24px;
}

.text-14 {
  font-size: 14px;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px !important;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px !important;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px !important;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px !important;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1680px !important;
  }

  .container.med {
    max-width: 1550px !important;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1140px !important;
  }
}

@media (min-width: 1706.67px) {
  .container {
    max-width: 1500px !important;
  }
}

/**** Style for Header ****/
header {
  position: relative;
  background-color: var(--color-white);
  transition: all 300ms ease-in-out;
}

header .header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .header_inner .logo {
  display: block;
  width: 175px;
  margin: 15px 0;
}

header .header_inner .logo img {
  width: 100%;
  /* height: 100%; */
  height: 90px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

header .header_inner .logo {
  margin: 0;
}

header .header_inner .logo .logo_img {
  height: 90px;
}

header .header_inner .main_nav ul {
  padding-inline-start: 0;
  margin: 0;
}

header .header_inner .main_nav ul .nav_item {
  display: inline-block;
}

header .header_inner .main_nav ul .nav_item .nav_link {
  display: block;
  font-family: "Roboto", sans-serif;
  padding: 28px 20px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  height: 75px;
  letter-spacing: 1px;
  transition: all 300ms ease-in-out;
}

header .header_inner .main_nav ul .nav_item .nav_link:hover {
  color: var(--fire-color);
}

header .header_inner .main_nav ul .nav_item .btn_booking {
  background-color: var(--main-color);
  color: var(--white);
  letter-spacing: 0.5px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  padding: 13px 15px;
  padding-bottom: 10px;
  transition: all 300ms ease-in-out;
}

header .header_inner .main_nav ul .nav_item .btn_booking i {
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.15);
  text-align: center;
  width: 25px;
  height: 25px;
  font-weight: normal;
  line-height: 25px;
}

header .header_inner .main_nav ul .nav_item .btn_booking:hover {
  background-color: var(--main-color-hover);
}

header .header_inner .mobile_nav {
  display: none;
  position: relative;
}

header .header_inner .mobile_nav .toggle-menu-button {
  width: 30px;
  height: 30px;
  border: none;
  padding-top: 5px;
  vertical-align: middle;
  background-color: transparent;
}

header .header_inner .mobile_nav .toggle-menu-button .line {
  position: relative;
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 7px;
  margin-left: auto;
  margin-right: auto;
  clear: both;
  background-color: var(--text-color);
  transition: all 400ms ease-in-out;
}

header .header_inner .mobile_nav .toggle-menu-button .line:nth-child(1) {
  width: 18px;
  margin-right: 0;
}

header .header_inner .mobile_nav .toggle-menu-button.open .line:nth-child(1) {
  transform: translateY(9px) rotate(-135deg);
  width: 30px;
}

header .header_inner .mobile_nav .toggle-menu-button.open .line:nth-child(2) {
  transform: none;
  opacity: 0;
}

header .header_inner .mobile_nav .toggle-menu-button.open .line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

header .header_inner .mobile_nav .mn_wrap {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  height: 100%;
  background-color: rgba(20, 14, 14, 0.75);
  width: 0;
  opacity: 0;
  transition: all 300ms ease-in-out;
}

header .header_inner .mobile_nav .mn_wrap .mn_close {
  position: absolute;
  top: 7px;
  left: 12px;
  background-color: transparent;
  color: var(--text-color);
  border: none;
  font-size: 50px;
  width: 40px;
  height: 40px;
  z-index: 123;
}

header .header_inner .mobile_nav .mn_wrap .mn_close i {
  color: var(--color-white);
  font-weight: 100;
  transform: translateY(-30px);
  font-size: 28px;
}

header .header_inner .mobile_nav .mn_wrap .mn_inner {
  background-color: #efefef;
  width: 300px;
  height: 100%;
  margin-left: auto;
  margin-right: 0;
  transition: all 500ms ease-in-out;
  transform: translateX(300px);
}

header .header_inner .mobile_nav .mn_wrap .mn_inner h3 {
  background-color: #e3e3e3;
  color: var(--fire-color);
  text-transform: uppercase;
  padding: 16px 0;
  padding-bottom: 13px;
  padding-left: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
}

header .header_inner .mobile_nav .mn_wrap .mn_inner ul {
  padding-inline-start: 0;
  margin: 0;
}

header .header_inner .mobile_nav .mn_wrap .mn_inner ul li {
  display: block;
}

header .header_inner .mobile_nav .mn_wrap .mn_inner ul li a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  border-bottom: 1px solid #e3e3e3;
  background-color: transparent;
  color: var(--text-color);
  letter-spacing: 0.5px;
}

header .header_inner .mobile_nav .mn_wrap .mn_inner ul li a:hover {
  color: var(--main-color-hover);
}

header .header_inner .mobile_nav .mn_wrap .mn_inner .btn_booking {
  display: block;
  margin: 30px 25px;
  margin-bottom: 0;
  background-color: var(--main-color);
  color: var(--white);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px;
  border-radius: 5px;
  letter-spacing: 1px;
}

header .header_inner .mobile_nav .mn_wrap .mn_inner .btn_booking i {
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.15);
  text-align: center;
  width: 25px;
  height: 25px;
  font-weight: normal;
  line-height: 25px;
}

header .header_inner .mobile_nav .mn_wrap .mn_inner .btn_booking:hover {
  background-color: var(--fire-color);
}

header .header_inner .mobile_nav .mn_wrap.open {
  width: 100%;
  opacity: 1;
}

header .header_inner .mobile_nav .mn_wrap.open .mn_inner {
  transform: translateX(0);
}

header.header_sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 123;
  box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
  animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
}

.book_now ul {
  margin: 0;
  padding: 0;
}

.book_now ul li a {
  background-color: var(--fire-color);
  padding: 10px 20px;
  color: var(--color-white);
  font-size: 16px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  border: 2px solid var(--fire-color);
}

.book_now ul li a:hover {
  background-color: unset;
  transition: all 500ms ease;
  color: var(--fire-color);

}

/* Main Dropdown Item */
.main_wrap_dropdown {
  position: relative;
  /* Ensure the dropdown menu is positioned relative to the parent */
  cursor: pointer;
}

.main_wrap_dropdown:hover .dropdown_wrapper {
  display: block;
}

/* Dropdown Menu Styling */
.dropdown_wrapper {
  position: absolute;
  top: 100%;
  /* Position the dropdown below the parent item */
  left: 0;
  display: none;
  /* Initially hidden */
  background-color: #fff;
  /* Set background color for the dropdown */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Add a subtle shadow */
  list-style: none;
  /* Remove default list styling */
  padding: 10px 0;
  /* Add some spacing */
  margin: 0;
  z-index: 1000;
  /* Ensure the dropdown appears above other elements */
  /* Dropdown List Items */
}

.dropdown_wrapper li {
  padding: 6px 12px;
  /* Add padding to list items */
  white-space: nowrap;
  /* Prevent text from wrapping */
}

.dropdown_wrapper li a {
  text-decoration: none;
  /* Remove underline */
  color: var(--text-color);
  /* Use your custom text color */
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
  /* Smooth transition on hover */
}

.dropdown_wrapper li a:hover {
  color: var(--fire-color);
  /* Change text color on hover */
}

@media (max-width: 1400px) {
  header .header_inner .main_nav ul .nav_item .nav_link {
    font-size: 13px;
    /* padding: 25px 4px; */
  }

  header .header_inner .main_nav ul .nav_item .btn_booking {
    font-size: 12px;
  }
}

@media (max-width: 1200px) {
  header .header_inner .logo {
    width: 150px;
  }

  header .header_inner .main_nav ul .nav_item .nav_link {
    padding: 25px 12px;
    font-size: 13px;
    letter-spacing: 0;
  }
}

@media (max-width: 992px) {
  header .header_inner .main_nav {
    display: none;
  }

  .desktop {
    display: none;
  }

  header .header_inner .mobile_nav {
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .main_wrap_dropdown:hover .dropdown_wrapper {
    display: none;
    /* Disable hover effect on mobile */
  }

  .dropdown_wrapper {
    display: none;
    /* Initially hidden */
  }

  .dropdown_wrapper {
    background-color: unset;
    box-shadow: unset;
  }

  .dropdown_wrapper li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 4px 3px 5px 25px !important;
  }
}

#footer {
  background-color: var(--fire-color);
  padding-top: 70px;
  padding-bottom: 40px;
}

#footer .footer_flex {
  display: flex;
  gap: 100px;
  align-items: center;
}

#footer .footer_flex .logo_footer {
  max-width: 175px;
  width: 100%;
}

#footer .footer_flex .logo_footer figure {
  text-align: center;
}

#footer .footer_flex .logo_footer p {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  padding-top: 25px;
}

#footer .footer_flex .quick_links_flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  padding-top: 25px;
}

#footer .footer_flex .quick_links_flex .links {
  width: 100%;
}

#footer .footer_flex .quick_links_flex .links h6 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

#footer .footer_flex .quick_links_flex .links ul {
  padding-left: unset;
  line-height: 32px;
}

#footer .footer_flex .quick_links_flex .links ul li a {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
}

.copyright_section {
  text-align: center;
  padding: 10px 0;
}

.copyright_section p {
  padding-bottom: 0;
  margin: 0;
  font-weight: 500;
  color: var(--text-color);
}

.copyright_section p a {
  color: var(--fire-color);
  font-weight: 800;
}

#banner_section .banner_slider .slide {
  background-size: cover;
  background-position: center;
  height: 940px;
  background-repeat: no-repeat;
  position: relative;
}

#banner_section .banner_slider .slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.banner_wrapper {
  position: relative;
  overflow: hidden;
}

.fixed_text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner_slider {
  position: relative;
  z-index: 5;
}

.slide {
  height: 100vh;
  /* Adjust to fit your layout */
  background-size: cover;
  background-position: center;
}

#banner_section .banner_wrapper .fixed_text .banner_text {
  width: 100%;
  max-width: 880px;
}

#banner_section .banner_wrapper .fixed_text .banner_text h1 {
  font-size: 74px;
  /* color: var(--text-color); */
  color: #ffffff;
  line-height: 82px;
  font-weight: 700;
  padding-bottom: 32px;
}

#banner_section .banner_wrapper .fixed_text .banner_text p {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

#banner_section .banner_wrapper .fixed_text .banner_text .get_start {
  padding-top: 100px;
}

#banner_section .banner_wrapper .fixed_text .banner_text .get_start a {
  background-color: var(--fire-color);
  padding: 22px 45px;
  border-radius: 8px;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 700;
  border: 1px solid var(--fire-color);
}

#banner_section .banner_wrapper .fixed_text .banner_text .get_start a:hover {
  background-color: unset;
  color: var(--fire-color);
  transition: all 500ms ease;
}

#Streamlined .hr_consultancy {
  max-width: 770px;
  width: 100%;
}

#Streamlined .hr_consultancy .Streamlined_small {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgb(68, 68, 68);
  max-width: 85px;
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}

#Streamlined .hr_consultancy .Streamlined_small span {
  background-color: var(--fire-color);
  height: 7px;
  width: 7px;
}

#Streamlined .hr_consultancy .Streamlined_small p {
  color: var(--color-new-black);
  font-size: 12px;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

#Streamlined .hr_consultancy h4 {
  color: var(--text-color);
  font-weight: 700;
  line-height: 58px;
  padding-bottom: 26px;
}

#Streamlined .hr_consultancy p {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 27px;
}

#Streamlined .step_wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width:768px) {
  #Streamlined .step_wrap {
    align-items: self-start;
  }
}

#Streamlined .step_wrap .step {
  max-width: 485px;
  width: 100%;
  max-width: 485px;
}

#Streamlined .step_wrap .step h5 {
  font-weight: 700;
  color: var(--text-color);
  line-height: 42px;
  padding-bottom: 24px;
}

#Streamlined .step_wrap .step p {
  color: var(--text-color);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

#Streamlined .get_start_btn {
  display: flex;
  gap: 12px;
  align-items: center;
}

#Streamlined .get_start_btn a:nth-child(1) {
  background-color: var(--fire-color);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid var(--fire-color);
}

#Streamlined .get_start_btn a:nth-child(1):hover {
  background-color: unset;
  color: var(--fire-color);
  transition: all 500ms ease;
}

#Streamlined .get_start_btn a:nth-child(2) {
  color: var(--fire-color);
  border-radius: 8px;
  display: flex;
  padding: 12px 24px;
  gap: 12px;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
}

#Streamlined .get_start_btn a:nth-child(2):hover {
  background-color: var(--fire-color);
  color: var(--color-white);
  transition: all 500ms ease;
}

#Empowering_People {
  background-size: cover;
  background-position: center 0px;
  background-repeat: no-repeat;
}

#Empowering_People .details .small_box {
  width: 100%;
  max-width: 55px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255, 255, 255);
  gap: 6px;
  padding: 4px;
  margin-bottom: 16px;
}

#Empowering_People .details .small_box span {
  background-color: var(--fire-color);
  height: 8px;
  width: 8px;
}

#Empowering_People .details .small_box p {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white);
}

#Empowering_People .details h2 {
  color: var(--color-white);
  font-weight: 700;
  padding-bottom: 40px;
}

#Empowering_People .details p {
  color: var(--color-white);
  font-weight: 400;
  font-size: 20px;
}

#your_partner .flex_wrap_partner {
  display: flex;
  gap: 80px;
}

#your_partner .flex_wrap_partner .details h4 {
  font-weight: 700;
  color: var(--text-color);
  padding-bottom: 24px;
}

#your_partner .flex_wrap_partner .details p {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

#your_partner .flex_wrap_partner .details .learn_more {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 40px;
}

#your_partner .flex_wrap_partner .details .learn_more a:nth-child(1) {
  background-color: var(--fire-color);
  color: var(--color-white);
  font-weight: 400;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--fire-color);
}

#your_partner .flex_wrap_partner .details .learn_more a:nth-child(1):hover {
  background-color: unset;
  color: var(--fire-color);
  transition: all 500ms ease;
}

#your_partner .flex_wrap_partner .details .learn_more a:nth-child(2) {
  color: var(--fire-color);
  display: flex;
  font-weight: 400;
  font-size: 16px;
  border-radius: 8px;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
}

#your_partner .flex_wrap_partner .details .learn_more a:nth-child(2) i {
  font-size: 22px;
}

#your_partner .flex_wrap_partner .details .learn_more a:nth-child(2):hover {
  background-color: var(--fire-color);
  color: var(--color-white);
  transition: all 500ms ease;
}

#your_partner .flex_wrap_partner figure {
  width: 100%;
}

#Our_Services {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#Our_Services .title {
  text-align: center;
  padding-bottom: 60px;
}

#Our_Services .title .small_box {
  display: flex;
  gap: 6px;
  align-items: center;
  border: 1px solid var(--color-white);
  max-width: 90px;
  width: 100%;
  margin: auto;
  justify-content: center;
}

#Our_Services .title .small_box span {
  width: 8px;
  height: 8px;
  background-color: var(--fire-color);
}

#Our_Services .title .small_box p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white);
}

#Our_Services .title h2 {
  color: var(--color-white);
  font-weight: 700;
  padding-top: 10px;
  padding-bottom: 10px;
}

#Our_Services .title p {
  color: var(--color-white);
  font-weight: 400;
  font-size: 16px;
}

#Our_Services .services_card_wrap {
  display: flex;
  align-items: center;
  gap: 180px;
  padding-bottom: 50px;
}

#Our_Services .services_card_wrap:last-child {
  padding-bottom: 0px;
}

#Our_Services .services_card_wrap figure {
  width: 100%;
  max-width: 680px;
  height: 100%;
}

#Our_Services .services_card_wrap figure img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

#Our_Services .services_card_wrap .details {
  max-width: 680px;
  width: 100%;
}

#Our_Services .services_card_wrap .details h5 {
  color: var(--color-white);
  font-weight: 700;
  padding-bottom: 24px;
}

#Our_Services .services_card_wrap .details p {
  color: var(--color-white);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
}

#blog_page .title {
  text-align: center;
}

#blog_page .title .small_box {
  max-width: 75px;
  width: 100%;
  margin: auto;
  display: flex;
  gap: 5px;
  align-items: center;
  border: 1px solid rgb(68, 68, 68);
  justify-content: center;
  margin-bottom: 20px;
}

#blog_page .title .small_box span {
  width: 8px;
  height: 8px;
  background-color: var(--fire-color);
}

#blog_page .title .small_box p {
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: var(--text-color);
}

#blog_page .title h6 {
  color: var(--text-color);
  font-weight: 700;
}

#blog_page .title h2 {
  color: var(--text-color);
  font-weight: 700;
  padding-bottom: 20px;
}

#blog_page .title p {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 400;
}

#blog_page .flex_wrap {
  padding-top: 80px;
  display: flex;
  gap: 32px;
}

#blog_page .flex_wrap .blog_card {
  max-width: 500px;
  width: 100%;
  height: auto;
}

#blog_page .flex_wrap .blog_card:hover {
  transition: all 500ms ease;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 8px;
}

#blog_page .flex_wrap .blog_card:hover figure {
  overflow: hidden;
}

#blog_page .flex_wrap .blog_card:hover figure img {
  transform: scale(1.1);
  transition: all 500ms ease;
}

#blog_page .flex_wrap .blog_card figure {
  width: 100%;
  height: 215px;
  max-width: 500px;
}

#blog_page .flex_wrap .blog_card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#blog_page .flex_wrap .blog_card .details {
  padding: 0px 10px 10px 10px;
}

#blog_page .flex_wrap .blog_card .details .time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}

#blog_page .flex_wrap .blog_card .details .time span {
  background: #c4c5ff;
  color: var(--text-color);
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 3px;
}

#blog_page .flex_wrap .blog_card .details .time p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}

#blog_page .flex_wrap .blog_card .details h6 {
  font-weight: 600;
  color: var(--fire-color);
  line-height: 32px;
  padding-top: 10px;
  min-height: 60px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

#blog_page .flex_wrap .blog_card .details p {
  color: var(--text-color);
  font-weight: 400;
  font-size: 16px;
  padding-top: 10px;
}

#blog_page .flex_wrap .blog_card .details span {
  color: var(--fire-color);
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
}

#blog_page .flex_wrap .blog_card .details span i {
  font-size: 23px;
}

#blog_page .view_blog_all_btn {
  padding-top: 80px;
  text-align: center;
}

#blog_page .view_blog_all_btn a {
  color: var(--color-white);
  background-color: var(--fire-color);
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--fire-color);
}

#blog_page .view_blog_all_btn a:hover {
  background-color: unset;
  color: var(--fire-color);
  transition: all 500ms ease;
}

#portfolio {
  background-size: cover;
  background-position: center;
  height: 1280px;
  position: relative;
}

#portfolio .second_bg {
  height: 400px;
  background-position: center;
  background-size: cover;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#portfolio .second_bg .flex_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#portfolio .second_bg .flex_box .text {
  position: relative;
  text-align: center;
  max-width: 520px;
  transform: translateY(100%);
}

#portfolio .second_bg .flex_box .text h4 {
  color: var(--color-white);
  font-weight: 500;
  font-size: 48px;
}

#portfolio .second_bg .flex_box .portfolio_gallery {
  background-color: var(--color-white);
  padding: 32px;
  border-radius: 8px;
  max-width: 965px;
  width: 100%;
  position: absolute;
  right: 7%;
  top: -100%;
}

#portfolio .second_bg .flex_box .portfolio_gallery .details {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

#portfolio .second_bg .flex_box .portfolio_gallery .details .title_1 h5 {
  color: var(--fire-color);
  font-weight: 400;
  font-size: 36px;
  padding-bottom: 10px;
}

#portfolio .second_bg .flex_box .portfolio_gallery .details .title_1 h6 {
  color: var(--color-black);
  font-weight: 500;
  font-size: 36px;
}

#portfolio .second_bg .flex_box .portfolio_gallery .details .title_2 {
  max-width: 330px;
}

#portfolio .second_bg .flex_box .portfolio_gallery .details .title_2 p {
  color: var(--color-black);
  font-weight: 400;
  font-size: 16px;
}

#portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-top: 40px;
}

#portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_1 figure {
  width: 100%;
  /* max-width: 365px; */
  height: 456px;
}

#portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_1 figure img {
  width: 100%;
  height: 100%;
}

#portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_2 {
  display: grid;
  gap: 10px;
}

@media (max-width:575px) {

  #portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_1 figure,
  #portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_2 figure {
    max-width: 100%;
  }

  #blog_page .view_blog_all_btn {
    padding-top: 40px;
  }
}

#portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_2 figure {
  width: 100%;
  /* max-width: 554px; */
  height: 334px;
}

#portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_2 figure img {
  width: 100%;
  height: 100%;
}

#portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_2 div {
  background-size: contain;
  background-position: center;
  position: relative;
  height: 265px;
}

#portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_2 div h6 {
  color: var(--text-color);
  font-size: 42px;
  font-weight: 600;
  position: absolute;
  top: 30%;
  bottom: 50%;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 230px;
  display: flex;
  height: auto;
}

#portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_2 div:hover h6 {
  transition: all 500ms ease;
  color: var(--fire-color);
}

#Partner .title {
  text-align: center;
}

#Partner .title h4 {
  color: var(--text-color);
  padding-bottom: 10px;
  font-weight: 700;
}

#Partner .title p {
  color: var(--text-color);
  font-weight: 400;
}

#Partner .slider_partner {
  margin-top: 60px;
}

#Partner .slider_partner .slick-slide {
  margin: 0px 10px;
}

#Partner .slider_partner .slider_card {
  max-width: 500px;
  width: 100%;
  border: 1px solid rgb(170, 170, 170);
  background-color: #F6F7FB;
  text-align: center;
  border-radius: 15px;
  padding: 30px;
}

#Partner .slider_partner .slider_card figure {
  width: 100px;
  margin: auto;
  text-align: -webkit-center;
}

#Partner .slider_partner .slider_card p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  line-height: 28px;
  padding: 50px 25px 30px 25px;
  font-family: "Inter";
}

#Partner .slider_partner .slider_card .name {
  padding-top: 20px;
}

#Partner .slider_partner .slider_card .name p {
  padding: 0;
  font-size: 16px;
  color: var(--fire-color);
}

#Partner .slider_partner .slider_card .name h6 {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;
}

#Partner .slider_partner .slider_card .name figure {
  padding-top: 35px;
  width: 115px;
  height: 125px;
  margin: auto;
}

#Partner .slider_partner .slider_card .name figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#Partner .slider_partner .slick-dots {
  bottom: -50px;
}

#Partner .slider_partner .slick-dots li button::before {
  font-size: 65px;
  color: #4937ff;
  opacity: 0.5;
}

#Partner .slider_partner .slick-dots .slick-active button::before {
  color: var(--fire-color);
  opacity: unset;
}

#Consultation {
  background-position: center;
  background-size: cover;
}

#Consultation .flex_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#Consultation .flex_wrap .details h4 {
  color: var(--color-white);
  font-weight: 700;
  padding-bottom: 20px;
}

#Consultation .flex_wrap .details p {
  color: var(--color-white);
  font-weight: 400;
  font-size: 18px;
}

#Consultation .flex_wrap .details .contact_us {
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

#Consultation .flex_wrap .details .contact_us a:nth-child(1) {
  background-color: var(--fire-color);
  color: var(--color-white);
  border: 1px solid var(--fire-color);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
}

#Consultation .flex_wrap .details .contact_us a:nth-child(1):hover {
  background-color: unset;
  transition: all 500ms;
  border: 1px solid var(--color-white);
}

#Consultation .flex_wrap .details .contact_us a:nth-child(2) {
  background-color: unset;
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--color-white);
  font-size: 16px;
  font-weight: 400;
}

#Consultation .flex_wrap .details .contact_us a:nth-child(2):hover {
  background-color: var(--fire-color);
  border: 1px solid var(--fire-color);
  transition: all 500ms;
}

/* #Consultation .flex_wrap .let_connect {
  width: -webkit-fill-available;
  padding-right: 10px;
} */


#about_title {
  background-position: center;
  background-size: cover;
  height: 300px;
  position: relative;
}

#about_title .title {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
}

#about_title .title h1 {
  color: var(--color-white);
  font-size: 74px;
  font-weight: 700;
}

#who_we_are .flex_box {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

#who_we_are .flex_box .img_box {
  background-color: var(--text-color);
  max-width: 554px;
  height: 575px;
  border-radius: 10px;
  padding: 20px 0;
  width: 100%;

}

#who_we_are .flex_box .img_box img {
  width: 580px;
  position: absolute;
}

#who_we_are .flex_box .who_we_are {
  background-color: var(--color-white);
  border-radius: 10px;
  max-width: 800px;
  min-height: 310px;
  width: 100%;
  position: relative;
}

#who_we_are .flex_box .who_we_are .wrap {
  padding: 20px;
}

#who_we_are .flex_box .who_we_are .wrap h6 {
  color: var(--text-color);
  font-size: 42px;
  font-weight: 700;
  line-height: 82px;
}

#who_we_are .flex_box .who_we_are .wrap p {
  font-size: 16px;
  line-height: 20px;
}

#mission_vision .flex_box {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

#mission_vision .flex_box .mission_vision {
  background-color: var(--color-white);
  border-radius: 10px;
  max-width: 800px;
  min-height: 485px;
  width: 100%;
  position: relative;
  z-index: 1;
}

#mission_vision .flex_box .mission_vision .wrap {
  padding: 20px;
}

#mission_vision .flex_box .mission_vision .wrap .mission span {
  font-size: 10px;
  color: var(--text-color);
  font-weight: 500;
}

#mission_vision .flex_box .mission_vision .wrap .mission h6 {
  font-size: 42px;
  font-weight: 700;
}

#mission_vision .flex_box .mission_vision .wrap .mission p {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color);
}

#mission_vision .flex_box .mission_vision .wrap .Vision span {
  font-size: 10px;
  color: var(--text-color);
  font-weight: 500;
}

#mission_vision .flex_box .mission_vision .wrap .Vision h6 {
  font-size: 42px;
  font-weight: 700;
}

#mission_vision .flex_box .mission_vision .wrap .Vision p {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color);
}

#mission_vision .flex_box .box_img {
  background-color: var(--text-color);
  max-width: 554px;
  height: 575px;
  border-radius: 10px;
  padding: 20px 0;
  width: 100%;
}

#mission_vision .flex_box .box_img img {
  position: absolute;
  width: 580px;
  right: 0;
}

#Why_Choose {
  background-color: rgb(60, 72, 98);
}

#Why_Choose .title {
  text-align: center;
  padding-bottom: 40px;
}

#Why_Choose .title h6 {
  color: var(--color-white);
  font-size: 74px;
  font-weight: 700;
}

#Why_Choose .flex_box {
  display: flex;
  justify-content: space-between;
}

#Why_Choose .flex_box .card_details {
  max-width: 315px;
}

#Why_Choose .flex_box .card_details h6 {
  color: var(--color-white);
  font-size: 32px;
  font-weight: 800;
  padding-bottom: 10px;
}

#Why_Choose .flex_box .card_details p {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
}

#Our_Certificates .title {
  text-align: center;
  padding-bottom: 40px;
}

#Our_Certificates .title h2 {
  color: var(--text-color);
  font-size: 74px;
  font-weight: 700;
}

#Our_Certificates .certificates_slider .flex_box {
  display: flex !important;
  gap: 72px;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px;
}

#Our_Certificates .paddy_90 {
  padding-bottom: 40px;
}

#Our_Certificates .certificates_slider .flex_box .img_box {
  max-width: 570px;
}

#Our_Certificates .certificates_slider .flex_box .text_wrap h6 {
  color: var(--text-color);
  font-weight: 700;
  text-wrap: nowrap;
  font-size: 28px;
}

#Our_Certificates .certificates_slider .slick-dots {
  bottom: -50px;
}

#Our_Certificates .certificates_slider .slick-dots li button::before {
  font-size: 65px;
  color: #4937ff;
  opacity: 0.5;
}

#Our_Certificates .certificates_slider .slick-dots .slick-active button::before {
  color: var(--fire-color);
  opacity: unset;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer !important;
}




.custom-modal {
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  z-index: 1234;
}

.custom-modal-dialog {
  max-width: 620px !important;
  width: 100% !important;
  border-radius: 0px;
  position: relative;
}

.custom-modal-content {
  background: #ffffff;
  border-radius: 10px;
}

.close-modal {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--fire-color);
  opacity: 1;
  color: #ffffff;
  border-radius: 100%;
  border: 2px solid #ffffff;
  z-index: 9;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  padding: 0;
  text-align: center;
  line-height: 24px;
  cursor: pointer;
}

.custom-modal {
  opacity: 0;
  visibility: hidden;
}

.book_now_popup {
  display: flex;
  justify-content: center;
}

.custom-modal#custom-modal {
  opacity: 1;
  visibility: visible;
}

body.modal-open .custom-modal {
  opacity: 1;
  visibility: visible;
}

.custom-modal .custom-modal-dialog {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

body.modal-open .custom-modal .custom-modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.custom-modal,
body .custom-modal,
body.modal-open .custom-modal .custom-modal-dialog,
body .custom-modal .custom-modal-dialog {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#book-now-form {
  padding: 30px;
}

#book-now-form .flex_box {
  display: flex;
  gap: 12px;
  padding-bottom: 10px;
}

#book-now-form .flex_box .form-group {
  width: 100%;
}

#book-now-form .form-group {
  padding-bottom: 10px;
}

#book-now-form .form-group label {
  color: var(--fire-color);
  padding-bottom: 6px;
  font-size: 14px;
  font-weight: 400;
}

#book-now-form .form-group input {
  outline: none;
  box-shadow: unset;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
}

#book-now-form .form-group input:focus {
  border-color: var(--fire-color);
}

#book-now-form .form-group input::placeholder {
  color: var(--text-color);
  font-size: 12px;
  font-weight: 400;
  font-family: "Inter";
}

#book-now-form .form-group textarea {
  outline: none;
  box-shadow: unset;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
}

#book-now-form .form-group textarea:focus {
  border-color: var(--fire-color);
}

#book-now-form .form-group textarea::placeholder {
  color: var(--text-color);
  font-size: 12px;
  font-weight: 400;
  font-family: "Inter";
}

#book-now-form .form-group button {
  background-color: var(--fire-color);
  text-transform: capitalize;
  border: 1px solid var(--fire-color);
  font-size: 16px;
  text-align: center;
}

#book-now-form .form-group button:hover {
  background-color: unset;
  transition: all 500ms ease;
  color: var(--fire-color);
}

.custom-modal-inner h6 {
  text-align: center;
  color: var(--fire-color);
  font-size: 28px;
  background: var(--body-color);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 5px 0px;
}

@media (max-width: 767px) {
  .custom-modal-content {
    margin: 10px;
  }

  #book-now-form .flex_box {
    display: initial;
  }

  #book-now-form {
    padding: 10px;
  }

  .close-modal {
    right: -6px;
  }

}

#Partner .slider_partner {
  margin-top: 60px;
  padding-bottom: 70px;
}

/*css koushik*/
.swiper-pagination-bullet {
  display: none !important;
}

.swiper-pagination-bullet:nth-child(1),
.swiper-pagination-bullet:nth-child(2),
.swiper-pagination-bullet:nth-child(3) {
  display: inline-block !important;
}

.swiper-pagination-bullet {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;

}

.slider_partner .swiper-pagination {
  position: relative;
  bottom: -30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;

}

/* Default (inactive) bullet */
.swiper-pagination-bullet {
  background-color: #9aa5ff !important;
  opacity: 1 !important;
  border-radius: 50% !important;
  margin: 0 6px !important;
}


#Partner.paddy_90 {
  padding: 70px 0 0;
}

/* Active bullet */
.swiper-pagination-bullet-active {
  background-color: #1f4e8c !important;
}

#blog_page_new {
  height: 240px;
  background-position: top;
  background-size: cover;
  position: relative;
}

#blog_page_new .title {
  position: relative;
  z-index: 12;
  transform: translateY(60px);
  text-align: center;
}

#blog_page_new .title h1 {
  color: var(--color-white);
}

#blog_page_new::after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

#search_box .flex_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#search_box .flex_box .two_sel {
  display: flex;
  gap: 24px;
}

#search_box .flex_box .two_sel select {
  border: 1px solid var(--text-color);
  color: var(--fire-color);
  background-image: url(https://rishleena.com/images/arrow-down-s-line_black.png);
  font-weight: 600;
  background-repeat: no-repeat;
  width: 320px;
  padding: 12px 12px;
  outline: none;
  border-radius: 6px;
  transition: all 250ms ease-in-out;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) center;
  -webkit-appearance: none;
  appearance: none;
}

#search_box .flex_box .search_box {
  position: relative;
  max-width: 320px;
  width: 100%;
}

#search_box .flex_box .search_box input {
  max-width: 320px;
  color: var(--color-fire);
  font-size: 14px;
  font-weight: 400;
  line-height: 21.5px;
  /* background: rgba(255, 255, 255, 0.1); */
  display: block;
  width: 100%;
  outline: none;
  padding: 12px 22px;
  padding-left: 12px;
  border-radius: 6px;
  border: solid 1px rgb(32, 53, 57);
}

#search_box .flex_box .search_box i {
  font-size: 16px;
  color: var(--text-light);
  width: 16px;
  height: 16px;
  line-height: 16px;
  position: absolute;
  top: 15px;
  right: 12px;
}

#search_box .blog_card_warper {
  padding-top: 60px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

#search_box .blog_card_warper .blog_topic_box {
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex: 1 0 calc(33.33% - 20px);
  display: flex;
  flex-direction: column;
}

#search_box .blog_card_warper .blog_topic_box .blog_image {
  position: relative;
}

#search_box .blog_card_warper .blog_topic_box .blog_image img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

#search_box .blog_card_warper .blog_topic_box .blog_image .date {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 3px;
  font-size: 12px;
  bottom: 5px;
  left: 5px;
  padding: 5px 5px;
}

#search_box .blog_card_warper .blog_topic_box .blog_image .blog_category_text {
  position: absolute;
  bottom: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 5px;
  border-radius: 3px;
  font-size: 12px;
  right: 5px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

#search_box .blog_card_warper .blog_topic_box .blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#search_box .blog_card_warper .blog_topic_box .blog-content h2 {
  color: var(--fire-color);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 95px;
}

#search_box .blog_card_warper .blog_topic_box .blog-content p {
  flex-grow: 1;
  color: var(--text-color);
  font-size: 17px;
  font-weight: 400;
  line-height: 27.2px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

#search_box .blog_card_warper .blog_topic_box .blog-content a {
  align-self: flex-start;
  background-color: var(--fire-color);
  color: var(--color-white);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 20px;
  transition: background-color 0.3s;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--fire-color);
}

#search_box .blog_card_warper .blog_topic_box .blog-content a:hover {
  background-color: unset;
  color: var(--fire-color);
  border: 1px solid var(--fire-color);
}

#search_box .blog_card_warper .blog_topic_box:hover {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
  transition: all 500ms ease;
}

#search_box .blog_card_warper .blog_topic_box:hover .blog_image img {
  transform: scale(1.05);
  transition: all 500ms ease;
  overflow: hidden;
}

#search_box .load_more_blog {
  background-color: var(--fire-color);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 16.8px;
  border-radius: 5px;
  border: 1px solid var(--fire-color);
  padding: 12px;
  min-width: 130px;
  height: 45px;
  text-align: center;
  transition: all 250ms ease-in-out;
  margin: 20px auto;
}

#search_box .load_more_blog:hover {
  background-color: unset;
  color: var(--fire-color);
}



@media (max-width: 575px) {
  #search_box .flex_box {
    display: grid;
    gap: 24px;
    justify-content: center;
  }

  body h1 {
    font-size: 52px;
  }

  #search_box .blog_card_warper {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  #about_title .title h1 {
    font-size: 32px;
  }

  #Our_Certificates {
    /* margin-bottom: 40px; */
  }

  #about_title {
    background-position: left;
    background-size: cover;
    height: 140px;
    position: relative;
  }

  #Why_Choose .flex_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 24px;
  }

  .paddy_90 {
    /* padding: 25px 0px !important; */
  }

  #mission_vision .flex_box .mission_vision {
    min-height: 580px;
  }

  #who_we_are .flex_box .who_we_are .wrap h6 {
    color: var(--text-color);
    font-size: 28px;
    font-weight: 700;
    line-height: unset !important;
  }

  #mission_vision .flex_box .mission_vision .wrap .mission h6 {
    font-size: 28px;
    font-weight: 700;
  }

  #mission_vision .flex_box .mission_vision .wrap .Vision h6 {
    font-size: 28px;
    font-weight: 700;
  }

  #Why_Choose .title h6 {
    font-size: 32px !important;
  }

  #Why_Choose .flex_box .card_details h6 {
    color: var(--color-white);
    font-size: 22px !important;
    font-weight: 800;
    padding-bottom: 0px !important;
  }

  #Our_Certificates .certificates_slider .flex_box .text_wrap h2 {
    font-size: 28px !important;
  }

  #Our_Certificates .title h2 {
    font-size: 38px !important;
  }

  #banner_section .banner_wrapper .fixed_text .banner_text h1 {
    font-size: 32px !important;
    line-height: 40px !important;
  }

  #banner_section .banner_wrapper .fixed_text .banner_text p {
    font-size: 14px;
    font-weight: 700;
  }

  #banner_section .banner_wrapper .fixed_text .banner_text .get_start {
    padding-top: 50px;
  }

  #banner_section .banner_wrapper .fixed_text .banner_text .get_start a {
    padding: 8px 14px;
    font-size: 18px;
  }

  #Streamlined .hr_consultancy h4 {
    font-size: 28px;
    line-height: 36px;
  }

  #Streamlined .step_wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    padding-bottom: 40px;
    padding-top: 50px;
  }

  #Empowering_People .details h2 {
    font-size: 38px !important;
    line-height: 48px !important;
    padding-bottom: 30px;
  }

  #Empowering_People .details p {
    font-size: 18px;
  }

  #your_partner .flex_wrap_partner {
    display: grid;
  }

  #your_partner .flex_wrap_partner .details {
    order: 2;
  }

  #Our_Services .title {
    padding-bottom: 40px;
  }

  #Our_Services .services_card_wrap {
    display: grid;
  }

  #portfolio .second_bg .flex_box .text h4 {
    font-size: 32px;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery .details .title_1 h6 {
    font-size: 26px;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery .details {
    display: initial;
  }

  #portfolio {
    height: 2120px;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex {
    display: grid;
  }

  #Partner .title h4 {
    font-size: 32px;
  }

  #Consultation .flex_wrap {
    display: grid;
  }

  #Consultation .flex_wrap figure {
    order: 2;
  }

  #Consultation .flex_wrap .details {
    order: 1;
  }

  #footer .footer_flex .quick_links_flex {
    grid-template-columns: repeat(1, 1fr);
  }

  #blog_page .title h2 {
    font-size: 32px !important;
    padding-bottom: 0px;
    line-height: 42px;
  }

  #blog_page .flex_wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_2 div {
    height: 185px;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_2 div h6 {
    font-size: 27px;
    top: 46%;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery {
    padding: 16px;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex {
    gap: 20px;
  }

  .book_now ul li a {
    border: unset;
  }

  #who_we_are .flex_box .img_box {
    height: 100%;
  }

  #mission_vision .flex_box .box_img {
    height: 100%;
  }
}

@media (max-width: 390px) {
  #portfolio {
    height: 1700px;
  }
}

@media (max-width: 1024px) {
  #search_box .blog_card_warper {
    grid-template-columns: repeat(2, 1fr);
  }

  #who_we_are .flex_box .img_box img {
    width: 100%;
    position: unset;
    height: 100%;
  }

  #mission_vision .flex_box .box_img {
    max-width: 100%;
  }

  #Our_Certificates .certificates_slider .flex_box .img_box {
    max-width: 100%;
  }

  #Our_Certificates .certificates_slider .flex_box .text_wrap {
    text-align: center;
  }

  #mission_vision .flex_box .box_img img {
    width: 100%;
    position: unset;
    height: 100%;
  }

  #who_we_are .flex_box .img_box {
    max-width: 100%;
  }

  #Our_Certificates .certificates_slider .flex_box {
    display: block !important;
  }

  #Our_Certificates .certificates_slider .flex_box .text_wrap h2 {
    font-size: 42px;
  }

  #Our_Certificates .title h2 {
    font-size: 52px;
  }

  #Why_Choose .title h6 {
    font-size: 42px;
  }

  #Why_Choose .flex_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  #who_we_are .flex_box {
    display: grid;
  }

  #mission_vision .flex_box {
    display: grid;
  }

  #Streamlined .step_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 40px;
  }

  #Streamlined .step_wrap .step h5 {
    padding-bottom: 0px;
    font-size: 28px;
  }

  #Empowering_People .details h2 {
    font-size: 52px;
    line-height: 72px;
    padding-bottom: 30px;
  }

  #your_partner .flex_wrap_partner {
    gap: 48px;
  }

  #your_partner .flex_wrap_partner .details {
    max-width: 380px;
  }

  #your_partner .flex_wrap_partner .details h4 {
    font-size: 32px;
  }

  #banner_section .banner_slider .slide {
    height: 600px;
  }

  #banner_section .banner_wrapper .fixed_text .banner_text h1 {
    font-size: 52px;
    line-height: 62px;
  }

  #banner_section .banner_wrapper .fixed_text .banner_text {
    width: 100%;
    max-width: 625px;
  }

  #banner_section .banner_wrapper .fixed_text .banner_text .get_start a {
    padding: 14px 30px;
    font-size: 20px;
  }

  #Our_Services .title h2 {
    font-size: 48px;
  }

  #Our_Services .services_card_wrap {
    gap: 42px;
  }

  #Our_Services .services_card_wrap .details h5 {
    font-size: 28px;
  }

  #blog_page .title h2 {
    font-size: 48px;
  }

  #blog_page .flex_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .paddy_90 {
    padding: 30px 0px;
  }

  #portfolio .second_bg .flex_box {
    display: unset;
  }

  #portfolio .second_bg {
    position: unset;
    transform: unset;
    background-position: left;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery {
    position: relative;
    right: 0%;
    top: 125px;
  }

  #portfolio .second_bg .flex_box .text {
    max-width: 100%;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_1 figure {
    height: auto;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_2 figure {
    height: auto;
  }

  #Partner .slider_partner .slider_card figure {
    padding-top: 40px;
  }

  #Partner .slider_partner .slider_card {
    padding: 10px;
  }

  #Consultation .flex_wrap .details h4 {
    font-size: 32px;
  }

  #Consultation {
    padding-bottom: 45px;
  }

  #Consultation .flex_wrap {
    gap: 32px;
  }

  #Consultation .flex_wrap .details p {
    font-size: 16px;
  }

  #Partner .slider_partner .slider_card p {
    padding: 10px 25px 0px 25px;
  }

  #footer {
    padding-top: 40px;
  }

  #footer .footer_flex {
    display: grid;
    gap: 20px;
  }

  #footer .footer_flex .logo_footer {
    margin: auto;
  }
}

@media (max-width: 1700px) and (min-width: 1228.8px) {
  #banner_section .banner_wrapper .fixed_text .banner_text {
    width: 100%;
    max-width: 635px;
  }

  #banner_section .banner_wrapper .fixed_text .banner_text h1 {
    font-size: 54px;
    line-height: 64px;
  }

  #banner_section .banner_wrapper .fixed_text .banner_text p {
    font-size: 16px;
  }

  #banner_section .banner_wrapper .fixed_text .banner_text .get_start a {
    padding: 16px 32px;
    font-size: 16px;
  }

  #banner_section .banner_slider .slide {
    height: 580px;
  }

  body h4 {
    font-size: 38px;
  }

  body h5 {
    font-size: 25px;
  }

  body h2 {
    font-size: 52px;
  }

  body h6 {
    font-size: 20px;
  }

  #Streamlined .step_wrap .step h5 {
    line-height: 32px;
    padding-bottom: 10px;
  }

  #Empowering_People .details h2 {
    padding-bottom: 25px;
  }

  #Empowering_People .details p {
    font-size: 18px;
  }

  #Our_Services .services_card_wrap .details p {
    font-size: 16px;
    line-height: 24px;
  }

  #blog_page .flex_wrap .blog_card .details p {
    font-size: 14px;
    padding-top: 0px;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery .details .title_1 h6 {
    font-size: 24px;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery .details .title_1 h5 {
    font-size: 24px;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery {
    max-width: 650px;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_1 figure {
    height: auto;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_2 figure {
    height: auto;
  }

  #portfolio .second_bg .flex_box .text h4 {
    font-size: 38px;
  }

  #portfolio .second_bg .flex_box .text {
    max-width: 440px;
  }

  #portfolio {
    height: 1000px;
  }

  #portfolio .second_bg {
    top: 50%;
    height: 250px;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_2 div {
    height: 150px;
  }

  #portfolio .second_bg .flex_box .portfolio_gallery .gallery_flex .gallery_2 div h6 {
    font-size: 27px;
    font-weight: 600;
    position: absolute;
    top: 40%;
    bottom: 50%;
  }

  #Partner .slider_partner .slider_card {
    padding: 20px 10px 20px 10px;
  }

  #Partner .slider_partner .slider_card p {
    padding: 30px 25px 0px 25px;
  }

  #about_title .title h2 {
    font-size: 54px;
  }

  #who_we_are .flex_box .who_we_are .wrap h6 {
    font-size: 32px;
    line-height: unset;
  }

  #mission_vision .flex_box .mission_vision .wrap .mission h6 {
    font-size: 32px;
  }

  #mission_vision .flex_box .mission_vision .wrap .Vision h6 {
    font-size: 32px;
  }

  #Why_Choose .title h6 {
    font-size: 54px;
  }

  #Why_Choose .flex_box .card_details h6 {
    font-size: 20px;
  }

  #Why_Choose .flex_box {
    gap: 24px;
  }

  #Why_Choose .flex_box .card_details p {
    font-size: 14px;
  }

  #Our_Certificates .title h2 {
    font-size: 54px;
  }

  #Our_Certificates .certificates_slider .flex_box .text_wrap h2 {
    font-size: 42px;
  }
}



.Coaching .coaching_container p {

  font-size: 18px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 27px;
}

.Coaching .coaching_container ul li {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color);
  font-weight: 400;
  list-style: disc;
}

/*# sourceMappingURL=style.css.map */