@charset "UTF-8";
/*
 * WPS Dental Theme - Main Stylesheet
 * Compiled from SCSS using Gulp
 * 
 * Migration Note: Using @use for settings/tools (exports variables/mixins)
 * and @import for style-only files (no exports) to avoid namespace conflicts
 */
/**
 * Custom Font Face Declarations
 *
 * @package    WPSCT
 * @subpackage Typography
 * @since      3.0.0
 */
@font-face {
  font-family: "Ivy Mode";
  src: url("../fonts/ivy/IvyMode-Italic.woff2") format("woff2"), url("../fonts/ivy/IvyMode-Italic.woff") format("woff"), url("../fonts/ivy/IvyMode-Italic.ttf") format("truetype"), url("../fonts/ivy/IvyMode-Italic.svg#IvyMode-Italic") format("svg");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/**
 * UI Components Variables
 *
 * Centralized variables for reusable UI components (buttons, titles, descriptions).
 * These can be overridden in module-specific SCSS files.
 *
 * @package    WPSCT
 * @subpackage Settings
 * @since      3.0.0
 */
/**
 * UI Components Mixins
 *
 * Reusable mixins for generating UI component styles.
 * Use these mixins in module SCSS files to create consistent components.
 *
 * @package    WPSCT
 * @subpackage Tools
 * @since      3.0.0
 */
/**
 * Generate button base styles
 *
 * @param {string} $size - Button size (small, medium, large)
 */
/**
 * Generate button style variant
 *
 * @param {string} $style - Button style (primary, secondary, outline)
 */
/**
 * Complete button mixin - combines base and style
 *
 * @param {string} $style - Button style (primary, secondary, outline)
 * @param {string} $size - Button size (small, medium, large)
 */
/**
 * Generate title/heading styles
 *
 * @param {string} $size - Title size (small, medium, large, xlarge)
 * @param {string} $align - Text alignment (left, center, right)
 */
/**
 * Generate description/paragraph styles
 *
 * @param {string} $size - Description size (small, medium, large)
 * @param {string} $align - Text alignment (left, center, right)
 */
/**
 * Responsive button size adjustments
 *
 * @param {string} $size - Base button size
 */
/**
 * Responsive title size adjustments
 *
 * @param {string} $size - Base title size
 */
/**
 * Responsive description size adjustments
 *
 * @param {string} $size - Base description size
 */
/**
 * Customizable Button Mixin with Auto-Detected Responsive Support
 * 
 * Responsive is automatically enabled if any responsive parameter is provided.
 * 
 * @param {string} $size - Size preset (small, medium, large) or null for custom
 * @param {string|number} $padding-y - Vertical padding (default: uses size preset)
 * @param {string|number} $padding-x - Horizontal padding (default: uses size preset)
 * @param {string} $font-size - Font size (default: uses size preset)
 * @param {string} $color - Text color (default: uses style preset)
 * @param {string} $bg-color - Background color (default: uses style preset)
 * @param {string} $border-radius - Border radius (default: 4px)
 * @param {string} $style - Style preset (primary, secondary, outline) or null for custom
 * @param {string} $hover-bg - Hover background color (optional)
 * @param {string} $hover-color - Hover text color (optional)
 * @param {string} $tablet-size - Predefined size for tablet breakpoint (md: 768px)
 * @param {string} $mobile-size - Predefined size for mobile breakpoint (sm: 576px)
 * @param {string|number} $tablet-padding-y - Padding Y for tablet
 * @param {string|number} $tablet-padding-x - Padding X for tablet
 * @param {string|number} $mobile-padding-y - Padding Y for mobile
 * @param {string|number} $mobile-padding-x - Padding X for mobile
 */
/**
 * Customizable Heading Mixin with Auto-Detected Responsive Support
 * 
 * Responsive is automatically enabled if any responsive parameter is provided.
 * 
 * @param {string} $size - Size preset (small, medium, large, xlarge) or null for custom
 * @param {string|number} $font-size - Font size (default: uses size preset)
 * @param {string} $color - Text color (default: #2c3e50)
 * @param {string|number} $margin - Margin (default: 0)
 * @param {string|number} $font-weight - Font weight (default: 700)
 * @param {string|number} $line-height - Line height (default: 1.2)
 * @param {string} $align - Text alignment (left, center, right) (default: left)
 * @param {string} $tablet-size - Predefined size for tablet breakpoint
 * @param {string} $mobile-size - Predefined size for mobile breakpoint
 * @param {string|number} $tablet-font-size - Custom font size for tablet
 * @param {string|number} $mobile-font-size - Custom font size for mobile
 */
/**
 * Customizable Text/Description Mixin with Auto-Detected Responsive Support
 * 
 * Responsive is automatically enabled if any responsive parameter is provided.
 * 
 * @param {string} $size - Size preset (small, medium, large) or null for custom
 * @param {string|number} $font-size - Font size (default: uses size preset)
 * @param {string} $color - Text color (default: #555)
 * @param {string|number} $margin - Margin (default: 0)
 * @param {string|number} $font-weight - Font weight (default: 400)
 * @param {string|number} $line-height - Line height (default: 1.6)
 * @param {string} $align - Text alignment (left, center, right) (default: left)
 * @param {string} $tablet-size - Predefined size for tablet breakpoint
 * @param {string} $mobile-size - Predefined size for mobile breakpoint
 * @param {string|number} $tablet-font-size - Custom font size for tablet
 * @param {string|number} $mobile-font-size - Custom font size for mobile
 */
/**
 * UI Components Functions
 *
 * Utility functions for UI component calculations and helpers.
 *
 * @package    WPSCT
 * @subpackage Tools
 * @since      3.0.0
 */
/**
 * Get button size value
 *
 * @param {string} $size - Size name (small, medium, large)
 * @param {string} $property - Property name (padding-y, padding-x, font-size)
 * @return {value} The property value
 */
/**
 * Get button style value
 *
 * @param {string} $style - Style name (primary, secondary, outline)
 * @param {string} $property - Property name
 * @return {value} The property value
 */
/**
 * Get title size value
 *
 * @param {string} $size - Size name (small, medium, large, xlarge)
 * @return {value} Font size value
 */
/**
 * Get description size value
 *
 * @param {string} $size - Size name (small, medium, large)
 * @return {value} Font size value
 */
/**
 * Calculate responsive font size
 *
 * @param {value} $base-size - Base font size
 * @param {value} $reduction - Amount to reduce
 * @return {value} Reduced font size
 */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  margin-top: 0 !important;
}

html,
body {
  padding: 0;
  margin: 0;
  width: 100% !important;
}

html {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #212529;
  position: relative;
  z-index: 99999;
  background-color: #ffffff;
}
body.add-bg-color::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000000;
  opacity: 0.8;
  z-index: 100000;
  transition: all 300ms ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
}

*:focus-visible {
  outline: 2px solid #BDDC3C;
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

a:focus-visible {
  outline: 2px solid #BDDC3C;
  outline-offset: 2px;
  border-radius: 2px;
}

button:focus-visible,
[role=button]:focus-visible {
  outline: 2px solid #BDDC3C;
  outline-offset: 2px;
}

h1,
.h1 {
  font-family: "Manrope", sans-serif;
  font-size: 90px;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  padding: 0;
  margin: 0;
}
@media (max-width: 1399px) {
  h1,
  .h1 {
    font-size: 80px;
  }
}
@media (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  h1,
  .h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 40px;
  }
}

h2,
.h2 {
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.25;
  color: #000000;
  padding: 0;
  margin: 0 0 32px;
}
@media (max-width: 1199px) {
  h2,
  .h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  h2,
  .h2 {
    font-size: 38px;
  }
}

h3,
.h3 {
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.312;
  color: #000000;
  padding: 0;
  margin: 0 0 30px;
}
@media (max-width: 1199px) {
  h3,
  .h3 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  h3,
  .h3 {
    font-size: 26px;
  }
}

h4,
.h4 {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.666;
  color: #ffffff;
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  h4,
  .h4 {
    font-size: 22px;
  }
}

a {
  color: #0047AB;
}
a:hover {
  color: #0047AB;
  text-decoration: none;
}

.featured-cta-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: auto;
  height: 56px;
  min-width: 240px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #BDDC3C;
  padding: 0 26px 0;
  overflow: hidden;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  transition: border-radius 200ms ease-in-out;
  text-decoration: none;
}
.featured-cta-btn:hover {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

p {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: #000000;
  padding: 0;
  margin: 0 0 30px;
}
p strong {
  font-weight: 600;
}
p a {
  text-decoration: none;
  color: #0047AB;
  text-decoration: underline;
}
p a:hover {
  color: #0047AB;
  text-decoration: none;
}
p img {
  display: block;
  border-radius: 30px;
  margin: 0 !important;
}

ul,
ol {
  margin: 0 0 40px;
}
ul li,
ol li {
  font-weight: 500;
}

ul {
  list-style-type: disc;
}
ul li {
  position: relative;
  margin: 0 0 15px;
  color: #000000;
}

.wpb_text_column ol {
  padding: 0 0 0 20px;
}
.wpb_text_column ol li {
  margin: 0 0 15px;
}

.wpb_text_column ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  list-style-type: none;
}
.wpb_text_column ul li {
  position: relative;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: #000000;
  padding: 0 0 0 50px;
  margin: 0;
}
@media (max-width: 991px) {
  .wpb_text_column ul li {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .wpb_text_column ul li {
    font-size: 20px;
  }
}
.wpb_text_column ul li strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.312;
  padding: 0;
  margin: 0;
  color: #000000;
  margin-bottom: 10px !important;
}
@media (max-width: 1199px) {
  .wpb_text_column ul li strong {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .wpb_text_column ul li strong {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .wpb_text_column ul li strong {
    font-size: 22px;
  }
}
.wpb_text_column ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 30px;
  height: 3px;
  background-color: #BDDC3C;
}
.wpb_text_column ul li a {
  text-decoration: none;
  color: #0047AB;
  text-decoration: underline;
}
.wpb_text_column ul li a:hover {
  color: #0047AB;
  text-decoration: none;
}
.wpb_text_column ul.style-2 li {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  padding: 0;
  margin: 0;
  font-weight: 600;
  color: #000000;
  padding-left: 50px;
}
.wpb_text_column ul.style-3 li {
  font-size: 16px;
  font-weight: 500;
}
.wpb_text_column ul.style-3 li strong {
  font-size: 24px;
}
@media (max-width: 1199px) {
  .wpb_text_column ul.style-3 li strong {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .wpb_text_column ul.style-3 li strong {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .wpb_text_column ul.style-3 li strong {
    font-size: 22px;
  }
}
.wpb_text_column ul.style-3 li::after {
  top: 15px;
}
@media (max-width: 991px) {
  .wpb_text_column ul.style-3 li {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .wpb_text_column ul.style-3 li {
    font-size: 16px;
  }
}
.wpb_text_column ul.style-4 li {
  font-size: 16px;
  font-weight: 500;
}
.wpb_text_column ul.style-4 li::after {
  top: 10px;
}
@media (max-width: 991px) {
  .wpb_text_column ul.style-4 li {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .wpb_text_column ul.style-4 li {
    font-size: 16px;
  }
}

.wpb_text_column-dep ul {
  list-style-type: none;
}
.wpb_text_column-dep ul li {
  position: relative;
  margin: 0 0 15px;
  padding-left: 28px;
  font-size: 18px;
  font-weight: normal;
  color: #000000;
  background-image: url("dist/images/icon-bulletpoint.svg");
  background-position: left 5px;
  background-repeat: no-repeat;
}

.wps-no-padding {
  padding: 0;
}

.wps-column-space-left {
  padding-right: 20px !important;
}
@media (max-width: 767px) {
  .wps-column-space-left {
    padding-right: 0 !important;
  }
}

.wps-column-space-right {
  padding-left: 20px !important;
}
@media (max-width: 767px) {
  .wps-column-space-right {
    padding-left: 0 !important;
  }
}

.wps-meet-doc-column-space-left {
  padding-right: 45px !important;
}
@media (max-width: 1199px) {
  .wps-meet-doc-column-space-left {
    padding-right: 0 !important;
  }
}

.wps-meet-doc-column-space-right {
  padding-left: 45px !important;
}
@media (max-width: 1199px) {
  .wps-meet-doc-column-space-right {
    padding-left: 0 !important;
  }
}

.wps-featured-para, .wps-featured-para-style3, .wps-featured-para-style2, .wps-featured-para-style1 {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  color: #000000;
  padding: 0;
  margin: 0 0 30px;
}

.wps-cs-editor-text-color-secondary {
  color: #BDDC3C;
}

.wps-cs-editor-link-style1 a {
  font-weight: bold;
  color: #BDDC3C;
  text-decoration: underline;
}
.wps-cs-editor-link-style1 a:hover {
  text-decoration: none;
  color: #BDDC3C;
}

.wps-cs-editor-ul-style1 {
  list-style-type: none;
}
.wps-cs-editor-ul-style1 li {
  position: relative;
  margin: 0 0 15px;
  padding-left: 28px;
  font-size: 18px;
  font-weight: normal;
  color: #000000;
  background-image: url("dist/images/icon-bulletpoint.svg");
  background-position: left 5px;
  background-repeat: no-repeat;
}

/* heading */
.wps-cs-featured-heading1 {
  font-weight: normal;
  font-size: 24px;
  position: relative;
  padding-bottom: 30px;
}
.wps-cs-featured-heading1:after {
  content: "";
  position: absolute;
  width: 120px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.vc_tta-container h3 {
  text-align: center !important;
  margin-bottom: 100px !important;
}
@media (max-width: 991px) {
  .vc_tta-container h3 {
    margin-bottom: 80px !important;
  }
}
@media (max-width: 575px) {
  .vc_tta-container h3 {
    margin-bottom: 60px !important;
  }
}

.vc_tta-title-text {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #000000;
  padding: 0;
}
@media (max-width: 767px) {
  .vc_tta-title-text {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .vc_tta-title-text {
    font-size: 24px;
  }
}

.vc_tta-panel-heading {
  border-color: #9f9f9f !important;
  border-left: none !important;
  border-right: none !important;
  border: none !important;
  background-color: #ffffff !important;
}
.vc_tta-panel-heading a {
  padding: 20px 50px 20px 30px !important;
}
@media (max-width: 575px) {
  .vc_tta-panel-heading a {
    padding: 20px 40px 20px 20px !important;
  }
}

.vc_tta-panel-body {
  border: none !important;
  border-bottom: 0px solid #9f9f9f !important;
  background-color: #ffffff !important;
}
.vc_tta-panel-body p {
  padding: 0 10px !important;
}
@media (max-width: 575px) {
  .vc_tta-panel-body p {
    padding: 0 !important;
  }
}

.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon {
  left: 0 !important;
}

.wpb_content_element {
  margin-bottom: 0;
}

.homepage-faq-text {
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  color: #000000;
  padding: 0;
  margin: 0 0 25px;
}
@media (max-width: 1199px) {
  .homepage-faq-text {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .homepage-faq-text {
    font-size: 24px;
  }
}

.wps-featured-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  min-width: 200px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background-color: #BDDC3C;
  padding: 2px 26px 0;
  border-radius: 1000px;
  overflow: hidden;
  position: relative;
}
.wps-featured-btn:hover {
  color: #ffffff;
  background-color: #BDDC3C;
}

.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-60%) !important;
}

/**
 * Base Typography Styles
 *
 * @package    WPSCT
 * @subpackage Base
 * @since      3.0.0
 */
body {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
}

.font-manrope {
  font-family: "Manrope", sans-serif;
}

.site-header {
  position: relative;
}
.site-header.header-homepage .header-container .wps-home-header-hero__wrapper .wps-home-header-hero__container .content__container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0px 80px 140px;
  z-index: 3;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .site-header.header-homepage .header-container .wps-home-header-hero__wrapper .wps-home-header-hero__container .content__container {
    padding: 0px 60px 100px;
  }
}
@media (max-width: 1199px) {
  .site-header.header-homepage .header-container .wps-home-header-hero__wrapper .wps-home-header-hero__container .content__container {
    padding: 0px 40px 80px;
  }
}
@media (max-width: 767px) {
  .site-header.header-homepage .header-container .wps-home-header-hero__wrapper .wps-home-header-hero__container .content__container {
    padding: 0px 20px 60px;
  }
}
.site-header.header-homepage .header-container .wps-home-header-hero__wrapper .wps-home-header-hero__container .content__container .content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  max-width: 820px;
  opacity: 0;
  transform: translateY(100%);
}
.site-header.header-homepage .header-container .wps-home-header-hero__wrapper .wps-home-header-hero__container .content__container .content .hero-title {
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(35px, 10vw, 80px);
  letter-spacing: -2px;
}
.site-header.header-homepage .header-container .wps-home-header-hero__wrapper .wps-home-header-hero__container .content__container .content .hero-title span {
  color: #BDDC3C;
  display: block;
  font-family: "Ivy Mode";
  font-size: clamp(55px, 13vw, 120px);
  font-weight: 400;
  font-style: italic;
}
.site-header.header-homepage .header-container .wps-home-header-hero__wrapper .wps-home-header-hero__container .content__container .content .header-page-description {
  max-width: 680px;
  margin-top: 40px;
}
.site-header.header-homepage .header-container .wps-home-header-hero__wrapper .wps-home-header-hero__container .content__container .content .header-page-description p {
  font-size: 18px;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 1.7;
}
.site-header.header-homepage .header-container .wps-home-header-hero__wrapper .wps-home-header-hero__container .wps-header-image__container .image {
  position: relative;
  z-index: 1;
}
.site-header.header-homepage .header-container .wps-home-header-hero__wrapper .wps-home-header-hero__container .wps-header-image__container .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}
.site-header.header-homepage .header-container .wps-home-header-hero__wrapper .wps-home-header-hero__container .wps-header-image__container .image img {
  display: block;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .site-header.header-homepage .header-container .wps-home-header-hero__wrapper .wps-home-header-hero__container .wps-header-image__container .image img {
    height: 80vh;
  }
}
.site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper {
  background-color: #ECF9FF;
  padding: 200px 40px 100px;
}
@media (max-width: 767px) {
  .site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper {
    padding: 160px 20px 80px;
  }
}
.site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}
.site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .header-title {
  text-align: center;
  margin-bottom: 60px;
}
.site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .header-title h1 {
  font-size: clamp(40px, 8vw, 60px);
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  letter-spacing: -2px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  padding: 0;
}
.site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .header-title h1 span {
  font-size: 48px;
  font-family: "Ivy Mode";
  font-weight: 400;
  font-style: italic;
  display: block;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .header-title h1 span {
    font-size: 40px;
  }
}
.site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .image-content__container {
  display: flex;
}
@media (max-width: 929px) {
  .site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .image-content__container {
    flex-direction: column;
  }
}
.site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .image-content__container .image__container {
  width: 50%;
}
@media (max-width: 929px) {
  .site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .image-content__container .image__container {
    width: 100%;
  }
}
.site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .image-content__container .image__container img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (max-width: 929px) {
  .site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .image-content__container .image__container img {
    max-height: 580px;
    -o-object-position: top;
       object-position: top;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0px;
  }
}
.site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .image-content__container .content__container {
  width: 50%;
  background-color: #0047AB;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media (max-width: 991px) {
  .site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .image-content__container .content__container {
    padding: 40px;
  }
}
@media (max-width: 929px) {
  .site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .image-content__container .content__container {
    width: 100%;
    padding: 100px 40px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
  }
}
@media (max-width: 575px) {
  .site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .image-content__container .content__container {
    padding: 50px 25px;
  }
}
.site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .image-content__container .content__container .content p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin: 0;
  padding: 0;
}
.site-header.header-insidepage .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .image-content__container .content__container .content p strong {
  font-size: 26px;
  display: block;
  margin-bottom: 40px;
  font-weight: 600;
}
.site-header.header-insidepage2 .header-container .wps-inside-header-hero__wrapper {
  background-color: #ECF9FF;
  padding: 200px 40px 60px;
}
.site-header.header-insidepage2 .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.site-header.header-insidepage2 .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .header-title .page-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 8vw, 60px);
  letter-spacing: -2px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  padding: 0;
}
.site-header.header-insidepage2 .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .header-title .page-title span {
  display: block;
  font-family: "Ivy Mode";
  font-size: clamp(40px, 8vw, 60px);
  font-weight: 400;
  font-style: italic;
  color: #000000;
  margin-top: 20px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .site-header.header-insidepage2 .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .header-title .page-title span {
    font-size: 35px;
  }
}
.site-header.header-insidepage2 .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .content__container {
  max-width: 920px;
  margin: 0 auto;
}
.site-header.header-insidepage2 .header-container .wps-inside-header-hero__wrapper .wps-inside-header-hero__container .content__container p {
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #000000;
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

.wps-header-navbar__wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 40px 70px 0px;
  z-index: 5;
}
@media (max-width: 1399px) {
  .wps-header-navbar__wrapper {
    padding: 30px 60px 0;
  }
}
@media (max-width: 1199px) {
  .wps-header-navbar__wrapper {
    padding: 16px 40px 0;
  }
}
@media (max-width: 767px) {
  .wps-header-navbar__wrapper {
    padding: 16px 20px 0;
  }
}
.wps-header-navbar__wrapper .wps-header-navbar__container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-logo__container {
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-logo__container {
    flex-shrink: 1;
  }
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-logo__container a {
  text-decoration: none;
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-logo__container a img {
  display: block;
}
@media (max-width: 991px) {
  .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-logo__container a img {
    max-width: 220px;
  }
}
@media (max-width: 767px) {
  .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-logo__container a img {
    max-width: 180px;
  }
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container {
    margin-left: 20px;
  }
}
@media (max-width: 1029px) {
  .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container {
    display: none;
  }
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container a {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container a .text {
  font-size: 12px;
  line-height: 1.666;
  font-family: "Manrope", sans-serif;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container a .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container a .icon svg {
  display: block;
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container a .icon svg path {
  fill: #ffffff;
}
@media (max-width: 1399px) {
  .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container .address {
    display: none;
  }
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container .address a .text {
  display: flex;
  flex-direction: column;
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container {
  margin-left: auto;
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 991px) {
  .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container {
    gap: 15px;
  }
}
@media (max-width: 1029px) {
  .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-cta__container {
    display: flex;
    gap: 10px;
  }
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-cta__container .nav-cta-btn {
  background-color: #0047AB;
  min-width: 220px;
  padding: 0px 18px 0px 28px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 30px;
  border: 2px solid #0047AB;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 1029px) {
  .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-cta__container .nav-cta-btn {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-cta__container .nav-cta-btn.number {
  display: none;
}
@media (max-width: 1029px) {
  .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-cta__container .nav-cta-btn.number {
    display: flex;
  }
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-cta__container .nav-cta-btn .text {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1029px) {
  .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-cta__container .nav-cta-btn .text {
    display: none;
  }
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-cta__container .nav-cta-btn .icon {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
}
@media (max-width: 1029px) {
  .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-cta__container .nav-cta-btn .icon {
    display: none;
  }
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-cta__container .nav-cta-btn .icon svg {
  display: block;
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-cta__container .nav-cta-btn .icon svg path {
  stroke: #0047AB;
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-cta__container .nav-cta-btn .show-on-sm {
  display: none;
}
@media (max-width: 1029px) {
  .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-cta__container .nav-cta-btn .show-on-sm {
    display: block;
  }
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-cta__container .nav-cta-btn .show-on-sm svg {
  width: 20px;
  height: 20px;
  display: block;
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-cta__container .nav-cta-btn .show-on-sm svg path {
  fill: #ffffff;
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-toggle-btn__container .menu-toggle-btn {
  all: unset;
  cursor: pointer;
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-toggle-btn__container .menu-toggle-btn .bars {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-toggle-btn__container .menu-toggle-btn .bars .bar {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
}

.header-insidepage .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container a .text, .header-insidepage2 .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container a .text {
  color: #000000;
  font-weight: 600;
}
.header-insidepage .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container a .text i, .header-insidepage2 .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container a .text i {
  font-weight: 400;
}
.header-insidepage .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container a .icon, .header-insidepage2 .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container a .icon {
  border: 1px solid #0047AB;
}
.header-insidepage .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container a .icon svg path, .header-insidepage2 .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-contact__container a .icon svg path {
  fill: #0047AB;
}
.header-insidepage .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-toggle-btn__container .menu-toggle-btn .bars, .header-insidepage2 .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-toggle-btn__container .menu-toggle-btn .bars {
  border: 1px solid #0047AB;
}
.header-insidepage .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-toggle-btn__container .menu-toggle-btn .bars .bar, .header-insidepage2 .wps-header-navbar__wrapper .wps-header-navbar__container .navbar-btns__container .navbar-toggle-btn__container .menu-toggle-btn .bars .bar {
  background-color: #0047AB;
}

.wps-full-screen-menu__wrapper {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  min-height: 100vh;
  z-index: 10000000;
  opacity: 0;
  visibility: visible;
}
.wps-full-screen-menu__wrapper.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}
.wps-full-screen-menu__wrapper .close-btn__container {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}
.wps-full-screen-menu__wrapper .close-btn__container .close-btn {
  all: unset;
  padding: 15px 20px 10px;
  background-image: linear-gradient(150deg, #6FD0F0 40%, #9ED070 100%);
  cursor: pointer;
}
.wps-full-screen-menu__wrapper .close-btn__container .close-btn svg {
  width: 15px;
  fill: #ffffff;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  padding: 100px 40px;
  overflow-y: scroll;
  background-image: linear-gradient(150deg, #0047AB 40%, #6FD0F0 100%);
  z-index: 10;
}
@media (max-width: 767px) {
  .wps-full-screen-menu__wrapper .wps-full-screen-menu__container {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .wps-full-screen-menu__wrapper .wps-full-screen-menu__container {
    padding: 80px 20px;
  }
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .logo__container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .logo__container a {
  display: block;
  text-decoration: none;
  width: 100%;
  max-width: 260px;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .logo__container a img {
  display: block;
  width: 100%;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container {
  width: 100%;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li.current-menu-ancestor > a,
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li.current-menu-item > a,
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li.current-menu-parent > a,
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li.current_page_item > a {
  color: #ffffff;
  text-decoration: none;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li {
  line-height: 1;
  padding: 0;
  margin: 0;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li a {
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  color: #ffffff;
  padding: 0;
  margin: 0;
  position: relative;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li a:link, .wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li a:visited, .wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li a:hover, .wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li a:active {
  color: #ffffff;
  text-decoration: none;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li.menu-item-has-children > a {
  padding-right: 24px;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li.menu-item-has-children > a::after {
  content: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="hsl(0, 0%, 100%)" d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>');
  position: absolute;
  right: 3px;
  top: 1px;
  width: 12px;
  fill: #ffffff;
  transform-origin: bottom bottom;
  transition: all 500ms ease-in-out;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li.menu-item-has-children > a.rotate::after {
  transform: rotateX(180deg);
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li.menu-item-has-children > a {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  color: #ffffff;
  position: relative;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li > ul.sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms ease-in-out;
  gap: 0;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li > ul.sub-menu li {
  padding: 10px 0 10px 10px;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li > ul.sub-menu li:first-child {
  padding-top: 26px;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li > ul.sub-menu li a {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  color: #ffffff;
  opacity: 0.65;
  transition: opacity 400ms ease-in-out;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li > ul.sub-menu li a:hover {
  opacity: 1;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .navigation__container ul li > ul.sub-menu li > ul.sub-menu li a {
  font-size: 16px;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .cta-btn__container {
  display: inline-block;
  position: relative;
  z-index: 10;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .cta-btn__container a {
  background-color: #0047AB;
  min-width: 220px;
  padding: 0px 18px 0px 28px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 30px;
  border: 2px solid #0047AB;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .cta-btn__container a .text {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .cta-btn__container a .icon {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .cta-btn__container a .icon svg {
  display: block;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .cta-btn__container a .icon svg path {
  stroke: #0047AB;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  margin-top: 40px;
  position: relative;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .contact__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .contact__container a {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .contact__container a.address .text {
  line-height: 1.66;
  gap: 0px;
  font-weight: 500;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .contact__container a.address .text i {
  font-weight: 400;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .contact__container a .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #6FD0F0;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .contact__container a .icon svg {
  display: block;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .contact__container a .icon svg path {
  fill: #6FD0F0;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .contact__container a .text {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .contact__container a .text .mail-text, .wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .contact__container a .text .number {
  font-weight: 500;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .social-icons__container {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .social-icons__container ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .social-icons__container ul li {
  margin: 0;
  padding: 0;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .social-icons__container ul li a {
  text-decoration: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #6FD0F0;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .social-icons__container ul li a:hover svg path {
  fill: #6FD0F0;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .social-icons__container ul li a svg {
  display: block;
  width: 20px;
  height: 20px;
}
.wps-full-screen-menu__wrapper .wps-full-screen-menu__container .contact-us__container .social-icons__container ul li a svg path {
  fill: #ffffff;
}

.sticky-navbar__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  transform: translateY(-110%);
  transition: 0.2s ease-in-out;
  background: #fafafa;
  border: none;
  padding: 0 50px;
  box-shadow: inset 0 0 15px rgba(84, 84, 84, 0), inset 0 0 20px rgba(155, 155, 155, 0), 7px 7px 15px rgba(84, 84, 84, 0.1), -7px -7px 20px rgba(155, 155, 155, 0.5), inset 0px 0px 4px rgba(155, 155, 155, 0.2);
}
@media (max-width: 1399px) {
  .sticky-navbar__wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 1399px) {
  .sticky-navbar__wrapper {
    padding: 0 20px;
  }
}
.sticky-navbar__wrapper.sticky {
  transform: translateY(0%);
}
.sticky-navbar__wrapper .sticky-navbar__container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 12px 0;
}
@media (max-width: 1648px) {
  .sticky-navbar__wrapper .sticky-navbar__container {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .sticky-navbar__wrapper .sticky-navbar__container {
    gap: 20px;
  }
}
@media (max-width: 498px) {
  .sticky-navbar__wrapper .sticky-navbar__container {
    gap: 16px;
  }
}
.sticky-navbar__wrapper .sticky-navbar-logo__container {
  flex-basis: 260px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .sticky-navbar__wrapper .sticky-navbar-logo__container {
    flex-basis: 200px;
  }
}
@media (max-width: 575px) {
  .sticky-navbar__wrapper .sticky-navbar-logo__container {
    flex-shrink: 1;
  }
}
.sticky-navbar__wrapper .sticky-navbar-logo__container a {
  display: block;
  text-decoration: none;
  width: 100%;
}
.sticky-navbar__wrapper .sticky-navbar-logo__container a img {
  width: 100%;
  display: block;
}
.sticky-navbar__wrapper .sticky-call__container {
  display: inline-block;
}
@media (max-width: 1029px) {
  .sticky-navbar__wrapper .sticky-call__container {
    display: none;
  }
}
.sticky-navbar__wrapper .sticky-call__container a {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.sticky-navbar__wrapper .sticky-call__container a .text {
  font-size: 12px;
  line-height: 1.666;
  font-family: "Manrope", sans-serif;
  color: #0047AB;
  display: flex;
  flex-direction: column;
}
.sticky-navbar__wrapper .sticky-call__container a .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #0047AB;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticky-navbar__wrapper .sticky-call__container a .icon svg {
  display: block;
}
.sticky-navbar__wrapper .sticky-call__container a .icon svg path {
  fill: #0047AB;
}
.sticky-navbar__wrapper .stickybar-navigation__container {
  display: none;
}
@media (max-width: 1688px) {
  .sticky-navbar__wrapper .stickybar-navigation__container {
    display: none;
  }
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu li.current-menu-ancestor > a,
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu li.current-menu-item > a,
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu li.current-menu-parent > a,
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu li.current_page_item > a {
  color: #0047AB;
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu ul.sub-menu {
  transition-property: all;
  transition-duration: 0.22s;
  transition-timing-function: ease-in-out;
  transition-delay: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 100%;
  background: #ffffff;
  white-space: nowrap;
  transform: translateX(-1%);
  min-width: 240px;
  width: 100%;
  max-width: 240px;
  display: block;
  margin: 0 0 0 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 12px rgba(33, 33, 33, 0.1);
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu ul.sub-menu > li {
  margin-bottom: 0;
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu ul.sub-menu > li a {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  color: #0047AB;
  padding: 10px 10px 7px;
  margin: 0;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu ul.sub-menu > li a:hover {
  color: #ffffff;
  background-color: #0047AB;
  border-radius: 5px;
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu > li {
  position: relative;
  display: inline-block;
  padding: 0 10px 5px;
  margin: 0;
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu > li.menu-item-has-children {
  padding-right: 24px;
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu > li.menu-item-has-children::after {
  content: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="hsl(209, 100%, 32%)" d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>');
  position: absolute;
  right: 5px;
  top: 16px;
  width: 12px;
  height: 12px;
  fill: #000000;
  transition: all 300ms ease-in-out;
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu > li a {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  padding: 21px 0 15px;
  margin: 0;
  color: #0047AB;
  background: none;
  position: relative;
  white-space: normal;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu > li a:hover {
  text-decoration: none;
  color: #0047AB;
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu > li:hover.menu-item-has-children::after {
  content: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="hsl(209, 100%, 32%)" d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>');
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu > li:hover > ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
  display: block;
  z-index: 2;
  padding: 8px 5px;
  left: 0;
  margin-left: 15px;
  margin-top: -10px;
  transform: translateX(-5px);
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu > li:hover > a {
  text-decoration: none;
  color: #0047AB;
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu > li ul > li {
  position: relative;
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu > li ul > li.menu-item-has-children::after {
  content: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 150 448 512"><path fill="hsl(209, 100%, 32%)" d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>');
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(270deg);
  width: 10px;
  height: 10px;
  transition: all 300ms ease-in-out;
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu > li ul > li ul.sub-menu {
  left: 100%;
  top: 0;
  transform: translateX(-5px);
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu > li ul > li:hover.menu-item-has-children:hover > a {
  color: #ffffff;
  border-radius: 5px;
  background-color: #0047AB;
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu > li ul > li:hover.menu-item-has-children:hover::after {
  content: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 150 448 512"><path fill="hsl(0, 0%, 100%)" d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>');
}
.sticky-navbar__wrapper .stickybar-navigation__container #main-menu > li ul > li:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  top: 0;
  left: 100%;
  margin-left: 0;
  display: block;
  z-index: 2;
  padding: 10px;
  margin-top: 0;
  transform: translateX(0);
}
.sticky-navbar__wrapper .sticky-btns__container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
@media (max-width: 575px) {
  .sticky-navbar__wrapper .sticky-btns__container {
    gap: 16px;
  }
}
@media (max-width: 1029px) {
  .sticky-navbar__wrapper .sticky-btns__container .sticky-cta__container {
    display: flex;
    gap: 10px;
  }
}
.sticky-navbar__wrapper .sticky-btns__container .sticky-cta__container a {
  background-color: #0047AB;
  min-width: 220px;
  padding: 0px 18px 0px 28px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 30px;
  border: 2px solid #0047AB;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 1029px) {
  .sticky-navbar__wrapper .sticky-btns__container .sticky-cta__container a {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
}
.sticky-navbar__wrapper .sticky-btns__container .sticky-cta__container a.number {
  display: none;
}
@media (max-width: 1029px) {
  .sticky-navbar__wrapper .sticky-btns__container .sticky-cta__container a.number {
    display: flex;
  }
}
.sticky-navbar__wrapper .sticky-btns__container .sticky-cta__container a .text {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1029px) {
  .sticky-navbar__wrapper .sticky-btns__container .sticky-cta__container a .text {
    display: none;
  }
}
.sticky-navbar__wrapper .sticky-btns__container .sticky-cta__container a .icon {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
}
@media (max-width: 1029px) {
  .sticky-navbar__wrapper .sticky-btns__container .sticky-cta__container a .icon {
    display: none;
  }
}
.sticky-navbar__wrapper .sticky-btns__container .sticky-cta__container a .icon svg {
  display: block;
}
.sticky-navbar__wrapper .sticky-btns__container .sticky-cta__container a .icon svg path {
  stroke: #0047AB;
}
.sticky-navbar__wrapper .sticky-btns__container .sticky-cta__container a .show-on-sm {
  display: none;
}
@media (max-width: 1029px) {
  .sticky-navbar__wrapper .sticky-btns__container .sticky-cta__container a .show-on-sm {
    display: block;
  }
}
.sticky-navbar__wrapper .sticky-btns__container .sticky-cta__container a .show-on-sm svg {
  width: 20px;
  height: 20px;
  display: block;
}
.sticky-navbar__wrapper .sticky-btns__container .sticky-cta__container a .show-on-sm svg path {
  fill: #ffffff;
}
.sticky-navbar__wrapper .sticky-btns__container .sticky-toggle-btn__container .menu-toggle-btn {
  all: unset;
  cursor: pointer;
}
.sticky-navbar__wrapper .sticky-btns__container .sticky-toggle-btn__container .menu-toggle-btn .bars {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #0047AB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.sticky-navbar__wrapper .sticky-btns__container .sticky-toggle-btn__container .menu-toggle-btn .bars .bar {
  width: 30px;
  height: 2px;
  background-color: #0047AB;
}

.wps-footer-cta-banner__wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
}
.wps-footer-cta-banner__wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #0047AB;
  z-index: 1;
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container {
  max-width: 1400px;
  margin: 0 auto;
  width: 85%;
  display: flex;
  background-image: linear-gradient(to right, #6FD0F0, #9ED070);
  position: relative;
  z-index: 2;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container {
    width: 90%;
  }
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-image__container {
  width: 55%;
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}
@media (max-width: 1449px) {
  .wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-image__container {
    width: 65%;
  }
}
@media (max-width: 1349px) {
  .wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-image__container {
    width: 80%;
  }
}
@media (max-width: 999px) {
  .wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-image__container {
    width: 100%;
  }
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-image__container img {
  display: block;
  width: 100%;
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container {
  padding: 100px 170px 100px 0px;
  width: 100%;
  position: relative;
  z-index: 4;
}
@media (max-width: 999px) {
  .wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container {
    padding: 100px 40px;
  }
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content {
  max-width: 660px;
  margin-left: auto;
}
@media (max-width: 999px) {
  .wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content {
    margin-right: auto;
  }
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content .heading {
  max-width: 600px;
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content .heading h2 {
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.2;
  font-size: clamp(40px, 8vw, 60px);
  margin: 0;
  padding: 0;
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content .heading h2 span {
  display: block;
  font-family: "Ivy Mode";
  font-weight: 400;
  font-style: italic;
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content .heading p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 30px;
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content .cta-btns__container {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content .cta-btns__container {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content .cta-btns__container .cta-btn {
  background-color: #0047AB;
  min-width: 220px;
  padding: 0px 18px 0px 28px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 30px;
  border: 2px solid #0047AB;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content .cta-btns__container .cta-btn .text {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content .cta-btns__container .cta-btn .icon {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content .cta-btns__container .cta-btn .icon svg {
  display: block;
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content .cta-btns__container .cta-btn .icon svg path {
  stroke: #0047AB;
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content .cta-btns__container .cta-btn-number {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 0px 18px 0px 28px;
  height: 60px;
  border-radius: 30px;
  text-decoration: none;
  min-width: 260px;
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content .cta-btns__container .cta-btn-number .text {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: 15px;
  text-align: center;
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content .cta-btns__container .cta-btn-number .icon {
  display: block;
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content .cta-btns__container .cta-btn-number .icon svg {
  display: block;
  width: 16px;
  height: 16px;
}
.wps-footer-cta-banner__wrapper .wps-footer-cta-banner__container .section-content__container .section-content .cta-btns__container .cta-btn-number .icon svg path {
  fill: #ffffff;
}

.wps-footer-main__wrapper {
  position: relative;
  width: 100%;
  padding-top: 60px;
  overflow: hidden;
  background-color: #0047AB;
}
.wps-footer-main__wrapper .wps-footer-main__container {
  max-width: 1400px;
  margin: 0 auto;
  width: 85%;
  display: flex;
  gap: 50px;
  padding-bottom: 80px;
  justify-content: space-between;
}
@media (max-width: 949px) {
  .wps-footer-main__wrapper .wps-footer-main__container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .wps-footer-main__wrapper .wps-footer-main__container {
    width: 90%;
  }
}
@media (max-width: 599px) {
  .wps-footer-main__wrapper .wps-footer-main__container {
    flex-direction: column;
    gap: 60px;
  }
}
.wps-footer-main__wrapper .wps-footer-main__container .contact__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 949px) {
  .wps-footer-main__wrapper .wps-footer-main__container .contact__container {
    order: 2;
    width: 48%;
  }
}
@media (max-width: 599px) {
  .wps-footer-main__wrapper .wps-footer-main__container .contact__container {
    width: 100%;
  }
}
.wps-footer-main__wrapper .wps-footer-main__container .contact__container a {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wps-footer-main__wrapper .wps-footer-main__container .contact__container a.address .text {
  line-height: 1.66;
  gap: 0px;
  font-weight: 500;
}
.wps-footer-main__wrapper .wps-footer-main__container .contact__container a.address .text i {
  font-weight: 400;
}
.wps-footer-main__wrapper .wps-footer-main__container .contact__container a .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #6FD0F0;
}
.wps-footer-main__wrapper .wps-footer-main__container .contact__container a .icon svg {
  display: block;
}
.wps-footer-main__wrapper .wps-footer-main__container .contact__container a .icon svg path {
  fill: #6FD0F0;
}
.wps-footer-main__wrapper .wps-footer-main__container .contact__container a .text {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wps-footer-main__wrapper .wps-footer-main__container .contact__container a .text .mail-text, .wps-footer-main__wrapper .wps-footer-main__container .contact__container a .text .number {
  font-weight: 500;
}
@media (max-width: 949px) {
  .wps-footer-main__wrapper .wps-footer-main__container .logo__container {
    order: 1;
    width: 100%;
  }
}
.wps-footer-main__wrapper .wps-footer-main__container .logo__container img {
  max-width: 200px;
  display: block;
}
.wps-footer-main__wrapper .wps-footer-main__container .links__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 949px) {
  .wps-footer-main__wrapper .wps-footer-main__container .links__container {
    order: 3;
  }
}
.wps-footer-main__wrapper .wps-footer-main__container .links__container .social-icons__container {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  justify-content: flex-end;
}
@media (max-width: 599px) {
  .wps-footer-main__wrapper .wps-footer-main__container .links__container .social-icons__container {
    margin-bottom: 20px;
    justify-content: flex-start;
  }
}
.wps-footer-main__wrapper .wps-footer-main__container .links__container .social-icons__container ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.wps-footer-main__wrapper .wps-footer-main__container .links__container .social-icons__container ul li {
  margin: 0;
  padding: 0;
}
.wps-footer-main__wrapper .wps-footer-main__container .links__container .social-icons__container ul li a {
  text-decoration: none;
}
.wps-footer-main__wrapper .wps-footer-main__container .links__container .social-icons__container ul li a:hover svg path {
  fill: #6FD0F0;
}
.wps-footer-main__wrapper .wps-footer-main__container .links__container .social-icons__container ul li a svg {
  display: block;
}
.wps-footer-main__wrapper .wps-footer-main__container .links__container .social-icons__container ul li a svg path {
  fill: #ffffff;
}
.wps-footer-main__wrapper .wps-footer-main__container .links__container p {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
  gap: 4px;
  text-align: right;
}
@media (max-width: 599px) {
  .wps-footer-main__wrapper .wps-footer-main__container .links__container p {
    justify-content: flex-start;
  }
}
.wps-footer-main__wrapper .wps-footer-main__container .links__container p a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8);
}
.wps-footer-main__wrapper .wps-footer-main__container .links__container p a:hover {
  color: #6FD0F0;
}

.footer-sticky-navbar__wrapper {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  box-shadow: 0 5px 20px 2px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  display: none;
  z-index: 10000;
}
@media (max-width: 767px) {
  .footer-sticky-navbar__wrapper {
    display: flex;
  }
}
.footer-sticky-navbar__wrapper::before, .footer-sticky-navbar__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100px;
  background-color: #BDDC3C;
}
.footer-sticky-navbar__wrapper::before {
  left: 50%;
}
.footer-sticky-navbar__wrapper::after {
  left: 75%;
}
.footer-sticky-navbar__wrapper .sticky-contact__container {
  width: 50%;
  display: flex;
}
.footer-sticky-navbar__wrapper .sticky-contact__container .phone-number,
.footer-sticky-navbar__wrapper .sticky-contact__container .address {
  line-height: 1;
  padding: 0;
  margin: 0;
  width: 50%;
}
.footer-sticky-navbar__wrapper .sticky-contact__container .phone-number a,
.footer-sticky-navbar__wrapper .sticky-contact__container .address a {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 20px 15px;
}
.footer-sticky-navbar__wrapper .sticky-contact__container .phone-number a svg,
.footer-sticky-navbar__wrapper .sticky-contact__container .address a svg {
  width: 24px;
  height: 24px;
  fill: #BDDC3C;
  transition: fill 300ms ease-in-out;
}
.footer-sticky-navbar__wrapper .navbar-cta__container {
  width: 50%;
}
.footer-sticky-navbar__wrapper .navbar-cta__container a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 25px 0 15px;
  text-decoration: none;
}
.footer-sticky-navbar__wrapper .navbar-cta__container a span {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #BDDC3C;
  padding: 2px 0 0;
  margin: 0;
  transition: color 200ms ease-in-out;
}
.footer-sticky-navbar__wrapper .navbar-cta__container a svg {
  width: 24px;
  fill: #BDDC3C;
  transition: fill 200ms ease-in-out;
  display: none;
}
.footer-sticky-navbar__wrapper .navbar-cta__container a:hover svg {
  fill: #BDDC3C;
}
.footer-sticky-navbar__wrapper .navbar-cta__container a:hover span {
  color: #BDDC3C;
}

/**
 * UI Components Variables
 *
 * Centralized variables for reusable UI components (buttons, titles, descriptions).
 * These can be overridden in module-specific SCSS files.
 *
 * @package    WPSCT
 * @subpackage Settings
 * @since      3.0.0
 */
/**
 * UI Components Mixins
 *
 * Reusable mixins for generating UI component styles.
 * Use these mixins in module SCSS files to create consistent components.
 *
 * @package    WPSCT
 * @subpackage Tools
 * @since      3.0.0
 */
/**
 * Generate button base styles
 *
 * @param {string} $size - Button size (small, medium, large)
 */
/**
 * Generate button style variant
 *
 * @param {string} $style - Button style (primary, secondary, outline)
 */
/**
 * Complete button mixin - combines base and style
 *
 * @param {string} $style - Button style (primary, secondary, outline)
 * @param {string} $size - Button size (small, medium, large)
 */
/**
 * Generate title/heading styles
 *
 * @param {string} $size - Title size (small, medium, large, xlarge)
 * @param {string} $align - Text alignment (left, center, right)
 */
/**
 * Generate description/paragraph styles
 *
 * @param {string} $size - Description size (small, medium, large)
 * @param {string} $align - Text alignment (left, center, right)
 */
/**
 * Responsive button size adjustments
 *
 * @param {string} $size - Base button size
 */
/**
 * Responsive title size adjustments
 *
 * @param {string} $size - Base title size
 */
/**
 * Responsive description size adjustments
 *
 * @param {string} $size - Base description size
 */
/**
 * Customizable Button Mixin with Auto-Detected Responsive Support
 * 
 * Responsive is automatically enabled if any responsive parameter is provided.
 * 
 * @param {string} $size - Size preset (small, medium, large) or null for custom
 * @param {string|number} $padding-y - Vertical padding (default: uses size preset)
 * @param {string|number} $padding-x - Horizontal padding (default: uses size preset)
 * @param {string} $font-size - Font size (default: uses size preset)
 * @param {string} $color - Text color (default: uses style preset)
 * @param {string} $bg-color - Background color (default: uses style preset)
 * @param {string} $border-radius - Border radius (default: 4px)
 * @param {string} $style - Style preset (primary, secondary, outline) or null for custom
 * @param {string} $hover-bg - Hover background color (optional)
 * @param {string} $hover-color - Hover text color (optional)
 * @param {string} $tablet-size - Predefined size for tablet breakpoint (md: 768px)
 * @param {string} $mobile-size - Predefined size for mobile breakpoint (sm: 576px)
 * @param {string|number} $tablet-padding-y - Padding Y for tablet
 * @param {string|number} $tablet-padding-x - Padding X for tablet
 * @param {string|number} $mobile-padding-y - Padding Y for mobile
 * @param {string|number} $mobile-padding-x - Padding X for mobile
 */
/**
 * Customizable Heading Mixin with Auto-Detected Responsive Support
 * 
 * Responsive is automatically enabled if any responsive parameter is provided.
 * 
 * @param {string} $size - Size preset (small, medium, large, xlarge) or null for custom
 * @param {string|number} $font-size - Font size (default: uses size preset)
 * @param {string} $color - Text color (default: #2c3e50)
 * @param {string|number} $margin - Margin (default: 0)
 * @param {string|number} $font-weight - Font weight (default: 700)
 * @param {string|number} $line-height - Line height (default: 1.2)
 * @param {string} $align - Text alignment (left, center, right) (default: left)
 * @param {string} $tablet-size - Predefined size for tablet breakpoint
 * @param {string} $mobile-size - Predefined size for mobile breakpoint
 * @param {string|number} $tablet-font-size - Custom font size for tablet
 * @param {string|number} $mobile-font-size - Custom font size for mobile
 */
/**
 * Customizable Text/Description Mixin with Auto-Detected Responsive Support
 * 
 * Responsive is automatically enabled if any responsive parameter is provided.
 * 
 * @param {string} $size - Size preset (small, medium, large) or null for custom
 * @param {string|number} $font-size - Font size (default: uses size preset)
 * @param {string} $color - Text color (default: #555)
 * @param {string|number} $margin - Margin (default: 0)
 * @param {string|number} $font-weight - Font weight (default: 400)
 * @param {string|number} $line-height - Line height (default: 1.6)
 * @param {string} $align - Text alignment (left, center, right) (default: left)
 * @param {string} $tablet-size - Predefined size for tablet breakpoint
 * @param {string} $mobile-size - Predefined size for mobile breakpoint
 * @param {string|number} $tablet-font-size - Custom font size for tablet
 * @param {string|number} $mobile-font-size - Custom font size for mobile
 */
/**
 * UI Components Functions
 *
 * Utility functions for UI component calculations and helpers.
 *
 * @package    WPSCT
 * @subpackage Tools
 * @since      3.0.0
 */
/**
 * Get button size value
 *
 * @param {string} $size - Size name (small, medium, large)
 * @param {string} $property - Property name (padding-y, padding-x, font-size)
 * @return {value} The property value
 */
/**
 * Get button style value
 *
 * @param {string} $style - Style name (primary, secondary, outline)
 * @param {string} $property - Property name
 * @return {value} The property value
 */
/**
 * Get title size value
 *
 * @param {string} $size - Size name (small, medium, large, xlarge)
 * @return {value} Font size value
 */
/**
 * Get description size value
 *
 * @param {string} $size - Size name (small, medium, large)
 * @return {value} Font size value
 */
/**
 * Calculate responsive font size
 *
 * @param {value} $base-size - Base font size
 * @param {value} $reduction - Amount to reduce
 * @return {value} Reduced font size
 */
/**
 * UI Components Styles
 *
 * Generated styles for reusable UI components using mixins and variables.
 * This file is compiled to CSS and enqueued globally.
 *
 * @package    WPSCT
 * @subpackage Components
 * @since      3.0.0
 */
.wps-ui-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 12px 24px;
  font-size: 0.875rem;
}
.wps-ui-button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.wps-ui-button:focus:not(:focus-visible) {
  outline: none;
}

.wps-ui-button__text {
  display: inline-block;
}

.wps-ui-button__icon {
  display: inline-flex;
  align-items: center;
}

.wps-ui-button--primary {
  background-color: #e74c3c;
  color: #ffffff;
}
.wps-ui-button--primary:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .wps-ui-button--primary {
    padding: 10px 20px;
    font-size: 0.8125rem;
  }
}

.wps-ui-button--secondary {
  background-color: #34495e;
  color: #ffffff;
}
.wps-ui-button--secondary:hover {
  background-color: #2c3e50;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .wps-ui-button--secondary {
    padding: 10px 20px;
    font-size: 0.8125rem;
  }
}

.wps-ui-button--outline {
  background-color: transparent;
  color: #e74c3c;
  border: 2px solid #e74c3c;
}
.wps-ui-button--outline:hover {
  background-color: #e74c3c;
  color: #ffffff;
}
@media (max-width: 767px) {
  .wps-ui-button--outline {
    padding: 10px 20px;
    font-size: 0.8125rem;
  }
}

.wps-ui-button--small {
  padding: 8px 16px;
  font-size: 0.8125rem;
}

.wps-ui-button--medium {
  padding: 12px 24px;
  font-size: 0.875rem;
}

.wps-ui-button--large {
  padding: 16px 32px;
  font-size: 1rem;
}
@media (max-width: 991px) {
  .wps-ui-button--large {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }
}
@media (max-width: 767px) {
  .wps-ui-button--large {
    padding: 10px 20px;
    font-size: 0.8125rem;
    padding: 12px 24px;
    font-size: 0.875rem;
  }
}

.wps-ui-title {
  margin: 0;
  line-height: 1.2;
  font-family: inherit;
  font-weight: 700;
  color: #2c3e50;
  text-align: left;
  font-size: 2.5rem;
}

.wps-ui-title--small {
  margin: 0;
  line-height: 1.2;
  font-family: inherit;
  font-weight: 700;
  color: #2c3e50;
  text-align: left;
  font-size: 1.5rem;
}
.wps-ui-title--medium {
  margin: 0;
  line-height: 1.2;
  font-family: inherit;
  font-weight: 700;
  color: #2c3e50;
  text-align: left;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .wps-ui-title--medium {
    font-size: 1.75rem;
  }
}

.wps-ui-title--large {
  margin: 0;
  line-height: 1.2;
  font-family: inherit;
  font-weight: 700;
  color: #2c3e50;
  text-align: left;
  font-size: 2.5rem;
}
@media (max-width: 991px) {
  .wps-ui-title--large {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .wps-ui-title--large {
    font-size: 1.75rem;
  }
}

.wps-ui-title--xlarge {
  margin: 0;
  line-height: 1.2;
  font-family: inherit;
  font-weight: 700;
  color: #2c3e50;
  text-align: left;
  font-size: 3rem;
}
@media (max-width: 991px) {
  .wps-ui-title--xlarge {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .wps-ui-title--xlarge {
    font-size: 2rem;
  }
}

.wps-ui-title--align-left {
  text-align: left;
}

.wps-ui-title--align-center {
  text-align: center;
}

.wps-ui-title--align-right {
  text-align: right;
}

.wps-ui-description {
  margin: 0;
  line-height: 1.6;
  font-family: inherit;
  font-weight: 400;
  color: #555;
  text-align: left;
  font-size: 1.125rem;
}

.wps-ui-description--small {
  margin: 0;
  line-height: 1.6;
  font-family: inherit;
  font-weight: 400;
  color: #555;
  text-align: left;
  font-size: 0.9375rem;
}
.wps-ui-description--medium {
  margin: 0;
  line-height: 1.6;
  font-family: inherit;
  font-weight: 400;
  color: #555;
  text-align: left;
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .wps-ui-description--medium {
    font-size: 1rem;
  }
}

.wps-ui-description--large {
  margin: 0;
  line-height: 1.6;
  font-family: inherit;
  font-weight: 400;
  color: #555;
  text-align: left;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .wps-ui-description--large {
    font-size: 1.125rem;
  }
}

.wps-ui-description--align-left {
  text-align: left;
}

.wps-ui-description--align-center {
  text-align: center;
}

.wps-ui-description--align-right {
  text-align: right;
}

/**
 * WPBakery Core Module Extensions - Main Index
 *
 * Imports all WPBakery core module extension styles.
 *
 * Usage:
 * Import this file in your main.scss:
 * @import 'vc-modules/index';
 *
 * @package    WPSCT
 * @subpackage Integrations\WPBakery\CoreModules
 * @since      2.9.0
 */
/**
 * WPBakery Row Extensions - Styles
 *
 * Styles for custom row parameters including visibility controls,
 * column spacing system, max width presets, and layout utilities.
 *
 * @package    WPSCT
 * @subpackage Integrations\WPBakery\CoreModules
 * @since      2.9.0
 */
@media (max-width: 767px) {
  .wps-hide-on-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .wps-hide-on-tablet {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .wps-hide-on-desktop {
    display: none !important;
  }
}

.wps-vc-remove-bottom-col-margin .wpb_column {
  margin-bottom: 0 !important;
}

.wps-vc-cols-right {
  display: flex;
  flex-direction: row-reverse;
}
.wps-vc-cols-right .wpb_column {
  flex-shrink: 0;
}

.wps-row-full-width {
  display: block;
  width: 100%;
}
.wps-row-container {
  width: 100%;
}
.wps-row-container > .wps-row-inner-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
}
@media (max-width: 991px) {
  .wps-row-container > .wps-row-inner-container {
    width: 90%;
    padding: 0;
  }
}
@media (max-width: 575px) {
  .wps-row-container > .wps-row-inner-container {
    width: 84%;
    padding: 0;
  }
}

.wps-row-full-width.wps-vc-max-width-10,
.wps-row-container.wps-vc-max-width-10 {
  max-width: 10%;
  width: auto !important;
}

.wps-row-full-width.wps-vc-max-width-20,
.wps-row-container.wps-vc-max-width-20 {
  max-width: 20%;
  width: auto !important;
}

.wps-row-full-width.wps-vc-max-width-30,
.wps-row-container.wps-vc-max-width-30 {
  max-width: 30%;
  width: auto !important;
}

.wps-row-full-width.wps-vc-max-width-40,
.wps-row-container.wps-vc-max-width-40 {
  max-width: 40%;
  width: auto !important;
}

.wps-row-full-width.wps-vc-max-width-50,
.wps-row-container.wps-vc-max-width-50 {
  max-width: 50%;
  width: auto !important;
}

.wps-row-full-width.wps-vc-max-width-60,
.wps-row-container.wps-vc-max-width-60 {
  max-width: 60%;
  width: auto !important;
}

.wps-row-full-width.wps-vc-max-width-70,
.wps-row-container.wps-vc-max-width-70 {
  max-width: 70%;
  width: auto !important;
}

.wps-row-full-width.wps-vc-max-width-80,
.wps-row-container.wps-vc-max-width-80 {
  max-width: 80%;
  width: auto !important;
}

.wps-vc-row-align-left {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.wps-vc-row-align-center {
  margin-left: auto !important;
  margin-right: auto !important;
}

.wps-vc-row-align-right {
  margin-left: auto !important;
  margin-right: 0 !important;
}

[data-local-scroll=true] {
  scroll-margin-top: 80px;
}
@media (max-width: 767px) {
  [data-local-scroll=true] {
    scroll-margin-top: 60px;
  }
}

[style*=z-index] {
  position: relative;
}

.wps-row-full-width > .wpb_column,
.wps-row-inner-container > .wpb_column {
  flex-grow: 0;
  flex-shrink: 0;
}
.wps-row-full-width > .wpb_column.vc_col-sm-12,
.wps-row-inner-container > .wpb_column.vc_col-sm-12 {
  flex-basis: 100%;
  max-width: 100%;
}
.wps-row-full-width > .wpb_column.vc_col-sm-11,
.wps-row-inner-container > .wpb_column.vc_col-sm-11 {
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}
.wps-row-full-width > .wpb_column.vc_col-sm-10,
.wps-row-inner-container > .wpb_column.vc_col-sm-10 {
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}
.wps-row-full-width > .wpb_column.vc_col-sm-9,
.wps-row-inner-container > .wpb_column.vc_col-sm-9 {
  flex-basis: 75%;
  max-width: 75%;
}
.wps-row-full-width > .wpb_column.vc_col-sm-8,
.wps-row-inner-container > .wpb_column.vc_col-sm-8 {
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}
.wps-row-full-width > .wpb_column.vc_col-sm-7,
.wps-row-inner-container > .wpb_column.vc_col-sm-7 {
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}
.wps-row-full-width > .wpb_column.vc_col-sm-6,
.wps-row-inner-container > .wpb_column.vc_col-sm-6 {
  flex-basis: 50%;
  max-width: 50%;
}
.wps-row-full-width > .wpb_column.vc_col-sm-5,
.wps-row-inner-container > .wpb_column.vc_col-sm-5 {
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}
.wps-row-full-width > .wpb_column.vc_col-sm-4,
.wps-row-inner-container > .wpb_column.vc_col-sm-4 {
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}
.wps-row-full-width > .wpb_column.vc_col-sm-3,
.wps-row-inner-container > .wpb_column.vc_col-sm-3 {
  flex-basis: 25%;
  max-width: 25%;
}
.wps-row-full-width > .wpb_column.vc_col-sm-2,
.wps-row-inner-container > .wpb_column.vc_col-sm-2 {
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}
.wps-row-full-width > .wpb_column.vc_col-sm-1,
.wps-row-inner-container > .wpb_column.vc_col-sm-1 {
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

@media (max-width: 767px) {
  .wps-row-full-width > .wpb_column,
  .wps-row-inner-container > .wpb_column {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
}
/**
 * WPBakery Column Extensions - Styles
 *
 * Styles for custom column parameters including visibility controls,
 * box shadow presets, animation support, and z-index utilities.
 *
 * @package    WPSCT
 * @subpackage Integrations\WPBakery\CoreModules
 * @since      2.9.0
 */
@media (max-width: 767px) {
  .wps-hide-on-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .wps-hide-on-tablet {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .wps-hide-on-desktop {
    display: none !important;
  }
}

[style*=animation-duration],
[style*=animation-delay] {
  animation-fill-mode: both;
}
[style*=animation-duration].animated,
[style*=animation-delay].animated {
  animation-fill-mode: both;
}

.wpb_column[style*=animation-delay] {
  opacity: 0;
}
.wpb_column[style*=animation-delay].animated {
  opacity: 1;
}
.wpb_column[style*=animation-delay].wpb_animate_when_almost_visible {
  opacity: 0;
}
.wpb_column[style*=animation-delay].wpb_animate_when_almost_visible.wpb_start_animation {
  opacity: 1;
}

.wpb_column[style*=z-index],
.vc_column_container[style*=z-index] {
  position: relative;
}

.wpb_column[style*=min-height],
.vc_column_container[style*=min-height] {
  align-self: stretch;
}
.wpb_column[style*=min-height] .vc_column-inner,
.wpb_column[style*=min-height] .wpb_wrapper,
.vc_column_container[style*=min-height] .vc_column-inner,
.vc_column_container[style*=min-height] .wpb_wrapper {
  height: 100%;
}

.wpb_column.wps-full-height {
  height: 100%;
}
.wpb_column.wps-full-height .vc_column-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.wpb_column.wps-full-height .wpb_wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media print {
  .wpb_column[style*=animation-duration],
  .wpb_column[style*=animation-delay] {
    animation: none !important;
    opacity: 1 !important;
  }
  .wps-hide-on-mobile,
  .wps-hide-on-tablet,
  .wps-hide-on-desktop {
    display: block !important;
  }
}
/**
 * WPBakery Custom Modules Styles
 *
 * Import all custom module SCSS files here.
 * Each module can use UI Components mixins and override as needed.
 *
 * @package    WPSCT
 * @subpackage WPBakery_Modules
 * @since      3.0.0
 */
.wps-homepage-intro-stats__wrapper {
  position: relative;
  padding: 100px 0px;
  background-image: linear-gradient(150deg, #0047AB 40%, #6FD0F0 100%);
}
.wps-homepage-intro-stats__wrapper .wps-homepage-intro-stats__container {
  max-width: 920px;
  margin: 0 auto;
  width: 85%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  text-align: center;
}
.wps-homepage-intro-stats__wrapper .wps-homepage-intro-stats__container h2 {
  max-width: 745px;
  margin: 0 auto;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.wps-homepage-intro-stats__wrapper .wps-homepage-intro-stats__container h2 i {
  font-family: "Ivy Mode";
  font-weight: 400;
}
.wps-homepage-intro-stats__wrapper .wps-homepage-intro-stats__container p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.7;
}
.wps-homepage-intro-stats__wrapper .wps-homepage-intro-stats__container .stats__container {
  display: flex;
  gap: 80px;
}
@media (max-width: 991px) {
  .wps-homepage-intro-stats__wrapper .wps-homepage-intro-stats__container .stats__container {
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .wps-homepage-intro-stats__wrapper .wps-homepage-intro-stats__container .stats__container {
    flex-direction: column;
    gap: 60px;
  }
}
.wps-homepage-intro-stats__wrapper .wps-homepage-intro-stats__container .stats__container .stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  max-width: 670px;
  margin: 0 auto;
}
.wps-homepage-intro-stats__wrapper .wps-homepage-intro-stats__container .stats__container .stats h3 {
  font-family: "Ivy Mode";
  font-weight: 400;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  margin: 0;
  padding: 0;
  font-style: italic;
  color: #ffffff;
}
.wps-homepage-intro-stats__wrapper .wps-homepage-intro-stats__container .stats__container .stats p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

.wps-homepage-treatments__wrapper {
  position: relative;
  background-color: #ECF9FF;
  padding: 150px 0px;
}
@media (max-width: 991px) {
  .wps-homepage-treatments__wrapper {
    padding: 120px 0px;
  }
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container {
  max-width: 1400px;
  margin: 0 auto;
  width: 85%;
  display: flex;
  gap: 8%;
}
@media (max-width: 1399px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container {
    gap: 6%;
  }
}
@media (max-width: 1299px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container {
    width: 90%;
  }
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container {
  max-width: 480px;
}
@media (max-width: 1399px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container {
    min-width: 480px;
  }
}
@media (max-width: 1299px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container {
    min-width: 100%;
  }
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .title {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  max-width: 360px;
  margin: 0 auto;
}
@media (max-width: 1299px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .title {
    margin: 0;
  }
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .title i {
  font-family: "Ivy Mode";
  font-weight: 400;
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .image-content__container {
  margin-top: 56px;
  width: 100%;
}
@media (max-width: 1299px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .image-content__container {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .image-content__container {
    flex-direction: column-reverse;
  }
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .image-content__container .treatments-content-box {
  background-image: linear-gradient(180deg, #92CD68, #50B5AB);
  padding: 56px 50px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
@media (max-width: 1299px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .image-content__container .treatments-content-box {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-right-radius: 8px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 8px;
  }
}
@media (max-width: 991px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .image-content__container .treatments-content-box {
    padding: 50px 40px;
  }
}
@media (max-width: 767px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .image-content__container .treatments-content-box {
    width: 100%;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
  }
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .image-content__container .treatments-content-box .box-title {
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .image-content__container .treatments-content-box .description {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  margin-top: 30px;
}
@media (max-width: 1299px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .image-content__container .image__container {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .image-content__container .image__container {
    width: 100%;
  }
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .image-content__container .image__container img {
  display: block;
  width: 100%;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (max-width: 1299px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .image-content__container .image__container img {
    border-top-left-radius: 8px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 8px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1299px) and (max-width: 767px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .image-content__container .image__container img {
    max-height: 450px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 0px;
  }
}
@media (max-width: 1299px) and (max-width: 767px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .left__container .image-content__container .image__container img {
    max-height: 400px;
  }
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 80px;
}
@media (max-width: 1399px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container {
    gap: 40px 60px;
  }
}
@media (max-width: 1299px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container {
    gap: 60px 120px;
    max-width: 85%;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container {
    max-width: 95%;
    gap: 60px 80px;
  }
}
@media (max-width: 767px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container {
    max-width: 90%;
    grid-template-columns: repeat(1, 1fr);
    gap: 80px;
  }
}
@media (max-width: 575px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container {
    max-width: 100%;
    gap: 55px;
  }
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container .wps-treatments-item {
  position: relative;
  overflow: hidden;
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container .wps-treatments-item:hover .content .links {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container .wps-treatments-item .icon {
  width: 80px;
  height: 80px;
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container .wps-treatments-item .icon img {
  display: block;
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container .wps-treatments-item .content h3 {
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #000000;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container .wps-treatments-item .content p {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  margin: 30px 0px;
  max-width: 320px;
}
@media (max-width: 767px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container .wps-treatments-item .content p {
    max-width: 80%;
  }
}
@media (max-width: 575px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container .wps-treatments-item .content p {
    max-width: 100%;
  }
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container .wps-treatments-item .content .links {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 767px) {
  .wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container .wps-treatments-item .content .links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
  }
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container .wps-treatments-item .content .links p {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container .wps-treatments-item .content .links a {
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0047AB;
  line-height: 1;
  position: relative;
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container .wps-treatments-item .content .links a:hover::after {
  transform: rotate(360deg);
}
.wps-homepage-treatments__wrapper .wps-treatments-section__container .wps-treatments-items__container .wps-treatments-item .content .links a::after {
  content: "→";
  position: absolute;
  right: -25px;
  display: inline-block;
  top: 10%;
  transform: rotate(320deg) translateY(-10%);
  font-size: 18px;
  color: #6FD0F0;
  transition: transform 250ms ease-out;
}

.wps-homepage-treatments-cards__wrapper {
  position: relative;
  padding: 0px 0px 160px;
  background-color: #ECF9FF;
}
@media (max-width: 991px) {
  .wps-homepage-treatments-cards__wrapper {
    padding: 0px 0px 120px;
  }
}
.wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container {
  max-width: 1400px;
  margin: 0 auto;
  width: 85%;
}
@media (max-width: 767px) {
  .wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container {
    width: 90%;
  }
}
.wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .heading__container {
  display: flex;
  align-items: flex-end;
  gap: 80px;
}
@media (max-width: 767px) {
  .wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .heading__container {
    gap: 50px;
  }
}
.wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .heading__container .border {
  width: 25%;
  display: inline-block;
  background: linear-gradient(#ECF9FF, #ECF9FF) padding-box, linear-gradient(45deg, #5672B9, #7DBAE1, #BDD85D) border-box;
  border-top: 2px solid transparent;
}
@media (max-width: 991px) {
  .wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .heading__container .border {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .heading__container .border {
    width: 20%;
  }
}
.wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .heading__container .title {
  padding: 0;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  width: 75%;
}
@media (max-width: 991px) {
  .wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .heading__container .title {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .heading__container .title {
    width: 80%;
  }
}
.wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .heading__container .title i {
  font-weight: 400;
  font-family: "Ivy Mode";
}
.wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .treatments-cards__container {
  display: flex;
  gap: 85px;
}
@media (max-width: 1349px) {
  .wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .treatments-cards__container {
    flex-direction: column;
  }
}
.wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .treatments-cards__container .description {
  width: 25%;
  margin-top: 80px;
}
@media (max-width: 1349px) {
  .wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .treatments-cards__container .description {
    width: 60%;
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .treatments-cards__container .description {
    width: 100%;
  }
}
.wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .treatments-cards__container .description p {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 400px;
  line-height: 1.5;
  color: #000000;
}
.wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .treatments-cards__container .treatments-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  width: 75%;
  margin-top: 80px;
}
@media (max-width: 1349px) {
  .wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .treatments-cards__container .treatments-cards {
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .treatments-cards__container .treatments-cards {
    grid-template-columns: repeat(1, 1fr);
    max-width: 550px;
    gap: 80px;
  }
}
.wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .treatments-cards__container .treatments-cards .treatments-card .image img {
  border-radius: 8px;
  width: 100%;
  display: block;
}
.wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .treatments-cards__container .treatments-cards .treatments-card .card-title {
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 600px;
  line-height: 1.5;
  color: #000000;
  margin: 0;
  margin-top: 20px;
}
.wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .treatments-cards__container .treatments-cards .treatments-card .card-description {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400px;
  line-height: 1.7;
  color: #000000;
  margin: 30px 0px 26px;
}
.wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .treatments-cards__container .treatments-cards .treatments-card .treatment-links {
  display: flex;
  gap: 18px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 200px;
}
.wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .treatments-cards__container .treatments-cards .treatments-card .treatment-links a {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  color: #0047AB;
  font-weight: 400px;
  line-height: 1.2;
}
.wps-homepage-treatments-cards__wrapper .wps-homepage-treatments-cards__container .treatments-cards__container .treatments-cards .treatments-card .treatment-links a:hover {
  text-decoration: none;
}

.wps-homepage_meet_the_doctor__wrapper {
  position: relative;
  padding: 140px 0px 90px;
}
.wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 85%;
}
@media (max-width: 767px) {
  .wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container {
    width: 90%;
  }
}
.wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .heading__container {
  max-width: 990px;
  margin: 0 auto;
  text-align: center;
}
.wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .heading__container .title {
  padding: 0;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
}
.wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .heading__container .title i {
  font-family: "Ivy Mode";
  font-weight: 400;
}
.wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .heading__container .small-title {
  margin: 60px 0px 15px;
  font-size: 26px;
  color: #000000;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .heading__container .small-title {
    margin: 30px 0px 15px;
  }
}
@media (max-width: 767px) {
  .wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .heading__container .small-title {
    font-size: 20px;
  }
}
.wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .heading__container .qualifications-content {
  font-size: 18px;
  color: #000000;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 1.7;
  text-transform: uppercase;
  margin: 0;
}
.wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container {
  display: flex;
  gap: 120px;
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container {
    gap: 80px;
  }
}
@media (max-width: 991px) {
  .wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container {
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
  }
}
.wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container .image-description__container {
  width: 45%;
}
@media (max-width: 991px) {
  .wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container .image-description__container {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container .image-description__container {
    width: 100%;
  }
}
.wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container .image-description__container .image img {
  display: block;
  width: 100%;
  border-radius: 8px;
}
.wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container .image-description__container .description {
  margin: 0;
  margin-top: 40px;
  font-size: 26px;
  color: #000000;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  max-width: 460px;
}
@media (max-width: 991px) {
  .wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container .image-description__container .description {
    max-width: 85%;
    margin: 40px auto 0px;
  }
}
@media (max-width: 767px) {
  .wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container .image-description__container .description {
    max-width: 100%;
  }
}
.wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container .content__container {
  width: 55%;
}
@media (max-width: 991px) {
  .wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container .content__container {
    width: 85%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container .content__container {
    width: 100%;
  }
}
.wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container .content__container .content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container .content__container .content p {
  margin: 0;
  font-size: 18px;
  color: #000000;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.7;
}
.wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container .content__container .section-cta {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container .content__container .section-cta {
    margin-top: 50px;
  }
}
.wps-homepage_meet_the_doctor__wrapper .wps-homepage_meet_the_doctor__container .image-content__container .content__container .section-cta a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(45deg, #5672B9, #7DBAE1, #BDD85D) border-box;
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 10px 20px;
  height: 60px;
  min-width: 260px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  margin: 0;
}

.wps-homepage-testimonial-slider__wrapper {
  padding: 200px 0 0px;
}
@media (max-width: 1199px) {
  .wps-homepage-testimonial-slider__wrapper {
    padding: 180px 0 0px;
  }
}
@media (max-width: 991px) {
  .wps-homepage-testimonial-slider__wrapper {
    padding: 150px 0 0px;
  }
}
@media (max-width: 767px) {
  .wps-homepage-testimonial-slider__wrapper {
    padding: 120px 0 0px;
  }
}
.wps-homepage-testimonial-slider__wrapper .wps-homepage-testimonials-section__container {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(45deg, #5672B9, #7DBAE1, #BDD85D) border-box;
  border-bottom: 2px solid transparent;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .wps-homepage-testimonial-slider__wrapper .wps-homepage-testimonials-section__container {
    padding-bottom: 80px;
  }
}
.wps-homepage-testimonial-slider__wrapper .header__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.wps-homepage-testimonial-slider__wrapper .header__container .title {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  text-align: center;
}
.wps-homepage-testimonial-slider__wrapper .header__container .title i {
  font-family: "Ivy Mode";
  font-weight: 400;
}
.wps-homepage-testimonial-slider__wrapper .testimonials__container {
  margin-top: 85px;
}
.wps-homepage-testimonial-slider__wrapper .testimonials__container .swiper-wrapper {
  width: 100%;
  cursor: grab;
}
.wps-homepage-testimonial-slider__wrapper .testimonials__container .swiper-wrapper .testimonial-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.wps-homepage-testimonial-slider__wrapper .testimonials__container .swiper-wrapper .testimonial-item .rating-icon img {
  display: block;
  width: 100%;
}
.wps-homepage-testimonial-slider__wrapper .testimonials__container .swiper-wrapper .testimonial-item .testimonial-title {
  font-weight: 400;
  font-family: "Ivy Mode";
  font-style: italic;
  font-size: 36px;
  line-height: 1.38;
  color: #0047AB;
  margin: 20px 0px 25px;
}
.wps-homepage-testimonial-slider__wrapper .testimonials__container .swiper-wrapper .testimonial-item .testimonial-content {
  max-width: 440px;
  margin: 0 auto;
}
.wps-homepage-testimonial-slider__wrapper .testimonials__container .swiper-wrapper .testimonial-item .testimonial-content p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400px;
  line-height: 1.5;
  color: #000000;
}
.wps-homepage-testimonial-slider__wrapper .testimonials__container .swiper-wrapper .testimonial-item .author-details {
  margin-top: 50px;
}
.wps-homepage-testimonial-slider__wrapper .testimonials__container .swiper-wrapper .testimonial-item .author-details .author-name, .wps-homepage-testimonial-slider__wrapper .testimonials__container .swiper-wrapper .testimonial-item .author-details .author-credit {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600px;
  line-height: 1;
  color: #000000;
}
.wps-homepage-testimonial-slider__wrapper .testimonials__container .swiper-wrapper .testimonial-item .author-details .author-credit {
  font-weight: 300px;
  text-transform: uppercase;
  margin-top: 20px;
}

.wps-homepage_smile-gallery__comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--smile-gallery-position, 50%);
  z-index: 3;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}
.wps-homepage_smile-gallery__comparison-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55px;
  height: 55px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
}
.wps-homepage_smile-gallery__comparison-handle span::before, .wps-homepage_smile-gallery__comparison-handle span::after {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
}
.wps-homepage_smile-gallery__comparison-handle span::before {
  left: 12px;
  transform: translateY(-50%) rotate(-45deg);
}
.wps-homepage_smile-gallery__comparison-handle span::after {
  right: 12px;
  transform: translateY(-50%) rotate(135deg);
}
.wps-homepage_smile-gallery__comparison-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: col-resize;
}

.wps-homepage_smile-gallery__wrapper {
  position: relative;
  padding-top: 180px;
}
@media (max-width: 1199px) {
  .wps-homepage_smile-gallery__wrapper {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .wps-homepage_smile-gallery__wrapper {
    padding-top: 120px;
  }
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container {
  max-width: 1400px;
  margin: 0 auto;
  width: 85%;
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1199px) {
  .wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container {
    gap: 40px;
  }
}
@media (max-width: 1089px) {
  .wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }
}
@media (max-width: 767px) {
  .wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container {
    width: 90%;
  }
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .link {
  font-size: 15px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #0047AB;
  line-height: 1.3;
  margin: 40px 0px 0px;
  display: inline-block;
  text-transform: uppercase;
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .link.link-sm {
  display: none;
}
@media (max-width: 1089px) {
  .wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .link.link-sm {
    display: inline-block;
    width: 80%;
    margin: 45px auto 0px;
  }
}
@media (max-width: 767px) {
  .wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .link.link-sm {
    width: 100%;
  }
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .link.link-lg {
  display: inline-block;
}
@media (max-width: 1089px) {
  .wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .link.link-lg {
    display: none;
  }
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery-content__container {
  width: 55%;
}
@media (max-width: 1399px) {
  .wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery-content__container {
    width: 45%;
  }
}
@media (max-width: 1089px) {
  .wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery-content__container {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery-content__container {
    width: 100%;
  }
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery-content__container .small-title {
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #000000;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery-content__container .title {
  font-size: clamp(60px, 6vw, 120px);
  line-height: 1.1;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #000000;
  margin: 15px 0px 30px;
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery-content__container .title i {
  font-family: "Ivy Mode";
  font-weight: 400;
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery-content__container .content p {
  font-size: 26px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
  margin: 0;
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container {
  width: 45%;
}
@media (max-width: 1399px) {
  .wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container {
    width: 55%;
  }
}
@media (max-width: 1089px) {
  .wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container {
    width: 80%;
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container {
    width: 100%;
    margin-top: 60px;
  }
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-slides {
  overflow: hidden;
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-slides .smile-gallery-slide[hidden] {
  display: none;
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-slides .smile-gallery-slide.is-entering {
  animation: smile-gallery-slide-in 0.42s ease both;
}
@keyframes smile-gallery-slide-in {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-slides .smile-gallery-slide .smile-gallery-comparison {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-slides .smile-gallery-slide .smile-gallery-comparison .comparison-image {
  position: absolute;
  inset: 0;
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-slides .smile-gallery-slide .smile-gallery-comparison .comparison-image.comparison-image-after {
  z-index: 1;
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-slides .smile-gallery-slide .smile-gallery-comparison .comparison-image.comparison-image-before {
  z-index: 2;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--smile-gallery-position, 50%)) 0 0);
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-slides .smile-gallery-slide .smile-gallery-comparison .comparison-image .image-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  border-radius: 5.5px;
  padding: 13px 23px;
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  display: inline-block;
  line-height: 1;
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-slides .smile-gallery-slide .smile-gallery-comparison .comparison-image .image-label.image-label-after {
  left: calc(100% - 10px);
  transform: translateX(-100%);
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-slides .smile-gallery-slide .image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-tabs {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-tabs {
    margin-top: 0px;
  }
}
@media (max-width: 575px) {
  .wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-tabs {
    max-width: 100%;
  }
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-tabs .smile-gallery-tab {
  all: unset;
  cursor: pointer;
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-tabs .smile-gallery-tab.is-active p, .wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-tabs .smile-gallery-tab:hover p, .wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-tabs .smile-gallery-tab:focus-visible p {
  border-color: #0047AB;
}
.wps-homepage_smile-gallery__wrapper .wps-homepage_smile-gallery__container .smile-gallery__container .smile-gallery-tabs .smile-gallery-tab p {
  font-size: 18px;
  line-height: 1.4;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #0047AB;
  border-bottom: 2px solid transparent;
  margin: 0;
  padding-bottom: 5px;
  transition: border 200ms ease;
}

.wps-accreditation-logo__wrapper {
  position: relative;
}
.wps-accreditation-logo__wrapper .wps-accreditation-logo__container {
  max-width: 950px;
  margin: 0 auto;
  width: 85%;
}
@media (max-width: 767px) {
  .wps-accreditation-logo__wrapper .wps-accreditation-logo__container {
    width: 90%;
  }
}
.wps-accreditation-logo__wrapper .wps-accreditation-logo__container .accreditation-logos__container {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.wps-accreditation-logo__wrapper .wps-accreditation-logo__container .accreditation-logos__container .accreditation-logo .img {
  display: block;
}

.wps-homepage_meet_the_team__wrapper {
  position: relative;
  padding-top: 130px;
}
.wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container {
  max-width: 1400px;
  margin: 0 auto;
  width: 85%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container {
    width: 90%;
    flex-direction: column;
    gap: 25px;
  }
}
.wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container .heading__container {
  width: 50%;
}
@media (max-width: 767px) {
  .wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container .heading__container {
    width: 100%;
  }
}
.wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container .heading__container .title {
  padding: 0;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container .heading__container .title {
    max-width: 400px;
  }
}
.wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container .heading__container .title i {
  font-family: "Ivy Mode";
  font-weight: 400;
}
.wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container .heading__container .section-cta {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container .heading__container .section-cta {
    margin-top: 0px;
    display: none;
  }
}
.wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container .heading__container .section-cta a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(45deg, #5672B9, #7DBAE1, #BDD85D) border-box;
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 10px 20px;
  height: 60px;
  min-width: 260px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  margin: 0;
}
.wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container .content {
  width: 45%;
}
@media (max-width: 767px) {
  .wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container .content {
    width: 100%;
  }
}
.wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container .content .section-cta {
  display: none;
}
@media (max-width: 767px) {
  .wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container .content .section-cta {
    display: block;
  }
}
.wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container .content .section-cta a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(45deg, #5672B9, #7DBAE1, #BDD85D) border-box;
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 10px 20px;
  height: 60px;
  min-width: 260px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  margin: 0;
  margin-top: 40px;
}
.wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container .content .description {
  margin: 0;
  padding: 0;
  font-size: 26px;
  color: #000000;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .content__container .content .description {
    font-size: 20px;
  }
}
.wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .image__container {
  position: relative;
  overflow: hidden;
}
.wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .image__container::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 30%;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0.3) 45%, rgba(255, 255, 255, 0) 70%);
}
.wps-homepage_meet_the_team__wrapper .wps-homepage-meet-the-team__container .image__container img {
  display: block;
  width: 100%;
}

.wps-footer-instagram-content-section__wrapper {
  position: relative;
  padding: 130px 0px 0px;
}
.wps-footer-instagram-content-section__wrapper .image__container, .wps-footer-instagram-content-section__wrapper .image-content__container {
  position: relative;
  height: 100%;
}
.wps-footer-instagram-content-section__wrapper .image__container .image, .wps-footer-instagram-content-section__wrapper .image-content__container .image {
  width: 100%;
  height: 100%;
}
.wps-footer-instagram-content-section__wrapper .image__container .image img, .wps-footer-instagram-content-section__wrapper .image-content__container .image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.wps-footer-instagram-content-section__wrapper .image__container .small-title, .wps-footer-instagram-content-section__wrapper .image-content__container .small-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 80px 30px 30px;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  margin: 0;
}
@media (max-width: 767px) {
  .wps-footer-instagram-content-section__wrapper .image__container .small-title, .wps-footer-instagram-content-section__wrapper .image-content__container .small-title {
    padding: 80px 20px 30px;
  }
}
.wps-footer-instagram-content-section__wrapper .footer-instagram-content__container {
  max-width: 1400px;
  margin: 0 auto;
  width: 85%;
  display: flex;
  gap: 20px;
}
@media (max-width: 991px) {
  .wps-footer-instagram-content-section__wrapper .footer-instagram-content__container {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .wps-footer-instagram-content-section__wrapper .footer-instagram-content__container {
    width: 90%;
  }
}
.wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .left__container {
  width: 50%;
}
@media (max-width: 991px) {
  .wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .left__container {
    width: 100%;
  }
  .wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .left__container .image img {
    max-height: 550px;
  }
}
.wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 991px) {
  .wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container {
    flex-direction: row;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container .image__container {
    width: 40%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container .image__container {
    width: 100%;
  }
}
.wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container .bottom-image-content__container {
  display: flex;
  gap: 20px;
}
@media (max-width: 991px) {
  .wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container .bottom-image-content__container {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container .bottom-image-content__container {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container .bottom-image-content__container {
    flex-direction: column;
  }
}
.wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container .bottom-image-content__container .image-content__container {
  width: 50%;
}
@media (max-width: 767px) {
  .wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container .bottom-image-content__container .image-content__container {
    height: auto;
  }
}
@media (max-width: 575px) {
  .wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container .bottom-image-content__container .image-content__container {
    width: 100%;
  }
}
.wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container .bottom-image-content__container .instagram-content__container {
  width: 50%;
  background-color: #6FD0F0;
  border-radius: 8px;
}
@media (max-width: 575px) {
  .wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container .bottom-image-content__container .instagram-content__container {
    width: 100%;
  }
}
.wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container .bottom-image-content__container .instagram-content__container a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  margin: 0 auto;
  padding: 30px;
}
@media (max-width: 1199px) {
  .wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container .bottom-image-content__container .instagram-content__container a {
    padding: 30px 20px;
  }
}
.wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container .bottom-image-content__container .instagram-content__container a .instagram-icon img {
  width: 40px;
  height: 40px;
  display: block;
}
.wps-footer-instagram-content-section__wrapper .footer-instagram-content__container .right__container .bottom-image-content__container .instagram-content__container a .small-title {
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  margin: 40px 0px 20px;
}
.wps-footer-content-section__wrapper {
  position: relative;
  padding: 160px 0px 180px;
}
@media (max-width: 1199px) {
  .wps-footer-content-section__wrapper {
    padding: 120px 0px 140px;
  }
}
@media (max-width: 767px) {
  .wps-footer-content-section__wrapper {
    padding: 100px 0px;
  }
}
.wps-footer-content-section__wrapper .footer-content__container {
  max-width: 1400px;
  margin: 0 auto;
  width: 85%;
  display: flex;
  gap: 8%;
  align-items: center;
}
@media (max-width: 1399px) {
  .wps-footer-content-section__wrapper .footer-content__container {
    gap: 5%;
  }
}
@media (max-width: 1199px) {
  .wps-footer-content-section__wrapper .footer-content__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .wps-footer-content-section__wrapper .footer-content__container {
    width: 90%;
    gap: 40px;
  }
}
.wps-footer-content-section__wrapper .footer-content__container .content {
  max-width: 660px;
}
@media (max-width: 1199px) {
  .wps-footer-content-section__wrapper .footer-content__container .content {
    max-width: 90%;
  }
}
@media (max-width: 991px) {
  .wps-footer-content-section__wrapper .footer-content__container .content {
    max-width: 100%;
  }
}
.wps-footer-content-section__wrapper .footer-content__container .content .small-title {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 15px;
}
.wps-footer-content-section__wrapper .footer-content__container .content .featured-content {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .wps-footer-content-section__wrapper .footer-content__container .content .featured-content {
    font-size: 34px;
  }
}
.wps-footer-content-section__wrapper .footer-content__container .content .featured-content i {
  font-weight: 400;
  font-family: "Ivy Mode";
}
.wps-footer-content-section__wrapper .footer-content__container .description-content {
  max-width: 590px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .wps-footer-content-section__wrapper .footer-content__container .description-content {
    margin-left: 0;
    max-width: 90%;
  }
}
@media (max-width: 991px) {
  .wps-footer-content-section__wrapper .footer-content__container .description-content {
    max-width: 100%;
  }
}
.wps-footer-content-section__wrapper .footer-content__container .description-content p {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
}
/*# sourceMappingURL=main.css.map */
