/*-----------------------------------------------------------------------
  Fonts
-----------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700');
@import url('https://use.typekit.net/agq3mkz.css');

/*-----------------------------------------------------------------------
  Variables
-----------------------------------------------------------------------*/

:root {
   --admin-height: 32px;
   --header-height: 132px;
   --notice-height: 0px;

   --font-primary: 'helvetica-neue-lt-pro', sans-serif;
   --font-secondary: 'Cormorant Garamond', serif;

   --white: #ffffff;
   --white-rgb: 255, 255, 255;

   --grey: #aaaaaa;
   --grey-rgb: 170, 170, 170;

   --black: #000000;
   --black-rgb: 0, 0, 0;

   --red: #ff1414;
   --red-rgb: 255, 20, 20;

   --Copper-Dark: #6b6351;
   --Copper-Dark-rgb: 107, 99, 81;

   --cream-beige: #fbf2ea;
   --cream-beige-rgb: 251, 242, 234;

   --warm-brown: #b86f46;
   --warm-brown-rgb: 184, 111, 70;

   --beige-light: #e7d9cb;
   --beige-light-rgb: 231, 217, 203;

   --lavender-light: #fbecfe;
   --lavender-light-rgb: 251, 236, 254;

   --beige-gradient: linear-gradient(180deg, #fbf2ea 0%, #e5d2bf 100%);
   --lilac-gradient: linear-gradient(180deg, #fff 0%, #fbecfe 100%);

   --border-radius-sm: 5px;
   --border-radius-md: 15px;
   --border-radius-lg: 30px;

   --container-xs: 860px;
   --container-sm: 1250px;
   --container-md: 1540px;
   --container-lg: 1630px;

   --box-shadow: 0 0 5px rgba(var(--black-rgb), 10%);

   --transition: 0.25s ease;
}

/* Responsive */

@media (max-width: 782px) {
   :root {
      --admin-height: 46px;
   }
}
@media (max-width: 1400px) {
   :root {
      --header-height: 114px;
   }
}
@media (max-width: 1199px) {
   :root {
      --header-height: 91px;
   }
}
@media (max-width: 991px) {
   :root {
      --header-height: 89px;
   }
}

/*-----------------------------------------------------------------------
	Base
-----------------------------------------------------------------------*/

.breastcare-theme *,
.breastcare-theme *:before,
.breastcare-theme *:after {
   box-sizing: border-box;
}

.breastcare-theme * {
   scroll-margin-top: calc(var(--header-height) + var(--admin-height));
}

body.breastcare-theme,
.editor-styles-wrapper {
   font-optical-sizing: auto;
   -webkit-text-size-adjust: none;
   -webkit-font-smoothing: antialiased;
   font-family: var(--font-primary) !important;
   font-size: 19px !important;
   color: var(--Copper-Dark);
   line-height: 25px;
   font-weight: 400;
   margin: 0px;
}

body.breastcare-theme,
.editor-styles-wrapper,
.site-responsive-menu,
.site-main {
   background-color: var(--cream-beige);
}

.site-main {
   position: relative;
   transition: var(--transition) all;
   z-index: 1;
}
@media (max-width: 767px) {
   body.breastcare-theme,
   .editor-styles-wrappe {
      font-size: 17px !important;
   }
}
/*-----------------------------------------------------------------------
  Admin Bar
-----------------------------------------------------------------------*/

body.breastcare-theme {
   padding-top: calc(var(--header-height) + var(--notice-height)) !important;
}

body.breastcare-theme.admin-bar {
   padding-top: calc(var(--header-height) + var(--notice-height) + var(--admin-height)) !important;
}

#wpadminbar {
   position: fixed;
   z-index: 20000000000000001;
   top: 0;
}

#wpadminbar ul li.admin-bar-search {
   display: none !important;
}
body.breastcare-theme.home {
   padding-top: 0px !important;
}
/*-----------------------------------------------------------------------
	Layouts
-----------------------------------------------------------------------*/

.breastcare-theme *[class*='container-'],
.breastcare-theme *[class*='section-'],
.breastcare-theme *[class*='block-'],
.breastcare-theme *[class*='item-'],
.breastcare-theme .relative {
   position: relative;
}

.breastcare-theme .absolute {
   position: absolute;
}

/* Flex Layout */

.breastcare-theme .flex-layout,
.breastcare-theme .flex-align-start,
.breastcare-theme .flex-align-center,
.breastcare-theme .flex-align-end,
.breastcare-theme .flex-justify-start,
.breastcare-theme .flex-justify-center,
.breastcare-theme .flex-justify-end,
.breastcare-theme .flex-justify-between {
   display: flex;
   flex-wrap: wrap;
}

.breastcare-theme .flex-align-start {
   align-items: flex-start;
}

.breastcare-theme .flex-align-center {
   align-items: center;
}

.breastcare-theme .flex-align-end {
   align-items: flex-end;
}

.breastcare-theme .flex-justify-start {
   justify-content: flex-start;
}

.breastcare-theme .flex-justify-center {
   justify-content: center;
}

.breastcare-theme .flex-justify-end {
   justify-content: flex-end;
}

.breastcare-theme .flex-justify-between {
   justify-content: space-between;
}

.breastcare-theme .flex-row-reverse {
   flex-direction: row-reverse;
}

.breastcare-theme .flex-column-reverse {
   flex-direction: column-reverse;
}

.breastcare-theme .flex-nowrap {
   flex-wrap: nowrap;
}

.breastcare-theme .flex-gap {
   gap: 15px;
}

/* Containers */

.breastcare-theme .container,
.breastcare-theme .container-xl,
.breastcare-theme .container-lg,
.breastcare-theme .container-md,
.breastcare-theme .container-sm,
.breastcare-theme .container-xs {
   z-index: 99;
   margin: auto;
   padding: 0px 20px;
}

.breastcare-theme .container,
.breastcare-theme .container-xl {
   width: 100%;
}

.breastcare-theme .container-lg {
   max-width: var(--container-lg);
}

.breastcare-theme .container-md {
   max-width: var(--container-md);
}

.breastcare-theme .container-sm {
   max-width: var(--container-sm);
}

.breastcare-theme .container-xs {
   max-width: var(--container-xs);
}

/* Padding */

.breastcare-theme .padding-lg,
.breastcare-theme .padding-lg-top {
   padding-top: 80px;
}

.breastcare-theme .padding-lg,
.breastcare-theme .padding-lg-bot {
   padding-bottom: 80px;
}

.breastcare-theme .padding-md,
.breastcare-theme .padding-md-top {
   padding-top: 40px;
}

.breastcare-theme .padding-md,
.breastcare-theme .padding-md-bot {
   padding-bottom: 40px;
}

.breastcare-theme .padding-sm,
.breastcare-theme .padding-sm-top {
   padding-top: 20px;
}

.breastcare-theme .padding-sm,
.breastcare-theme .padding-sm-bot {
   padding-bottom: 20px;
}

/* Grid Layout */

.breastcare-theme .grid-col-1,
.breastcare-theme .grid-col-2,
.breastcare-theme .grid-col-3,
.breastcare-theme .grid-col-4,
.breastcare-theme .grid-col-5,
.breastcare-theme .grid-col-6 {
   display: grid;
   gap: 20px;
}

.breastcare-theme .grid-col-2 {
   gap: 80px;
}

.breastcare-theme .grid-col-2 {
   grid-template-columns: repeat(2, 1fr);
}

.breastcare-theme .grid-col-3 {
   grid-template-columns: repeat(3, 1fr);
}

.breastcare-theme .grid-col-4 {
   grid-template-columns: repeat(4, 1fr);
}

.breastcare-theme .grid-col-5 {
   grid-template-columns: repeat(5, 1fr);
}

.breastcare-theme .grid-col-6 {
   grid-template-columns: repeat(6, 1fr);
}

/* Visibility */

.breastcare-theme .desktop-only {
   display: block;
}

.breastcare-theme .mobile-only {
   display: none;
}

/* Block Settings */

.breastcare-theme .block-setting-padding {
   padding-top: var(--block-padding-top);
   padding-bottom: var(--block-padding-bottom);
}

.breastcare-theme .block-setting-background-colour {
   background: var(--block-background-colour);
}

/* Responsive */

@media (min-width: 992px) {
   .breastcare-theme .grid-col-2.sidebar-left {
      grid-template-columns: 1fr 1.75fr;
   }

   .breastcare-theme .grid-col-2.sidebar-right {
      grid-template-columns: 1.75fr 1fr;
   }
}

@media (max-width: 1200px) {
   .breastcare-theme .grid-col-5 {
      grid-template-columns: repeat(3, 1fr);
   }

   .breastcare-theme .grid-col-6 {
      grid-template-columns: repeat(4, 1fr);
   }
}

@media (max-width: 991px) {
   .breastcare-theme .padding-lg,
   .breastcare-theme .padding-lg-top {
      padding-top: 40px;
   }

   .breastcare-theme .padding-lg,
   .breastcare-theme .padding-lg-bot {
      padding-bottom: 40px;
   }

   .breastcare-theme .grid-col-2 {
      gap: 40px;
   }

   .breastcare-theme .grid-col-2 {
      grid-template-columns: repeat(1, 1fr);
   }

   .breastcare-theme .grid-col-3,
   .breastcare-theme .grid-col-4 {
      grid-template-columns: repeat(2, 1fr);
   }

   .breastcare-theme .grid-col-5,
   .breastcare-theme .grid-col-6 {
      grid-template-columns: repeat(3, 1fr);
   }

   .breastcare-theme .block-setting-padding {
      padding-top: calc(var(--block-padding-top) / 2);
      padding-bottom: calc(var(--block-padding-bottom) / 2);
   }
}

@media (max-width: 767px) {
   .breastcare-theme .grid-col-4,
   .breastcare-theme .grid-col-5 {
      grid-template-columns: repeat(2, 1fr);
   }

   .breastcare-theme .desktop-only {
      display: none;
   }

   .breastcare-theme .mobile-only {
      display: block;
   }
}

@media (max-width: 550px) {
   .breastcare-theme .grid-col-3,
   .breastcare-theme .grid-col-4 {
      grid-template-columns: repeat(1, 1fr);
   }

   .breastcare-theme .grid-col-6 {
      grid-template-columns: repeat(2, 1fr);
   }
}

/*-----------------------------------------------------------------------
	Background Colours
-----------------------------------------------------------------------*/

.breastcare-theme .background-white {
   background: var(--white);
}

.breastcare-theme .background-black {
   background: var(--black);
}

/*-----------------------------------------------------------------------
	Typography
-----------------------------------------------------------------------*/

.breastcare-theme h1,
.breastcare-theme h1 *,
.breastcare-theme .h1,
.breastcare-theme .h1 *,
.breastcare-theme h2,
.breastcare-theme h2 *,
.breastcare-theme .h2,
.breastcare-theme .h2 *,
.breastcare-theme h3,
.breastcare-theme h3 *,
.breastcare-theme .h3,
.breastcare-theme .h3 *,
.breastcare-theme h4,
.breastcare-theme h4 *,
.breastcare-theme .h4,
.breastcare-theme .h4 *,
.breastcare-theme h5,
.breastcare-theme h5 *,
.breastcare-theme .h5,
.breastcare-theme .h5 *,
.breastcare-theme h6,
.breastcare-theme h6 *,
.breastcare-theme .h6,
.breastcare-theme .h6 * {
   margin: 0;
   padding: 0;
   color: var(--Copper-Dark);
   font-weight: 400;
   text-wrap: wrap;
   word-wrap: break-word;
   font-family: var(--font-secondary);
}

.breastcare-theme h1,
.breastcare-theme h1 *,
.breastcare-theme .h1,
.breastcare-theme .h1 * {
   font-size: 88px;
   line-height: 98px;
   font-weight: 600;
}

.breastcare-theme h2,
.breastcare-theme h2 *,
.breastcare-theme .h2,
.breastcare-theme .h2 * {
   font-size: 60px;
   line-height: 70px;
   font-weight: 500;
}

.breastcare-theme h3,
.breastcare-theme h3 *,
.breastcare-theme .h3,
.breastcare-theme .h3 * {
   font-size: 38px;
   line-height: normal;
}

.breastcare-theme h4,
.breastcare-theme h4 *,
.breastcare-theme .h4,
.breastcare-theme .h4 * {
   font-size: 28px;
   line-height: normal;
   font-family: var(--font-primary);
}

.breastcare-theme h5,
.breastcare-theme h5 *,
.breastcare-theme .h5,
.breastcare-theme .h5 * {
   font-size: 20px;
   line-height: normal;
   font-family: var(--font-primary);
}

.breastcare-theme h6,
.breastcare-theme h6 *,
.breastcare-theme .h6,
.breastcare-theme .h6 * {
   font-size: 17px;
   font-weight: 400;
   line-height: 24px;
   text-transform: uppercase;
   position: relative;
   margin-bottom: 29px;
   font-family: var(--font-primary);
}
.breastcare-theme h6:before {
   content: '';
   width: 9px;
   height: 9px;
   background-color: var(--warm-brown);
   border-radius: 50%;
   display: inline-block;
   margin-right: 10px;
   transform: translate(0px, -1px);
}

.breastcare-theme ul,
.breastcare-theme ol,
.breastcare-theme li {
   margin: 0;
   padding: 0;
   list-style: none;
}

.breastcare-theme a {
   text-underline-offset: 3px !important;
   text-decoration-thickness: 1px !important;
   transition: var(--transition);
   color: var(--Copper-Dark);
}

.breastcare-theme a:hover,
.breastcare-theme a:focus {
   color: var(--warm-brown);
}

.breastcare-theme strong,
.breastcare-theme strong * {
   font-weight: 500 !important;
}

.breastcare-theme code {
   padding: 10px;
   font-size: 14px;
   color: var(--white);
   background: var(--black);
}

.breastcare-theme mark {
   background: none;
}

.breastcare-theme hr {
   width: 100%;
   border: 0;
   border-top: 1px solid var(--grey);
}

/* Responsive */

@media (max-width: 991px) {
   .breastcare-theme h1,
   .breastcare-theme h1 *,
   .breastcare-theme .h1,
   .breastcare-theme .h1 * {
      font-size: 60px;
      line-height: 66px;
   }
   .breastcare-theme h2,
   .breastcare-theme h2 *,
   .breastcare-theme .h2,
   .breastcare-theme .h2 * {
      font-size: 50px;
      line-height: 60px;
   }
}

@media (max-width: 767px) {
   .breastcare-theme h2,
   .breastcare-theme h2 *,
   .breastcare-theme .h2,
   .breastcare-theme .h2 * {
      font-size: 45px;
      line-height: 53px;
   }
   .breastcare-theme h3,
   .breastcare-theme h3 *,
   .breastcare-theme .h3,
   .breastcare-theme .h3 * {
      font-size: 32px;
      line-height: normal;
   }
   .breastcare-theme h4,
   .breastcare-theme h4 *,
   .breastcare-theme .h4,
   .breastcare-theme .h4 * {
      font-size: 24px;
      line-height: normal;
   }
   .breastcare-theme h6,
   .breastcare-theme h6 *,
   .breastcare-theme .h6,
   .breastcare-theme .h6 * {
      font-size: 15px;
      line-height: 24px;
   }
}

/*-----------------------------------------------------------------------
	Content Styling
-----------------------------------------------------------------------*/

/* Sizes */

.breastcare-theme .text-small,
.breastcare-theme .text-small * {
   font-size: 14px !important;
}

.breastcare-theme .text-sub,
.breastcare-theme .text-sub * {
   font-size: 12px !important;
}

/* Alignment */

.breastcare-theme .text-left {
   text-align: left;
}

.breastcare-theme .text-center {
   text-align: center;
}

.breastcare-theme .text-right {
   text-align: right;
}

/* Colours */

.breastcare-theme .text-muted {
   opacity: 50%;
}

.breastcare-theme .text-white,
.breastcare-theme .text-white *:not(.button, button, .button *, button *, [class*='text-'], [style*='color-']) {
   color: var(--white) !important;
   border-color: var(--white);
}

/*-----------------------------------------------------------------------
	WYSIWYG Content
-----------------------------------------------------------------------*/

.wysiwyg-content {
   width: 100%;
   position: relative;
   z-index: 99;
}

.wysiwyg-content h1:not(:last-child),
.wysiwyg-content h2:not(:last-child),
.wysiwyg-content h3:not(:last-child),
.wysiwyg-content h4:not(:last-child),
.wysiwyg-content h5:not(:last-child),
.wysiwyg-content h6:not(:last-child),
.wysiwyg-content ul:not(:last-child),
.wysiwyg-content ol:not(:last-child),
.wysiwyg-content p:not(:last-child),
.wysiwyg-content img:not(:last-child),
.wysiwyg-content table:not(:last-child),
.wysiwyg-content code:not(:last-child),
.wysiwyg-content blockquote:not(:last-child) {
   margin: 0 0 20px !important;
}

.wysiwyg-content li:not(:last-child) {
   margin: 0 0 10px !important;
}

/* Lists */

.wysiwyg-content ul,
.wysiwyg-content ol {
   display: inline-block;
}

.wysiwyg-content li {
   position: relative;
   text-align: left;
   padding: 0 0 0 20px;
}

.wysiwyg-content li:not(:last-child) {
   margin: 0 0 5px !important;
}

.wysiwyg-content ul li:before {
   content: '';
   display: block;
   position: absolute;
   top: 10px;
   left: 3px;
   width: 5px;
   height: 5px;
   border-radius: 50px;
   background: var(--Copper-Dark);
}

.wysiwyg-content ol {
   counter-reset: item;
   list-style-position: outside;
}

.wysiwyg-content ol li:before {
   content: counter(item) '. ';
   counter-increment: item;
   display: block;
   position: absolute;
   top: 0;
   left: 0;
}

/* Blockquote */

.wysiwyg-content blockquote {
   margin-left: 0;
   margin-right: 0;
   padding: 20px 0 20px 20px;
   border-left: 1px solid var(--black);
}

/* Links */

.wysiwyg-content h5 a,
.wysiwyg-content p a,
.wysiwyg-content li a,
.wysiwyg-content span a {
   text-decoration: underline;
}

/* Hr */

.wysiwyg-content hr {
   margin: 30px 0;
}

/* Images */

.wysiwyg-content img {
   display: block;
   max-width: 100% !important;
   height: auto !important;
}

.wysiwyg-content img:not(:first-child) {
   margin-top: 40px !important;
}

.wysiwyg-content img:not(:last-child) {
   margin-bottom: 40px !important;
}

.wysiwyg-content img.aligncenter {
   margin-left: auto !important;
   margin-right: auto !important;
   float: none;
}

.wysiwyg-content img.alignleft {
   float: left;
}

.wysiwyg-content img.alignright {
   float: right;
}

.wysiwyg-content img.size-full {
   width: 100% !important;
}

/*-----------------------------------------------------------------------
	Global Forms
-----------------------------------------------------------------------*/

.breastcare-theme form,
.breastcare-theme form *:not(table, table *, button) {
   border: 0;
   padding: 0;
   margin: 0;
   outline: 0 !important;
   box-shadow: none !important;
   position: relative;
}

.breastcare-theme form *[disabled] {
   opacity: 50%;
   pointer-events: none;
}

/* Labels */

.breastcare-theme label,
.breastcare-theme legend,
.breastcare-theme form .ginput_preview,
.breastcare-theme form .gform-field-label,
.breastcare-theme form .gfield_description,
.breastcare-theme form .ginput_quantity_label,
.breastcare-theme form .gform_fileupload_rules,
.breastcare-theme form .gfield_password_strength {
   display: block !important;
   margin: 0 !important;
   padding: 0 !important;
   font-family: var(--font-primary);
   font-size: 17px !important;
   line-height: 24px !important;
   font-weight: 400 !important;
   margin: 5px 0 !important;
   text-transform: uppercase;
}

.breastcare-theme fieldset legend {
   font-size: 16px !important;
}

.breastcare-theme label a,
.breastcare-theme legend a {
   color: var(--black) !important;
   text-decoration: underline;
}

.breastcare-theme label .required,
.breastcare-theme form .gfield_label .gfield_required {
   color: var(--red);
   margin-left: 2px !important;
   text-decoration: none !important;
   display: none;
}
.breastcare-theme .gravity-theme .gform_confirmation_message {
   color: #008000;
}
/* Basic Fields */

.breastcare-theme input:not([class*='ui-'], [type='button'], [type='submit']),
.breastcare-theme select:not([class*='ui-']),
.breastcare-theme .select2-container .select2-selection,
.breastcare-theme textarea:not([class*='ui-']) {
   appearance: none;
   -webkit-appearance: none;
   display: block;
   width: 100% !important;
   height: auto !important;
   border: 0 !important;
   border-radius: 5px !important;
   background: #fff !important;
   padding: 19px 14px !important;
   color: rgba(var(--Copper-Dark-rgb), 70%) !important;
   font-size: 14px !important;
   line-height: 20px !important;
   font-weight: 400 !important;
   text-align: left !important;
   text-decoration: none !important;
   transition: none !important;
   resize: none;
}

.breastcare-theme textarea:not([class*='ui-']) {
   min-height: 100px;
   max-height: 200px;
}

.breastcare-theme input:not([class*='ui-'], [type='button'], [type='submit']):hover,
.breastcare-theme input:not([class*='ui-'], [type='button'], [type='submit']):focus,
.breastcare-theme select:not([class*='ui-']):hover,
.breastcare-theme select:not([class*='ui-']):focus,
.breastcare-theme textarea:not([class*='ui-']):hover,
.breastcare-theme textarea:not([class*='ui-']):focus {
   outline: 0 !important;
   box-shadow: none !important;
}

.breastcare-theme input:not([class*='ui-'])[disabled],
.breastcare-theme select:not([class*='ui-'])[disabled],
.breastcare-theme textarea:not([class*='ui-'])[disabled],
.breastcare-theme button:not([class*='ui-'])[disabled] {
   opacity: 50%;
   pointer-events: none;
}

.breastcare-theme input:not([class*='ui-']):-webkit-autofill,
.breastcare-theme input:not([class*='ui-']):-webkit-autofill:hover,
.breastcare-theme input:not([class*='ui-']):-webkit-autofill:focus,
.breastcare-theme input:not([class*='ui-']):-webkit-autofill:active,
.breastcare-theme textarea:not([class*='ui-']):-webkit-autofill,
.breastcare-theme textarea:not([class*='ui-']):-webkit-autofill:hover,
.breastcare-theme textarea:not([class*='ui-']):-webkit-autofill:focus,
.breastcare-theme textarea:not([class*='ui-']):-webkit-autofill:active {
   -webkit-box-shadow: 0 0 0 30px var(--white) inset !important;
   -webkit-text-fill-color: var(--black);
}

.breastcare-theme ::placeholder {
   color: rgba(var(--Copper-Dark-rgb), 70%);
}

/* Select */

.breastcare-theme select:not([class*='ui-'], [multiple='multiple']) {
   padding-right: 45px !important;
   background: url(../img/icon-chevron-down.svg) 50% no-repeat #fff !important ;
   background-size: 12px !important;
   background-position: center right 20px !important;
   cursor: pointer;
}

.breastcare-theme .select2,
.breastcare-theme .select2 * {
   margin: 0 !important;
   padding: 0 !important;
}

.breastcare-theme .select2-container .select2-selection {
   background: transparent url(../img/icon-chevron-down.svg) 50% no-repeat !important;
   background-size: 12px !important;
   background-position: center right 20px !important;
   cursor: pointer;
}

.breastcare-theme .select2-container .select2-selection,
.breastcare-theme .select2-container .select2-selection * {
   line-height: 20px !important;
}

.breastcare-theme .select2-selection__rendered,
.breastcare-theme .select2-selection__placeholder {
   color: var(--black) !important;
}

.breastcare-theme .select2-dropdown {
   top: 0;
   border-width: 1px !important;
   border-color: var(--black) !important;
   border-radius: 0 !important;
   background: var(--white);
}

.breastcare-theme .select2-dropdown .select2-search,
.breastcare-theme .select2-dropdown .select2-results__option {
   padding: 5px;
}

.breastcare-theme .select2-dropdown .select2-results__option.select2-results__option--highlighted {
   background: var(--black);
}

.breastcare-theme .select2-container .select2-selection__arrow {
   display: none;
}

/* Checkbox & Radio */

.breastcare-theme input[type='checkbox']:not([class*='ui-']),
.breastcare-theme input[type='radio']:not([class*='ui-']) {
   min-height: 25px !important;
   min-width: 25px !important;
   max-width: 25px !important;
   max-height: 25px !important;
   border-radius: 0 !important;
   border: 1px solid var(--black) !important;
   padding: 0 !important;
   background: var(--white);
   box-shadow: none !important;
   margin: 0 10px 0 0 !important;
   position: relative;
   display: inline-block;
   cursor: pointer;
   transition: none !important;
}

.breastcare-theme input[type='radio']:not([class*='ui-']) {
   border-radius: 25px !important;
}

.breastcare-theme input[type='checkbox']:not([class*='ui-']) + label,
.breastcare-theme input[type='radio']:not([class*='ui-']) + label {
   font-weight: 400 !important;
   font-size: 14px !important;
   font-family: var(--font-primary);
   letter-spacing: inherit;
   text-transform: none !important;
   margin: 0 !important;
}

.breastcare-theme input[type='checkbox']:not([class*='ui-']):checked {
   border-color: var(--black) !important;
   background: var(--black) url(../img/icon-checkbox.svg) 50% no-repeat !important;
   background-size: 16px !important;
}

.breastcare-theme input[type='radio']:not([class*='ui-']):checked {
   border: 6px solid var(--black) !important;
}

.breastcare-theme input[type='radio']:not([class*='ui-']):before,
.breastcare-theme input[type='checkbox']:not([class*='ui-']):before {
   display: none !important;
}

/*-----------------------------------------------------------------------
	Gravity Forms
-----------------------------------------------------------------------*/

.gform_wrapper .gform_body,
.gform_wrapper .gform_fields,
.gform_wrapper .gform_footer {
   margin: 0 !important;
}
.gform_wrapper.gravity-theme .gform_footer {
   padding-top: 30px !important;
}
.gform_wrapper .gform_fields {
   gap: 10px 20px !important;
}

.gform_wrapper .ginput_complex {
   gap: 0 !important;
}

.gform_wrapper .gform_required_legend,
.gform_wrapper .gfield .gfield_validation_message {
   display: none !important;
}
.gform_wrapper .gform_footer.before .button {
   padding: 17px 26px;
   line-height: normal !important;
   color: var(--white);
}
.gform_wrapper .gform_footer.before .button:hover {
   color: var(--Copper-Dark);
}

/* AJAX Spinner */

.gform_wrapper .gform_ajax_spinner,
.gform_wrapper .gform-loader {
   width: 12px !important;
   height: 12px !important;
   margin: 0 0 0 20px !important;
}

/* Labels */

.gform_wrapper .gfield_description,
.gform_wrapper .gfield_list_group_item:before,
.gform_wrapper .gfield_list .gform-field-label,
.gform_wrapper .gform-field-label--type-sub {
   font-size: 12px !important;
   font-weight: 400 !important;
   color: rgba(var(--black-rgb), 50%) !important;
   text-transform: none !important;
   letter-spacing: 0 !important;
}

.gform_wrapper .gform_title {
   font-size: 38px;
   font-weight: 700;
   margin-bottom: 30px;
}

/* Radio / Checkbox */

.gform_wrapper .gfield_checkbox .gchoice,
.gform_wrapper .gfield_radio .gchoice {
   margin: 10px 0 !important;
}

/* Date / Time */

.gform_wrapper .ginput_container_date,
.gform_wrapper .ginput_container_time {
   flex-basis: auto !important;
   max-width: 100% !important;
   flex: 1 !important;
}

.gform_wrapper .hour_minute_colon {
   line-height: 35px !important;
}

/* List */

.gform_wrapper .gfield_list .gfield_list_icons button {
   min-width: 16px !important;
   min-height: 16px !important;
   width: 16px !important;
   height: 16px !important;
}

/* File Upload */

.gform_wrapper .gform_drop_area {
   padding: 20px !important;
   border-radius: 0 !important;
   background: transparent !important;
   border: 1px dashed rgba(var(--black-rgb), 25%) !important;
}

.gform_wrapper .gform_drop_area:before {
   display: none !important;
}

.gform_wrapper .gform_drop_area .gform_button_select_files {
   margin: auto !important;
}

.gform_wrapper .gfield--type-fileupload .ginput_preview {
   font-size: 14px;
   display: flex !important;
   align-items: center;
   margin: 10px 0 0 !important;
}

.gform_wrapper .gfield--type-fileupload .ginput_preview * {
   margin: 0 5px 0 0 !important;
   order: 9;
}

.gform_wrapper .gfield--type-fileupload .ginput_preview .gfield_fileupload_progressbar {
   display: none;
}

.gform_wrapper .gform_delete_file,
.gform_wrapper .gform_delete_file * {
   padding: 0 !important;
   margin: 0 0 1px !important;
   min-width: 0 !important;
   box-shadow: none !important;
   font-size: 16px !important;
   line-height: 18px !important;
   color: var(--black) !important;
   order: 1 !important;
}

.gform_wrapper .gform_delete_file:hover * {
   color: var(--red) !important;
}

.gform_wrapper .gfield--type-fileupload .gform_fileupload_rules {
   padding-top: inherit !important;
}

/* Price / Product */

.gform_wrapper .ginput_product_price_wrapper {
   width: 100%;
   margin: 0 0 10px;
}

/* Consent */

.gform_wrapper .ginput_container_consent {
   display: flex;
}

/* Progress Bar */

.gform_wrapper .gf_progressbar_wrapper {
   margin: 0 0 30px;
}

.gform_wrapper .gf_progressbar,
.gform_wrapper .gf_progressbar_wrapper,
.gform_wrapper .gf_progressbar_percentage {
   border-radius: 20px !important;
}

.gform_wrapper .gf_progressbar {
   background: rgba(var(--black-rgb), 5%) !important;
}

.gform_wrapper .gf_progressbar_percentage {
   height: 16px !important;
   background: var(--grey) !important;
}

.gform_wrapper .gf_progressbar_title,
.gform_wrapper .gf_progressbar_percentage span {
   margin: 0 !important;
}

.gform_wrapper .gf_progressbar_title {
   font-size: 12px !important;
   font-weight: 400 !important;
}

.gform_wrapper .gf_progressbar_percentage span {
   padding: 0 5px !important;
   color: var(--black) !important;
   font-size: 10px !important;
   line-height: 15px !important;
   text-transform: uppercase !important;
}

/* Page Footer */

.gform_wrapper .gform_page_footer {
   display: flex;
   gap: 15px;
   align-items: center;
}

.gform_wrapper .gform_page_footer .button {
   margin: 0 !important;
}

.gform_wrapper .gform_page_footer .gform_previous_button:not(:hover, :focus),
.gform_wrapper .gform_page_footer .gform_next_button:not(:hover, :focus) {
   color: var(--black) !important;
}

/* Validation */

.gform_wrapper .gform_validation_errors {
   outline: 0 !important;
   border: 0 !important;
   border-radius: 0 !important;
   box-shadow: none !important;
   margin-bottom: 20px !important;
}

.gform_wrapper .gform_validation_errors * {
   color: var(--red) !important;
   font-family: var(--font-primary);
   font-weight: 400;
   letter-spacing: 0 !important;
}

.gform_wrapper .gfield_validation_message {
   background: transparent !important;
   border: 0 !important;
   padding: 0 !important;
}

/*-----------------------------------------------------------------------
	Filter Form
-----------------------------------------------------------------------*/

.breastcare-theme form.filter-form {
   width: fit-content !important;
   max-width: 100%;
}

.breastcare-theme *[id*='response'] {
   transition: var(--transition) all;
}

.breastcare-theme .filter-loading {
   opacity: 50%;
}

/*-----------------------------------------------------------------------
	Buttons
-----------------------------------------------------------------------*/

.breastcare-theme .button-group {
   display: flex;
   flex-wrap: wrap;
   gap: 15px;
}

.breastcare-theme .button svg {
   width: 14px;
   height: 14px;
   color: var(--black);
}

/* Default Styles */

.breastcare-theme button span,
.breastcare-theme .button span,
.breastcare-theme a.added_to_cart span {
   appearance: none;
   -webkit-appearance: none;
   position: relative;
   display: flex !important;
   align-items: center;
   justify-content: center;
   margin: 0;
   outline: 0;
   width: auto;
   height: auto;
   min-width: 100px;
   min-height: 0 !important;
   padding: 14px 26px !important;
   font-size: 16px !important;
   font-family: var(--font-primary);
   color: var(--white);
   font-weight: 500;
   line-height: normal !important;
   text-align: center;
   text-decoration: none !important;
   background: var(--Copper-Dark);
   border-radius: 40px !important;
   transition: var(--transition);
   cursor: pointer;
}
.breastcare-theme button,
.breastcare-theme .button,
.breastcare-theme a.added_to_cart {
   text-decoration: none;
   border: 1px solid var(--Copper-Dark);
   border-radius: 40px !important;
   transition: var(--transition);
   padding: 4px;
   background: var(--Copper-Dark);
}
.breastcare-theme butto:hover,
.breastcare-theme .button:hover,
.breastcare-theme a.added_to_cart:hover {
   background: transparent;
}
.breastcare-theme button:hover span,
.breastcare-theme .button:hover span,
.breastcare-theme a.added_to_cart:hover span {
   background-color: var(--cream-beige);
   color: var(--Copper-Dark);
}

/* Additional Styles */

.breastcare-theme .button.button-white {
   border-color: var(--white);
}

.breastcare-theme .button.button-white,
.breastcare-theme .button.button-white svg {
   color: var(--white);
}

/* Hover/Focus */

.breastcare-theme button:hover,
.breastcare-theme button:focus,
.breastcare-theme .button:hover,
.breastcare-theme .button:focus,
.breastcare-theme a.added_to_cart:hover,
.breastcare-theme a.added_to_cart:focus,
.breastcare-theme .form-submit *[type='submit']:hover,
.breastcare-theme .form-submit *[type='submit']:focus {
   outline: 0;
   box-shadow: none;
   border-color: var(--grey);
}

/* Responsive */

@media (max-width: 550px) {
   .breastcare-theme .button-group {
      width: 100%;
   }
}

/*-----------------------------------------------------------------------
  Site Notice
-----------------------------------------------------------------------*/

.site-notice {
   padding: 10px 0;
   background: var(--black);
   color: var(--white);
}

/*-----------------------------------------------------------------------
  Site Logo
-----------------------------------------------------------------------*/

.site-logo,
.site-logo img,
.site-logo svg {
   display: block;
   max-width: 371px;
   max-height: 100px;
   width: auto;
   height: auto;
   z-index: 20000;
   transition: none;
}

.site-logo svg path {
   fill: var(--warm-brown);
}

.site-footer .site-logo,
.site-footer .site-logo img,
.site-footer .site-logo svg {
   max-width: 333px;
   max-height: 93px;
}
.site-footer .site-logo svg path {
   fill: var(--warm-brown);
}
@media (max-width: 1400px) {
   .site-logo,
   .site-logo img,
   .site-logo svg {
      max-width: 300px;
   }
}
@media (max-width: 1199px) {
   .site-logo,
   .site-logo img,
   .site-logo svg {
      max-width: 207px;
   }
}

/*-----------------------------------------------------------------------
  Site Header
-----------------------------------------------------------------------*/

.site-header {
   top: 0;
   width: 100%;
   display: block;
   position: fixed;
   padding: 16px 0px;
   z-index: 2000000002;
   transition: var(--transition);
}
.fixed-header .site-header {
   background-color: var(--white);
   box-shadow: var(--box-shadow);
}
.fixed-header .site-header .main-menu {
   border: 1px solid var(--Copper-Dark);
   background-color: transparent;
}
body.breastcare-theme.admin-bar .site-header {
   top: var(--admin-height);
}
.fixed-header.menu-active .site-header {
   background-color: transparent;
   box-shadow: none;
}
/* .site-header > div[class*='container'] {
  height: var(--header-height);
} */

.site-header > .grid-col-3 {
   grid-template-columns: repeat(3, 1fr) !important;
}

/* Main Menu */

.breastcare-theme .main-menu ul li,
.breastcare-theme .main-menu ul li a {
   position: relative;
}
.breastcare-theme .main-menu ul li:hover a .trigger-sub-menu svg {
   transform: rotate(180deg);
}
.breastcare-theme .main-menu ul li a {
   padding: 7px 21px;
   display: block;
   transition: var(--transition) all;
   font-size: 17px;
   text-decoration: none;
   text-transform: uppercase;
   color: var(--Copper-Dark);
}
.breastcare-theme .main-menu > ul > li:hover > a {
   text-decoration: none;
   color: var(--warm-brown);
}
.breastcare-theme .main-menu > ul > li > a:hover {
   text-decoration: none;
}
.breastcare-theme .main-menu {
   background-color: var(--white);
   padding: 9px 23px;
   border-radius: 50px;
   transition: var(--transition);
   border: 1px solid transparent;
}
.site-header .header-right .button-group {
   margin-top: 0px;
}

.site-header .header-right .call_block a {
   width: 47px;
   height: 47px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   position: relative;
   background-color: var(--beige-light);
   transition: var(--transition);
}
.site-header .header-right .call_block a:hover {
   background-color: var(--Copper-Dark);
}
.site-header .header-right .call_block a:hover svg path {
   fill: var(--white);
}
.site-header .header-right .call_block a:after {
   content: '';
   position: absolute;
   width: 57px;
   height: 57px;
   border-radius: 50%;
   z-index: -1;
   top: -5px;
   left: -5px;
   border: 1px dashed var(--Copper-Dark);
   animation: rotateInfinite 9s linear infinite;
}
@keyframes rotateInfinite {
   from {
      transform: rotate(0deg);
   }
   to {
      transform: rotate(360deg);
   }
}
.breastcare-theme .main-menu ul > li.current-menu-item > a,
.breastcare-theme .main-menu ul > li.current-menu-parent > a {
   color: var(--warm-brown);
}

.site-header ul:not(.sub-menu) {
   display: flex;
   gap: 10px;
}

/* Sub Menu */

.breastcare-theme .site-header .trigger-sub-menu svg {
   width: 12px;
   height: 12px;
   margin-left: 6px;
}

.breastcare-theme .main-menu ul.sub-menu,
.breastcare-theme .main-menu ul.sub-menu li,
.breastcare-theme .main-menu ul.sub-menu li a {
   display: block;
}

.site-header ul.sub-menu {
   padding: 20px 29px;
   background: var(--white);
   box-shadow: var(--box-shadow);
   overflow: hidden;
   border-radius: 20px;
}
.breastcare-theme .main-menu ul.sub-menu li {
   margin-bottom: 10px;
}
.breastcare-theme .main-menu ul.sub-menu li:last-child {
   margin-bottom: 0px;
}
.breastcare-theme .main-menu ul.sub-menu li a {
   padding: 0px;
   text-transform: capitalize;
   font-size: 19px;
   line-height: normal;
}
.breastcare-theme .main-menu ul.sub-menu li a:hover {
   text-decoration: none;
   color: var(--warm-brown);
}
.site-header ul li .sub-menu-wrap {
   width: 250px;
   opacity: 0;
   display: block;
   position: absolute;
   top: 100%;
   left: 0%;
   right: inherit;
   margin: 0;
   background-color: var(--white);
   pointer-events: none;
   z-index: 20000;
   border-radius: 20px;
   overflow: hidden;
   transition: var(--transition);
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.site-header ul ul .sub-menu-wrap {
   padding: 0 0 0 8px;
   top: 0;
   right: auto;
   left: 100%;
   transform: translate(0);
}

.site-header ul li:hover > .sub-menu-wrap {
   opacity: 1;
   pointer-events: all;
}

/* Icon Menu */

.site-header *[class*='icon-'],
.site-header *[class*='icon-'] svg {
   display: block;
   width: 20px;
   height: 20px;
   color: var(--black);
   cursor: pointer;
}

.site-header .icon-cart {
   position: relative;
   width: 25px;
}

.site-header .icon-cart .cart-count {
   display: block;
   position: absolute;
   top: -5px;
   right: 0;
   font-size: 8px;
   width: 14px;
   line-height: 14px;
   border-radius: 14px;
   text-align: center;
   background: var(--black);
   color: var(--white);
}

/* Hamburger */

.site-header .icon-hamburger {
   width: 57px;
   height: 57px;
   align-items: center;
   justify-content: center;
   position: relative;
   cursor: pointer;
   border: 1px dashed var(--Copper-Dark);
   border-radius: 50%;
}

.site-header .icon-hamburger span,
.site-header .icon-hamburger span:before,
.site-header .icon-hamburger span:after {
   display: block;
   position: absolute;
   left: 0;
   width: 33px;
   height: 2px;
   background: var(--Copper-Dark);
   transition: background 0s 0.3s;
}

.site-header .icon-hamburger span {
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background-color: transparent;
}

.site-header .icon-hamburger span:before {
   content: '';
   top: -6px;
   transition-property: top, transform;
   transition-duration: 0.3s, 0.3s;
   transition-delay: 0.3s, 0s;
}

.site-header .icon-hamburger span:after {
   content: '';
   bottom: -6px;
   transition-property: bottom, transform;
   transition-duration: 0.3s, 0.3s;
   transition-delay: 0.3s, 0s;
}

body.breastcare-theme.menu-active .site-header .icon-hamburger span {
   background: none;
}

body.breastcare-theme.menu-active .site-header .icon-hamburger span:before {
   top: 0;
   transform: rotate(45deg);
   transition-delay: 0s, 0.3s;
}

body.breastcare-theme.menu-active .site-header .icon-hamburger span:after {
   bottom: 0;
   transform: rotate(-45deg);
   transition-delay: 0s, 0.3s;
}

/* Responsive Menu */

.site-responsive-menu {
   width: 100%;
   height: 100dvh;
   position: fixed;
   bottom: 0;
   right: 0;
   top: 0px;
   overflow-y: auto;
   z-index: 999;
   background-color: var(--cream-beige);
   padding-top: 160px;
   padding-bottom: 0px;
   transform: translateX(100%);
   transition: var(--transition);
}
.menu-active .site-responsive-menu {
   transform: none;
}
.site-responsive-menu .main-menu ul li .icon {
   display: inline-block;
   width: 24px;
   height: 24px;
   background-image: url(../img/icon-chevron-down.svg);
   background-repeat: no-repeat;
   background-position: center;
   transition: var(--transition);
   order: 0;
}
.site-responsive-menu .main-menu ul li .trigger-sub-menu {
   display: none;
}
.site-responsive-menu .main-menu > ul > li.menu-item-has-children.active .icon {
   transform: rotate(180deg);
}
.site-responsive-menu .main-menu {
   background-color: transparent;
   padding: 0px 20px;
   border: none;
}
.site-responsive-menu .container-xl {
   width: 100%;
   transition: var(--transition) all;
   height: 100%;
   overflow: auto;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   padding: 0px;
}

/* Responsive Menu: Menu */

.site-responsive-menu .main-menu ul {
   display: block;
}

.site-responsive-menu .main-menu ul li a,
.site-responsive-menu .button-group,
.site-responsive-menu .menu-search {
   padding: 20px;
}
.site-responsive-menu .main-menu > ul > li {
   text-align: center;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   flex-direction: row-reverse;
}
.site-responsive-menu .main-menu > ul > li > a {
   font-family: var(--font-secondary);
   text-align: center;
   font-size: 45px;
   font-style: normal;
   font-weight: 500;
   line-height: 53px;
   text-transform: capitalize;
   display: inline-block;
   text-align: center;
}

.site-responsive-menu .main-menu ul li .trigger-sub-menu {
   width: 20px;
}
.site-responsive-menu .main-menu ul li .trigger-sub-menu svg {
   height: 20px;
   width: 20px;
}
/* Responsive Menu: Sub Menu */

.site-responsive-menu .main-menu ul.sub-menu {
   padding-bottom: 10px;
}
.site-responsive-menu .main-menu ul.sub-menu li {
   margin-bottom: 15px;
   width: 100%;
}
.site-responsive-menu .main-menu ul.sub-menu li a {
   font-size: 24px;
   padding: 0 20px 5px;
   text-align: center;
   text-transform: capitalize;
}
.site-responsive-menu .main-menu .sub-menu-wrap {
   margin-top: 20px;
   width: 100%;
}

.site-responsive-menu .call_block a svg {
   position: absolute;
   left: 18px;
   z-index: 1;
}
.site-responsive-menu ul li.menu-item-has-children ul.sub-menu,
.site-responsive-menu ul li.menu-item-has-children .sub-menu-wrap {
   display: none;
}
.site-responsive-menu .call_block a {
   background: var(--white);
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   padding: 14px;
   border-radius: 50px;
   font-size: 24px;
   font-style: normal;
   font-weight: 400;
   line-height: normal;
   color: var(--Copper-Dark);
   text-decoration: none;
}
.site-responsive-menu .call_block a:after {
   content: '';
   position: absolute;
   width: 46px;
   height: 46px;
   border-radius: 50%;
   background-color: var(--beige-light);
   left: 6px;
   top: 6px;
}
.site-responsive-menu .call_block a:before {
   content: '';
   position: absolute;
   width: 57px;
   height: 57px;
   border-radius: 50%;
   left: 0px;
   border: 1px dashed var(--Copper-Dark);
}
.site-responsive-menu .bottom-menu .button-group {
   padding: 0px;
}
.site-responsive-menu .bottom-menu .button-group .button {
   width: 100%;
}
.site-responsive-menu .bottom-menu {
   padding: 45px 20px 90px;
   margin-top: 100px;
   border-top: 1px solid rgba(var(--Copper-Dark-rgb), 20%);
}
.site-responsive-menu ul li.menu-item-has-children.sub-menu-active > a > .trigger-sub-menu svg {
   transform: rotate(135deg);
}

.site-responsive-menu ul.sub-menu,
.site-responsive-menu ul.sub-menu li,
.site-responsive-menu ul.sub-menu li a,
.site-responsive-menu ul li.menu-item-has-children.sub-menu-active > .sub-menu-wrap {
   display: block !important;
}

/* Responsive */

@media (min-width: 992px) {
   .site-header .trigger-menu,
   .site-responsive-menu {
      display: none !important;
   }
}
@media (max-width: 1400px) {
   .breastcare-theme .main-menu ul li a {
      padding: 7px 13px;
   }
}
@media (max-width: 1199px) {
   .breastcare-theme .main-menu ul li a {
      padding: 7px 5px;
   }
   .breastcare-theme .main-menu {
      padding: 9px 10px;
   }
}
@media (max-width: 991px) {
   .site-header > .grid-col-3 {
      grid-template-columns: auto 1fr !important;
   }

   .site-header .main-menu,
   .site-header .header-right .button,
   .site-header .icon-search {
      display: none !important;
   }

   .site-header .trigger-menu {
      display: flex !important;
   }

   body.menu-active .site-main {
      transform: translateX(-100%);
   }

   .site-header .header-right .call_block a {
      display: none;
   }
   .site-header .header-right {
      gap: 0px;
   }
}

/*-----------------------------------------------------------------------
	Site Search
-----------------------------------------------------------------------*/

.site-search {
   background: var(--white);
   position: fixed;
   left: 0;
   right: 0;
   z-index: 200;
   display: none;
   top: calc(var(--header-height) + var(--notice-height));
   border-bottom: 1px solid var(--grey);
}

body.breastcare-theme.admin-bar .site-search {
   top: calc(var(--header-height) + var(--notice-height) + var(--admin-height));
}

.site-search *[class*='container-'] {
   padding: 20px 0;
}

.site-search .close-search {
   margin-left: 15px;
   cursor: pointer;
}

.site-search .close-search,
.site-search .close-search svg {
   display: block;
   width: 14px;
   height: 14px;
}

.breastcare-theme form.search-form {
   display: flex;
   gap: 15px;
}

.breastcare-theme form.search-form,
.breastcare-theme form.search-form > input {
   flex: 1;
}
.breastcare-theme.search-results .block-search-results .item-content {
   border: 1px solid var(--Copper-Dark);
   padding: 20px;
   transition: var(--transition);
}
.breastcare-theme.search-results .block-search-results .item-content:hover {
   background-color: var(--white);
}

/* Responsive */

@media (max-width: 920px) {
   .site-search {
      display: none !important;
   }
}

/*-----------------------------------------------------------------------
	Site Footer
-----------------------------------------------------------------------*/

.site-footer {
   background-color: var(--white);
   padding-top: 48px;
   position: relative;
}
.site-footer:before {
   content: '';
   position: absolute;
   background-image: url('../img/footer-bg.svg');
   background-repeat: no-repeat;
   background-position: top right;
   width: 463px;
   height: 387px;
   bottom: 0;
   left: 0;
}
.site-footer .footer-menu ul li {
   margin: 0px;
}
.site-footer .footer-menu ul li a {
   color: var(--Copper-Dark);
   font-size: 16px;
   font-weight: 500;
   line-height: 29px;
   text-decoration: none;
   display: inline-block;
}
.site-footer .footer-menu ul li a:hover,
.site-footer .footer-contact a:hover,
.site-footer .footer-copyright p a:hover {
   color: var(--warm-brown);
}
.site-footer .footer-copyright p:first-child a {
   text-decoration: none;
}
.site-footer .footer-contact a {
   color: var(--Copper-Dark);
   font-size: 16px;
   font-weight: 500;
   line-height: 29px;
   text-decoration: none;
   display: inline-block;
}
.site-footer .footer-contact p {
   max-width: 200px;
   font-size: 16px;
   font-weight: 500;
   line-height: 29px;
   margin-top: 0px;
   text-decoration: none;
}
.site-footer .footer-contact li {
   margin: 0px;
   font-weight: 500;
}
.site-footer .footer-menu span,
.site-footer .footer-contact span {
   color: var(--Copper-Dark);
   font-size: 17px;
   font-weight: 400;
   line-height: 24px;
   text-transform: uppercase;
   margin-bottom: 31px;
   display: block;
}
.site-footer .footer-contact .social a {
   display: flex;
   height: 64px;
   width: 64px;
   align-items: center;
   border: 1px dashed var(--Copper-Dark);
   justify-content: center;
   border-radius: 50%;
}
.site-footer .footer-contact .social a:hover {
   background-color: var(--beige-light);
}
.site-footer .footer-contact .social a img {
   width: 36px;
   height: 36px;
}
.site-footer .footer-contact .social ul {
   display: flex;
   gap: 16px;
}

.site-footer .footer-contact .social {
   margin-top: 30px;
}
.site-footer .footer-copyright {
   border-top: 1px solid var(--beige-light);
   margin-top: 76px;
   padding: 29px 0px;
}
.site-footer .footer-copyright p {
   margin: 0px;
}
.site-footer .footer-copyright p a {
   color: var(--Copper-Dark);
   text-decoration: underline;
}
.site-footer .footer-content {
   width: 500px;
}
.site-footer .footer-columns {
   gap: 70px;
}
/* Footer Menu */

.site-footer ul,
.site-footer ul li,
.site-footer ul li * {
   display: block;
}

.site-footer ul.sub-menu {
   display: none;
}

/* Responsive */
@media (max-width: 1400px) {
   .site-footer .footer-content {
      width: 390px;
   }
}
@media (max-width: 1199px) {
   .site-footer .footer-content {
      width: auto;
   }
   .site-footer .footer-columns {
      gap: 40px;
   }
   .site-footer .site-logo,
   .site-footer .site-logo img,
   .site-footer .site-logo svg {
      max-width: 280px;
   }
}
@media (max-width: 991px) {
   .site-footer .footer-contact p {
      margin-right: auto;
   }
   .site-footer .footer-menu span,
   .site-footer .footer-contact span {
      margin-bottom: 15px;
   }
}
@media (max-width: 767px) {
   .site-footer .footer-menu span,
   .site-footer .footer-contact span {
      font-size: 15px;
      line-height: 24px;
   }
   .site-footer .footer-menu ul li a {
      font-size: 15px;
      line-height: 23px;
   }
   .site-footer .site-logo,
   .site-footer .site-logo img,
   .site-footer .site-logo svg {
      margin: auto;
   }
   .site-footer .footer-columns {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
   }
   .site-footer .footer-content {
      width: 100%;
      margin-bottom: 58px;
   }
   .site-footer .footer-menu {
      width: 47%;
   }
   .site-footer .footer-contact {
      width: 100%;
      margin-top: 97px;
   }
   .site-footer .footer-contact p {
      font-size: 15px;
   }
   .site-footer .footer-contact .social ul {
      flex-direction: column;
   }
   .site-footer .footer-contact .social {
      margin-top: 0px;
   }
   .site-footer .footer-contact li,
   .site-footer .footer-contact li a {
      font-size: 15px;
      line-height: 29px;
   }
   .site-footer .footer-copyright p {
      text-align: center;
      margin: auto;
   }
   .site-footer .footer-menu ul li {
      margin: 0px 0px 10px 0px;
   }
}
@media (max-width: 576px) {
   .site-footer:before {
      width: 100%;
   }
}

/*-----------------------------------------------------------------------
	Site Breadcrumbs
-----------------------------------------------------------------------*/

.site-breadcrumbs .flex-layout {
   padding: 20px 0;
   gap: 10px;
}

.site-breadcrumbs a {
   transition: none;
}

.site-breadcrumbs a:hover,
.site-breadcrumbs a:focus {
   text-decoration: underline;
}

/*-----------------------------------------------------------------------
	Media
-----------------------------------------------------------------------*/

.breastcare-theme img {
   max-width: 100%;
   height: auto;
   display: block;
}

.breastcare-theme svg {
   transition: var(--transition) all;
}

/* Background Elements */

.breastcare-theme .background-image,
.breastcare-theme .background-video,
.breastcare-theme .background-overlay:before {
   position: absolute;
   top: 0;
   right: 0;
   left: 0;
   bottom: 0;
}

.breastcare-theme .background-image {
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
   z-index: 0;
}

.breastcare-theme .background-video,
.breastcare-theme .background-video video {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.breastcare-theme .background-overlay:before {
   content: '';
   background: rgba(0, 0, 0, 30%);
}

/* Video Embed */

.breastcare-theme .responsive-embed {
   position: relative;
   padding-bottom: 56.25%; /* 16:9 */
   height: 0;
   border-radius: var(--border-radius-md);
   overflow: hidden;
}

.breastcare-theme .responsive-embed iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

/*-----------------------------------------------------------------------
	Swiper
-----------------------------------------------------------------------*/
.breastcare-theme .swiper-container {
   overflow: hidden;
}
.breastcare-theme .swiper-carousel-wrap {
   min-width: 100%;
   overflow: hidden;
}
.breastcare-theme .swiper-pagination-bullet {
   background-color: var(--beige-light);
   width: 13px;
   height: 13px;
   transition: var(--transition);
   opacity: 1;
}
.breastcare-theme .swiper-pagination-bullet-active {
   width: 39px;
   background-color: var(--white);
   border-radius: 40px;
}
.breastcare-theme .swiper .swiper-slide {
   width: auto;
   height: auto;
}
.breastcare-theme .swiper-pagination {
   position: relative;
   margin-top: 88px;
}
/* .admin-bar .swiper-wrapper {
   z-index: -1;
}

.admin-bar .carousel-gallery.swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
   z-index: -1 !important;
} */

/* Pagination */

.breastcare-theme .swiper .swiper-pagination {
   position: relative;
   top: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-top: 30px;
}

.breastcare-theme .swiper .swiper-pagination span {
   opacity: 100%;
   margin: 0 3px;
   width: 4px;
   height: 4px;
   border-radius: 4px;
   background: var(--grey);
   transition: var(--transition) width, var(--transition) background;
}

.breastcare-theme .swiper .swiper-pagination span.swiper-pagination-bullet-active {
   width: 40px;
   background: var(--black);
}

/* Navigation */
.breastcare-theme .swiper-carousel-wrap .swiper-button-prev,
.breastcare-theme .swiper-carousel-wrap .swiper-button-next {
   width: 112px;
   height: 112px;
   border: 1px solid var(--white);
   border-radius: 50%;
   transition: var(--transition);
   top: 40%;
}
.breastcare-theme .swiper-carousel-wrap .swiper-button-prev:hover,
.breastcare-theme .swiper-carousel-wrap .swiper-button-next:hover {
   background-color: var(--warm-brown);
}
.breastcare-theme .swiper-carousel-wrap .swiper-button-prev svg,
.breastcare-theme .swiper-carousel-wrap .swiper-button-next svg {
   width: 39px;
}
.breastcare-theme .swiper-carousel-wrap .swiper-button-prev {
   left: 4%;
}
.breastcare-theme .swiper-carousel-wrap .swiper-button-next {
   transform: rotate(180deg);
   right: 4%;
}
.breastcare-theme .swiper-carousel-wrap .swiper-button-prev:after,
.breastcare-theme .swiper-carousel-wrap .swiper-button-next:after {
   font-size: 0px !important;
   color: transparent !important;
}

/* Responsive */

@media (max-width: 991px) {
   .breastcare-theme .swiper .swiper-pagination {
      margin-top: 15px;
   }
   .breastcare-theme .swiper-carousel-wrap .swiper-button-prev,
   .breastcare-theme .swiper-carousel-wrap .swiper-button-next {
      width: 80px;
      height: 80px;
   }
}

@media (max-width: 767px) {
   .breastcare-theme .swiper-carousel-wrap .swiper-button-prev,
   .breastcare-theme .swiper-carousel-wrap .swiper-button-next {
      width: 50px;
      height: 50px;
   }
   .breastcare-theme .swiper-carousel-wrap .swiper-button-prev svg,
   .breastcare-theme .swiper-carousel-wrap .swiper-button-next svg {
      width: 22px;
   }
}

/*-----------------------------------------------------------------------
	Tables
-----------------------------------------------------------------------*/

.breastcare-theme table {
   border-collapse: collapse;
   width: 100%;
}

.breastcare-theme table,
.breastcare-theme table tr,
.breastcare-theme table th,
.breastcare-theme table td {
   border-color: var(--grey);
}

.breastcare-theme table th,
.breastcare-theme table td {
   padding: 10px;
   text-align: left;
   border: 1px solid var(--grey);
}

.breastcare-theme table th {
   background: rgba(var(--black-rgb), 5%);
}

.breastcare-theme table th,
.breastcare-theme table th * {
   font-weight: 600;
}

.breastcare-theme table .button {
   width: fit-content !important;
   margin: 5px 5px 5px 0 !important;
}

/*-----------------------------------------------------------------------
	Social Icons
-----------------------------------------------------------------------*/

.breastcare-theme .social-icons {
   gap: 15px;
}

.breastcare-theme .social-icons a,
.breastcare-theme .social-icons svg {
   margin: 0;
   display: block;
}

.breastcare-theme .social-icons svg {
   width: 16px;
   height: 16px;
   color: var(--black);
}

/*-----------------------------------------------------------------------
	Clipboard Copy
-----------------------------------------------------------------------*/

.breastcare-theme .copy-to-clipboard {
   position: relative;
   cursor: pointer;
}

.breastcare-theme .copy-to-clipboard .tooltip {
   background: var(--black);
   padding: 5px 8px;
   border-radius: 4px;
   position: absolute;
   top: 0;
   left: 50%;
   width: auto;
   white-space: nowrap;
   color: var(--white);
   font-size: 11px;
   line-height: 1.2;
   text-align: center;
   opacity: 0;
   visibility: hidden;
   transform: translate(-50%, -140%);
   transition: 0.3s ease all;
}

.breastcare-theme .copy-to-clipboard .tooltip:after {
   content: '';
   position: absolute;
   top: 100%;
   left: 50%;
   margin-left: -5px;
   border-width: 5px;
   border-style: solid;
   border-color: var(--black) transparent transparent transparent;
}

.breastcare-theme .copy-to-clipboard:hover .tooltip {
   visibility: visible;
   opacity: 1;
}

/*-----------------------------------------------------------------------
	Popups
-----------------------------------------------------------------------*/

.breastcare-theme .trigger-popup,
.breastcare-theme .close-popup {
   cursor: pointer;
   z-index: 20000;
}

.breastcare-theme .popup-wrap {
   display: none;
}

.breastcare-theme .popup-overlay {
   position: fixed;
   left: 0;
   top: 0;
   bottom: 0;
   right: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   background: rgba(var(--black-rgb), 80%);
   z-index: 20000000000;
}

/* Containers */

.breastcare-theme .popup-overlay > *[class*='container'] {
   position: relative;
   overflow-y: auto;
   max-height: 80vh;
   padding: 40px;
   background: var(--white);
}

/* Close Button */

.breastcare-theme .popup-overlay .close-popup:not(.button) {
   position: absolute;
   right: 0;
   top: 0;
   padding: 20px;
}

.breastcare-theme .popup-overlay .close-popup svg {
   width: 16px;
   height: 16px;
}

/*-----------------------------------------------------------------------
  Pagination
-----------------------------------------------------------------------*/

.breastcare-theme .archive-pagination {
   margin: auto;
   margin-top: 40px;
   width: fit-content;
}

.breastcare-theme .archive-pagination a {
   margin: 0 10px;
   font-size: 12px;
   text-align: center;
}

.breastcare-theme .archive-pagination a:hover,
.breastcare-theme .archive-pagination a.current {
   text-decoration: underline;
}

.breastcare-theme .post-pagination {
   border-top: 1px solid var(--grey);
}

.breastcare-theme .post-pagination .button,
.breastcare-theme .post-pagination .button:hover,
.breastcare-theme .post-pagination .button:focus {
   padding: 0 !important;
   min-width: 0 !important;
   border: 0 !important;
}

.breastcare-theme .post-pagination .pagination-next .button svg {
   transform: rotate(-180deg);
}

/*-----------------------------------------------------------------------
	Entry: Post
-----------------------------------------------------------------------*/

.breastcare-theme .entry-post {
   display: block;
   transition: var(--transition) all;
   text-decoration: none;
}

.breastcare-theme .entry-post .entry-post-image {
   aspect-ratio: 5 / 3;
   background: var(--grey);
   position: relative;
}

.breastcare-theme .entry-post .entry-post-content {
   padding: 20px 0;
}

.breastcare-theme .entry-post .entry-post-content > *:not(:last-child) {
   margin: 0 0 10px !important;
}

/*-----------------------------------------------------------------------
	Item: Accordion
-----------------------------------------------------------------------*/

.breastcare-theme .item-accordion {
   margin: 0;
   height: auto;
   display: block;
   padding: 30px 22px 30px 0px;
   border-top: 1px solid var(--Copper-Dark);
}

.breastcare-theme .item-accordion:first-child {
   border-top: 0;
}

.breastcare-theme .item-accordion .trigger-accordion {
   flex: 1;
   position: relative;
   flex-wrap: nowrap;
   cursor: pointer;
   transition: var(--transition) all;
}

.breastcare-theme .item-accordion .trigger-accordion svg {
   width: 50px;
   height: 40px;
   min-width: 50px;
   min-height: 40px;
   margin-left: 10px;
}
.breastcare-theme .item-accordion.active .trigger-accordion svg {
   transform: rotate(180deg);
}

.breastcare-theme .item-accordion .wysiwyg-content {
   display: none;
   padding-top: 22px;
}

.breastcare-theme .item-accordion .wysiwyg-content > :first-child {
   margin-top: 10px !important;
}

.block-accordion .g_accordion {
   border-radius: 30px;
   padding: 48px 37px;
}

/* Responsive */

@media (max-width: 767px) {
   .block-accordion .g_accordion {
      padding: 30px;
   }
   .breastcare-theme .item-accordion {
      padding: 20px 0px;
   }
   .breastcare-theme .item-accordion .trigger-accordion {
      align-items: center;
   }
   .breastcare-theme .item-accordion .trigger-accordion svg {
      width: 30px;
      height: 30px;
      min-width: 30px;
      min-height: 30px;
   }
}

/*-----------------------------------------------------------------------
	Item: Separator
-----------------------------------------------------------------------*/

.breastcare-theme .item-separator {
   margin: 0;
   display: block;
   width: 100%;
   height: 1px;
   background: var(--block-background-colour);
}

.block-editor .block-separator {
   padding: 5px 0;
}

/*-----------------------------------------------------------------------
	Block: Image Gallery
-----------------------------------------------------------------------*/

.block-image-gallery .carousel-gallery img {
   object-fit: cover;
   border-radius: 30px;
   height: 646px;
}
.block-image-gallery .caption p {
   font-size: 16px;
   text-align: center;
   line-height: 27px;
   text-transform: uppercase;
}
.block-image-gallery .container-xl {
   padding: 0px;
}
.block-image-gallery .carousel-gallery.swiper {
   padding: 0px 0px 0px 100px;
}
/* Responsive */

@media (max-width: 1400px) {
   .block-image-gallery .carousel-gallery img {
      height: 460px;
   }
}
@media (max-width: 550px) {
   .block-image-gallery .carousel-gallery img {
      height: 260px;
      border-radius: 20px;
   }
}

/*-----------------------------------------------------------------------
	Block: Split Content
-----------------------------------------------------------------------*/
.block-split-content {
   position: relative;
}
.block-split-content:after {
   content: '';
   position: absolute;
   width: 100%;
   height: 52%;
   background-image: url('../img/split-bg.svg');
   background-repeat: no-repeat;
   background-size: cover;
   background-position: bottom center;
   top: 0;
   left: 0;
}
.block-split-content.bg-remove:after {
   display: none;
}
.block-split-content .column.column-image .image_block img {
   max-width: 636px;
   border-radius: 30px;
   aspect-ratio: 3/3;
   object-fit: cover;
}
.block-split-content .column.column-image:nth-of-type(2) img {
   margin-left: auto;
}
.block-split-content .logo-brand p {
   margin: 0px 20px 40px !important;
}
.block-split-content .logo-brand img {
   max-width: 228px !important;
   margin: 0px !important;
}
.block-split-content .logo-brand p:last-child {
   margin-bottom: 0px !important;
}
.block-split-content .logo-brand {
   display: flex;
   flex-wrap: wrap;
   margin-left: -20px;
   margin-right: -20px;
   margin-top: 60px;
}

/* Responsive */

@media (max-width: 991px) {
   .block-split-content .column-content {
      order: 9;
   }

   .block-split-content .column-image {
      order: 1;
   }
   .block-split-content .column.column-image img {
      margin-left: auto;
      margin-right: auto;
   }
   .block-split-content:after {
      top: -45px;
   }
}
@media (max-width: 767px) {
   .block-split-content .column.column-image .image_block img {
      max-width: 100%;
   }
   .block-split-content .logo-brand {
      margin-top: 30px;
   }
   .block-split-content .logo-brand img {
      max-width: 141px !important;
   }
   .block-split-content .logo-brand p {
      margin: 0px 10px 20px !important;
   }
   .block-split-content .logo-brand {
      margin-left: -10px;
      margin-right: -10px;
   }
}

/* Block hero banner */

.block-hero-banner {
   position: relative;
}
.block-hero-banner:after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-image: url('../img/banner-shape.svg');
   background-repeat: no-repeat;
   background-position: bottom center;
   background-size: cover;
}
.block-hero-banner .wrapper {
   gap: 57px;
}
.block-hero-banner .image_block img {
   aspect-ratio: 1 / 1;
   object-fit: cover;
   border-radius: 50%;
   max-width: 635px;
   margin-left: auto;
}

.block-hero-banner .banner-content p {
   max-width: 569px;
}
.block-hero-banner .column .button-group {
   margin-top: 27px;
}

/* Responsive */

@media (max-width: 1400px) {
   .block-hero-banner .banner-content h1 {
      font-size: 60px;
      line-height: normal;
   }
}
@media (max-width: 1199px) {
   .block-hero-banner .image_block img {
      max-width: 100%;
   }
}
@media (max-width: 991px) {
   .block-hero-banner .banner-content h1 {
      transform: none;
   }
   .block-hero-banner:after {
      height: 80%;
   }
   .block-hero-banner .image_block img {
      margin: auto;
   }
   .block-hero-banner .image_block {
      padding-top: 50px;
   }
}
@media (max-width: 767px) {
   .block-hero-banner .image_block {
      max-width: 86%;
      margin: auto;
   }
   .block-hero-banner .wrapper {
      gap: 10px;
   }
}

/* Block About */

.block-about .image_block img {
   max-width: 636px;
   border-radius: 30px;
   aspect-ratio: 3/3;
   object-fit: cover;
}
.block-about .column.column-image:nth-of-type(2) img {
   margin-left: auto;
}
.block-about .contact_block li {
   width: max-content;
   padding: 10px;
}
.block-about .contact_block li .icon {
   width: 55px;
   height: 55px;
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: var(--beige-light);
   border-radius: 50%;
   position: relative;
}
.block-about .contact_block li .icon svg path {
   fill: var(--warm-brown);
}
.block-about .contact_block li .icon:after {
   content: '';
   position: absolute;
   width: 67px;
   height: 67px;
   border-radius: 50%;
   z-index: -1;
   border: 1px dashed var(--Copper-Dark);
   top: -6px;
   left: -6px;
   animation: rotateInfinite 9s linear infinite;
}
.block-about .contact_block li .content {
   padding-left: 20px;
}
.block-about .contact_block li .content p {
   color: var(--warm-brown);
   font-weight: 500;
}
.block-about .contact_block li .content a {
   color: var(--warm-brown);
   font-weight: 500;
   text-decoration: underline;
}
.block-about .contact_block li .content a:hover {
   color: var(--Copper-Dark);
}
.block-about .contact_block {
   margin-top: 60px;
}

/* Responsive */

@media (max-width: 1400px) {
   .block-about .image_block img {
      max-width: 100%;
   }
}
@media (max-width: 991px) {
   .block-about .image_block img {
      margin: auto;
   }
}
@media (max-width: 767px) {
   .block-about .contact_block li {
      width: 100%;
      margin-bottom: 27px;
   }
   .block-about .contact_block {
      margin-top: 30px;
   }
   .block-about .wrapper {
      gap: 0px;
   }
}

/* Block Content */

.block-wysiwyg-content.beige-gradient .wysiwyg-content h2,
.block-wysiwyg-content.beige-gradient .wysiwyg-content h2 * {
   font-size: 72px;
   line-height: 93px;
   font-style: italic;
   font-weight: 600;
}
.button-group {
   margin-top: 57px;
}

/* Responsive */

@media (max-width: 1400px) {
   .block-wysiwyg-content.beige-gradient .wysiwyg-content h2,
   .block-wysiwyg-content.beige-gradient .wysiwyg-content h2 * {
      font-size: 55px;
      line-height: 71px;
   }
}
@media (max-width: 991px) {
   .block-wysiwyg-content.beige-gradient .wysiwyg-content h2,
   .block-wysiwyg-content.beige-gradient .wysiwyg-content h2 * {
      font-size: 50px;
      line-height: 60px;
   }
}
@media (max-width: 767px) {
   .button-group {
      margin-top: 25px;
   }
   .block-wysiwyg-content.beige-gradient .wysiwyg-content h2,
   .block-wysiwyg-content.beige-gradient .wysiwyg-content h2 * {
      font-size: 45px;
      line-height: 53px;
   }
}

/* Block OUr Approach */

.block-our-approach {
   position: relative;
}
.block-our-approach:before {
   content: '';
   position: absolute;
   background-image: url('../img/bg-shape.svg');
   background-repeat: no-repeat;
   background-position: top right;
   width: 600px;
   height: 550px;
   bottom: 0;
   left: 0;
   z-index: 1;
}
.block-our-approach .wysiwyg-content {
   max-width: 596px;
}
.block-our-approach .wrapper {
   gap: 177px;
}
.block-our-approach .w-block {
   border-radius: 5px;
   background: linear-gradient(180deg, var(--lavender-light) 0%, var(--white) 100%);
   padding: 32px 32px 43px;
   margin-bottom: 56px;
}
.block-our-approach .w-block:last-child {
   margin-bottom: 0px;
}
.block-our-approach .icon {
   width: 144px;
   height: 144px;
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: var(--white);
   border-radius: 50%;
   position: relative;
}
.block-our-approach .icon:after {
   content: '';
   position: absolute;
   width: 161px;
   height: 161px;
   border-radius: 50%;
   border: 1px dashed var(--black);
   top: -8px;
   left: -8px;
   animation: rotateInfinite 9s linear infinite;
}
.block-our-approach .approch-content {
   position: sticky;
   top: 190px;
}
.block-our-approach .icon img,
.block-our-approach .icon svg {
   z-index: 1;
}
.block-our-approach .content {
   width: calc(100% - 161px);
   padding-left: 34px;
}
.title {
   margin-bottom: 80px;
}

/* Responsive */

@media (max-width: 1400px) {
   .block-our-approach .wrapper {
      gap: 50px;
   }
}
@media (max-width: 1199px) {
   .block-our-approach .icon:after {
      width: 120px;
      height: 120px;
   }
   .block-our-approach .icon {
      height: 104px;
      width: 104px;
   }
   .block-our-approach .icon img,
   .block-our-approach .icon svg {
      width: 50px;
   }
   .block-our-approach .content {
      width: calc(100% - 104px);
   }
}
@media (max-width: 991px) {
   .title {
      margin-bottom: 50px;
   }
}
@media (max-width: 767px) {
   .block-our-approach:before {
      display: none;
   }
   .block-our-approach .icon {
      height: 107px;
      width: 107px;
      margin: auto;
   }
   .block-our-approach .icon:after {
      top: -7px;
      left: -6px;
   }
   .block-our-approach .content {
      width: 100%;
      padding: 0px;
      text-align: center;
      margin-top: 20px;
   }
   .block-our-approach .w-block {
      padding: 28px 14px 34px;
      margin-bottom: 9px;
   }
   .title {
      margin-bottom: 30px;
   }
}

/* Block Link Grid */

.block-link-grid .link-post {
   border-radius: 5px;
   background: var(--white);
   text-decoration: none;
   padding-bottom: 110px;
   position: relative;
   overflow: hidden;
}
.block-link-grid .link-image img {
   width: 100%;
   aspect-ratio: 2/1.16;
   object-fit: cover;
}
.block-link-grid .link-content {
   padding: 22px 33px 0px;
}
.block-link-grid .link-content .button-group {
   position: absolute;
   bottom: 24px;
   left: 31px;
}
.block-link-grid .link-content p {
   color: var(--Copper-Dark);
}

/* Responsive */

@media (max-width: 991px) {
   .block-link-grid .link-content {
      padding: 22px 20px 0px;
   }
   .block-link-grid .link-content .button-group {
      left: 19px;
   }
}
@media (max-width: 767px) {
   .block-link-grid .link-content p {
      font-size: 15px;
      line-height: 22px;
   }
}

/* Block Testimonial */

.block-testimonial {
   position: relative;
}
.block-testimonial .testimonial-content {
   text-align: center;
}
.block-testimonia .testimonial-content .title {
   margin-bottom: 57px;
}
.block-testimonial .testimonial-content h3 {
   text-align: center;
   font-family: var(--font-secondary);
   font-style: italic;
   font-weight: 500;
   line-height: 64px;
}
.block-testimonial .authore {
   text-align: center;
   margin-top: 49px;
}
.block-testimonial .authore span {
   font-size: 16px;
   font-style: normal;
   font-weight: 400;
   line-height: 24px;
   display: block;
}
.block-testimonial .slider-block {
   position: relative;
}
.block-testimonial.cream-beige .slider-block:after {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   background: radial-gradient(50% 50% at 50% 50%, #f6ded7 0%, #f7e2da 38%, #fcf2ea 100%);
   left: 0;
   top: 0;
   z-index: -2;
}
.wp-block-acf-block-testimonials {
   overflow-y: hidden !important;
}
.block-testimonial.white .swiper-pagination-bullet-active,
.block-testimonial.beige-gradient .swiper-pagination-bullet-active {
   background-color: var(--Copper-Dark) !important;
}
.block-testimonial.white .swiper-pagination-bullet,
.block-testimonial.beige-gradient .swiper-pagination-bullet {
   background-color: rgba(var(--Copper-Dark-rgb), 20%);
}
/* Responsive */

@media (max-width: 991px) {
   .block-testimonial.cream-beige .slider-block:after {
      width: 100%;
      height: 100%;
   }
}
@media (max-width: 767px) {
   .block-testimonial.cream-beige .slider-block:after {
      width: 100%;
   }
   .block-testimonial .testimonial-content h3 {
      line-height: 44px;
      font-size: 32px;
   }
}

/* Block Logo Slider */

.block-logo-slider {
   overflow: hidden;
}
.block-logo-slider {
   z-index: 111;
}
.block-logo-slider .logo-image img {
   height: 80px;
   width: auto;
   margin: auto;
   z-index: 1;
   position: relative;
   object-fit: contain;
}
.block-logo-slider .swiper-wrapper {
   -webkit-transition-timing-function: linear !important;
   -o-transition-timing-function: linear !important;
   transition-timing-function: linear !important;
}

/* responsive */
@media (max-width: 767px) {
   .block-logo-slider .logo-image img {
      height: 80px;
   }
}

/* Block Inner Banner */

.block-inner-banner {
   position: relative;
}
.block-inner-banner:after {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   background: linear-gradient(180deg, rgba(var(--black-rgb), 0%) 19.83%, rgba(var(--black-rgb), 40%) 58.28%);
}
.block-inner-banner .full-image img {
   height: 507px;
   width: 100%;
   object-fit: cover;
}
.block-inner-banner .inner-banner-content {
   position: absolute;
   bottom: 0px;
   left: 0;
}
.block-inner-banner .inner-banner-content h1 {
   color: var(--white);
}

/* Responsive */

@media (max-width: 1600px) {
   .block-inner-banner .inner-banner-content {
      padding-left: 20px;
      padding-right: 20px;
      width: 100%;
   }
}
@media (max-width: 550px) {
   .block-inner-banner .full-image img {
      height: 390px;
   }
}

/* Block Icon Grid */

.block-icon-grid .column .icon {
   width: 144px;
   height: 144px;
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: var(--white);
   border-radius: 50%;
   position: relative;
   margin: 0 auto 49px;
}
.block-icon-grid .wrapper {
   gap: 80px;
}
.block-icon-grid .wrapper .column {
   text-align: center;
}
.block-icon-grid .column .icon:after {
   content: '';
   position: absolute;
   width: 161px;
   height: 161px;
   border-radius: 50%;
   border: 1px dashed var(--black);
   top: -8px;
   left: -8px;
   animation: rotateInfinite 9s linear infinite;
}
.block-icon-grid .column h2 {
   margin: 10px 0px 40px;
}

/* Responsive */

@media (max-width: 767px) {
   .block-icon-grid .column h2 {
      margin: 10px 0px 20px;
   }
   .block-icon-grid .wrapper {
      gap: 40px;
   }
}

/* Block Seperate */

.block-separator {
   background-image: url('../img/page-divider-logo.svg');
   background-size: contain;
   background-repeat: no-repeat;
   background-position: center;
}
.block-separator:before {
   content: '';
   position: absolute;
   width: calc(50% - 62px);
   background-color: var(--beige-light);
   top: 50%;
   left: 0;
   height: 1px;
   transform: translate(0px, -50%);
}
.block-separator:after {
   content: '';
   position: absolute;
   width: calc(50% - 62px);
   background-color: var(--beige-light);
   top: 50%;
   right: 0;
   height: 1px;
   transform: translate(0px, -50%);
}

/* responsive */
@media (max-width: 991px) {
   .block-separator:before,
   .block-separator:after {
      width: calc(50% - 42px);
   }
}

/* Block Our Team */

.block-our-team .wrapper {
   gap: 74px 39px;
}
.block-our-team a:hover .team-image img {
   border-radius: 50%;
}
.block-our-team .team-image img {
   width: 100%;
   aspect-ratio: 1 / 1;
   border-radius: 5px;
   transition: var(--transition);
   object-fit: cover;
   object-position: top;
}
.block-our-team .team-content {
   text-align: center;
   margin-top: 9px;
}

.block-our-team .team-content p {
   margin: 5px 0px 0px;
   font-size: 16px;
   list-style: 24px;
}
.block-our-team .column.circle .team-image img {
   border-radius: 50%;
}

/* Responsive */

@media (max-width: 550px) {
   .block-our-team .wrapper {
      gap: 30px 39px;
   }
}

/* block intro */

.block-intro .social {
   margin-top: 114px;
   gap: 20px;
}
.wp-admin .block-intro .image-block {
   margin-bottom: 0px;
}
.block-intro .social ul li a {
   width: 47px;
   height: 47px;
   display: flex;
   align-items: center;
   border: 1px dashed var(--Copper-Dark);
   justify-content: center;
   border-radius: 100%;
}
.block-intro .social ul li a:hover {
   background-color: var(--beige-light);
}

.block-intro .social ul {
   gap: 16px;
}

.block-intro .column .button-group {
   margin: 0px;
}
.block-intro .wrapper {
   position: relative;
}
.block-intro .image-block img {
   max-width: 482px;
   margin-left: auto;
   aspect-ratio: 1 / 1;
   object-fit: cover;
   object-position: top;
}
.block-intro .image-block {
   margin-bottom: -100px;
}
.block-intro .social ul li a svg {
   width: 25px;
   height: 25px;
}

/* Responsive */

@media (max-width: 1199px) {
   .block-intro h1 {
      font-size: 60px;
      line-height: 70px;
   }
}
@media (max-width: 991px) {
   .block-intro .image-block {
      margin-bottom: 0px;
   }
   .block-intro .column-content {
      order: 9;
   }
   .block-intro .column-image {
      order: 1;
   }
   .block-intro .image-block img {
      margin-left: inherit;
   }
}
@media (max-width: 767px) {
   .block-intro .image-block img {
      max-width: 100%;
   }
   .block-intro .column .button-group {
      width: auto;
   }
   .block-intro .social {
      margin-top: 50px;
   }
   .block-intro h1 {
      font-size: 50px;
      line-height: 55px;
   }
}
/* Block Contact */

.block-contact-form {
   position: relative;
}
.block-contact-form::after {
   content: '';
   position: absolute;
   width: 100%;
   height: 52%;
   background-image: url(../img/split-bg.svg);
   background-repeat: no-repeat;
   background-size: cover;
   background-position: bottom center;
   top: 0;
   left: 0;
}
.block-contact-form .icon {
   width: 47px;
   height: 47px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   position: relative;
   background-color: var(--beige-light);
}
.block-contact-form .icon svg path {
   fill: var(--warm-brown);
}
.block-contact-form .icon:after {
   content: '';
   position: absolute;
   width: 57px;
   height: 57px;
   border-radius: 50%;
   z-index: -1;
   top: -5px;
   left: -5px;
   border: 1px dashed var(--Copper-Dark);
   animation: rotateInfinite 9s linear infinite;
}
.block-contact-form .content {
   width: calc(100% - 75px);
   padding-left: 39px;
}
.block-contact-form .contact_info {
   margin-top: 70px;
}
.block-contact-form .contact_info ul {
   display: block;
}
.block-contact-form .contact_info li {
   margin-bottom: 42px !important;
   list-style: none !important;
   padding: 0px;
}
.block-contact-form .contact_info li:before {
   display: none;
}
.block-contact-form .content p {
   text-transform: uppercase;
   font-size: 17px;
   line-height: 24px;
   margin: 0px !important;
}
.block-contact-form .content .address p {
   text-transform: none;
   color: var(--warm-brown);
   font-size: 18px;
   font-style: normal;
   font-weight: 500;
   line-height: normal;
   max-width: 240px;
   display: block;
   margin-top: 2px;
}
.block-contact-form .content span,
.block-contact-form .content a {
   color: var(--warm-brown);
   font-size: 18px;
   font-style: normal;
   font-weight: 500;
   line-height: normal;
   max-width: 240px;
   display: block;
   margin-top: 2px;
}
.block-contact-form .content a:hover {
   color: var(--Copper-Dark);
}

/* responsive */

@media (max-width: 991px) {
   .block-contact-form::after {
      top: -44px;
   }
   .block-contact-form {
      overflow: hidden;
   }
}

.block-google-map .container-xl {
   padding: 0px;
}
.block-google-map img,
.block-google-map iframe {
   width: 100%;
   height: 643px;
   object-fit: cover;
   display: block;
}

/* responsive */

@media (max-width: 767px) {
   .block-google-map img,
   .block-google-map iframe {
      height: 450px;
   }
}
