* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1973e7;
  --secondary: #bc2828 !important;
  --tertiary: #1973e7;
  --body: #FFF9F0;
  --txtDark: #353535;
  --txtLight: #616161;
  --txtWhite: #ffffff;
  --txtWhiteLight: #ffffffe5;
  --green: #34A853;
  --red: #D53B30;
  --yellow: #FBBC04;
  --header-height: 5rem;
  --siteWidth: 74rem;
}

/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
 ========================================================================== */

/**
* Remove the margin in all browsers.
*/
body {
  margin: 0;
}

/**
* Render the `main` element consistently in IE.
*/
main {
  display: block;
  padding-top: var(--header-height);
  margin-top: calc(-1 * var(--header-height));
  overflow-x: hidden;
}



/* Grouping content
 ========================================================================== */

/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
 ========================================================================== */

/**
* Remove the gray background on active links in IE 10.
*/
a {
  background-color: transparent;
  text-decoration: none;
}

/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
* Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
 ========================================================================== */

/**
* Remove the border on images inside links in IE 10.
*/
img {
  border-style: none;
}

/* Forms
 ========================================================================== */

/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input {
  overflow: visible;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
  text-transform: none;
}

/**
* Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*		`fieldset` elements in all browsers.
*/
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
  vertical-align: baseline;
}

/**
* Remove the default vertical scrollbar in IE 10+.
*/
textarea {
  overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
* Remove the inner padding in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
 ========================================================================== */

/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/
details {
  display: block;
}

/*
* Add the correct display in all browsers.
*/
summary {
  display: list-item;
}

/* Misc
 ========================================================================== */

/**
* Add the correct display in IE 10+.
*/
template {
  display: none;
}

/**
* Add the correct display in IE 10.
*/
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}


ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

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

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */


a:hover,
a:active {
  outline: 0;
}

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

textarea {
  width: 100%;
}


/* Navigation
--------------------------------------------- */


/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}



/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}




/* Custom Theme Styles --------------------------- */
* {
  margin: 0;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  margin-block: 0;
  margin-inline: 0;
  box-sizing: border-box;
}



html {
  overflow-x: hidden;
}

body {
  background-color: var(--body);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  margin-inline: auto;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

main {
  overflow-x: hidden;
  padding-top: var(--header-height);
  margin-top: calc(-1 * var(--header-height));
}


a,
button {
  -webkit-tap-highlight-color: transparent;
}

.ab-container {
  height: 100%;
  padding: 0 1rem;
  max-width: var(--siteWidth);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


/* TOP BAR-------------- */

.top-bar-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.top-bar-wrapper .col1,
.top-bar-wrapper .col2 {
  flex: 1 1 25rem;
  display: flex;
  gap: 1rem;
}

.top-bar-wrapper .col2 {
  justify-content: flex-end;
}

.top-bar {
  padding: 1rem 0;
  border-bottom: 0.1rem solid var(--tertiary);
}

.top-bar-item {
  text-decoration: none;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.5rem 1rem;
  max-width: max-content;
}

.top-bar-item .text-body {
  line-height: 1.5rem;
}

.top-bar-item img {
  max-width: 2.2rem;
}






/* HEADER------------------ */

.header-container {
  padding: 0 1rem;
  margin: 0 auto;
  max-width: var(--siteWidth);
  border-radius: 0 0 1.1rem 1.1rem
}

.ab-header {
  position: relative;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 0 2rem #00000015;
}

.transparent.ab-header {
  background-color: transparent;
  box-shadow: none;
}

.ab-header-wrapper {
  min-height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative
}

.ab-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  gap: 1rem
}

.ab-brand img {
  display: block;
  width: 250px;
}

.brand-line-1 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1rem;
  color: var(--primary)
}

.brand-line-2 {
  font-size: .78rem;
  font-weight: 400;
  line-height: 1rem;
  color: var(--txtLight)
}

.ab-nav-menu {
  list-style: none;
  line-height: var(--header-height)
}

.ab-nav-item {
  display: inline-block;
  margin-left: .5rem
}

.menu-item a,
.page_item a,
.menu-item,
.page_item {
  font-size: .9rem;
  letter-spacing: .05rem;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  color: var(--txtLight);
  opacity: 1;
  padding: 0 .5rem
}

.menu-item>a:hover,
.page_item>a:hover,
.menu-item:hover,
.page_item:hover {
  color: var(--primary);
}

.menu-item.current_page_item a,
.menu-item.current_page_item,
.page_item.current_page_item a,
.page_item.current_page_item,
.transparent .menu-item.current_page_item a,
.transparent .menu-item.current_page_item,
.transparent .page_item.current_page_item a,
.transparent .page_item.current_page_item {
  color: var(--txtDark);
  opacity: 1;
  font-weight: 700;
}

.menu-item.current_page_item,
.page_item.current_page_item,
.transparent .menu-item.current_page_item,
.transparent .page_item.current_page_item {
  /* active page  */
}

.menu-item-has-children,
.page_item-has-children {
  position: relative;
  cursor: pointer
}

@media screen and (min-width:700px) {

  .menu-item-has-children:hover .sub-menu,
  .page_item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }

}

.sub-menu {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: calc(100% - .5rem);
  right: 0;
  z-index: 1000;
  list-style: none;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  font-weight: 400;
  padding: 2rem 0rem;
  box-shadow: 0 0 2.5rem #0000001e
}

.sub-menu li {
  display: block;
  padding: 0 1.5rem;
}

.sub-menu .current_page_item,
.current_menu_item a {
  color: var(--primary);
  font-weight: 400;
}

.sub-menu li:not(:first-child) {
  margin-top: 1.5rem
}

.transparent .brand-line-1 {
  color: var(--txtWhite)
}

.transparent .brand-line-2 {
  color: var(--txtWhiteLight)
}

@media screen and (min-width:700px) {

  .transparent .menu-item:hover>a,
  .transparent .menu-item:hover,
  .transparent .page_item:hover>a,
  .transparent .page_item:hover {
    color: var(--primary)
  }

  .transparent .menu-item>a,
  .transparent .menu-item,
  .transparent .page_item>a,
  .transparent .page_item {
    color: var(--txtWhiteLight)
  }
}

.transparent .sub-menu li,
.transparent .sub-menu li a,
.sub-menu li,
.sub-menu li a {
  line-height: 1rem;
  color: var(--txtLight)
}

.sub-menu .menu-item a:hover,
.menu-item li:hover,
.sub-menu .page_item a:hover,
.page_item li:hover {
  color: var(--primary)
}

.sub-menu .current_page_item,
.current_menu_item a {
  color: var(--primary);
  font-weight: 700
}

.menu {
  display: none
}

.scroll-down {
  position: sticky;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 999
}

.scroll-up,
.transparent.scroll-up {
  box-shadow: 0 0 2rem #00000015;
  background-color: #fff;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0);
  -webkit-transition: background-color .3s, -webkit-transform .3s ease-in-out;
  transition: background-color .3s, -webkit-transform .3s ease-in-out;
  -o-transition: background-color .3s, transform .3s ease-in-out;
  transition: background-color .3s, transform .3s ease-in-out;
  transition: background-color .3s, transform .3s ease-in-out, -webkit-transform .3s ease-in-out
}

.transparent.scroll-up .menu-item a,
.transparent.scroll-up .menu-item,
.transparent.scroll-up.page_item a,
.transparent.scroll-up.page_item {
  color: var(--txtLight)
}

.transparent.scroll-up .current_menu_item a,
.transparent.scroll-up .current_menu_item,
.transparent.scroll-up .current_page_item a,
.transparent.scroll-up .current_page_item {
  color: var(--primary)
}

.transparent.scroll-up .brand-line-1 {
  color: var(--txtDark)
}

.transparent.scroll-up .brand-line-2 {
  color: var(--txtLight)
}

@media screen and (max-width: 700px) {
  * {
    --header-height: 4rem
  }

  .ab-nav-menu {
    display: none
  }

  .menu {
    display: block;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-transform: scale(.75);
    -ms-transform: scale(.75);
    transform: scale(.75);
    position: relative;
    overflow: hidden
  }

  .ab-header-wrapper {
    min-height: 4rem
  }

  .line {
    fill: none;
    stroke: var(--txtDark);
    stroke-width: 6;
    -webkit-transition: stroke-dasharray .6s cubic-bezier(.4, 0, .2, 1), stroke-dashoffset .6s cubic-bezier(.4, 0, .2, 1);
    -o-transition: stroke-dasharray .6s cubic-bezier(.4, 0, .2, 1), stroke-dashoffset .6s cubic-bezier(.4, 0, .2, 1);
    transition: stroke-dasharray .6s cubic-bezier(.4, 0, .2, 1), stroke-dashoffset .6s cubic-bezier(.4, 0, .2, 1)
  }

  .transparent .line {
    stroke: var(--txtWhite)
  }

  .transparent.scroll-up .line {
    stroke: var(--txtLight)
  }

  .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6
  }

  .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6
  }

  .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6
  }

  .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6
  }

  .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6
  }

  .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6
  }

  .brand-line-1 {
    font-size: .9rem
  }

  .brand-line-2 {
    font-size: .76rem
  }

  .ab-brand {
    font-size: 1.3rem
  }

  .ab-nav-menu {
    margin-top: 1rem;
    background-color: #fff;
    -webkit-box-shadow: 0 .5rem 1rem #00000011;
    box-shadow: 0 .5rem 1rem #0001;
    width: 100%;
    position: absolute;
    display: block;
    top: var(--header-height);
    right: 0rem;
    z-index: 2;
    padding: 1rem;
    border-radius: .5rem;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-3rem);
    -ms-transform: translateY(-3rem);
    transform: translateY(-3rem);
    -webkit-transition: opacity .25s, visibility 0ms linear .25s, -webkit-transform .25s ease-out;
    transition: opacity .25s, visibility 0ms linear .25s, -webkit-transform .25s ease-out;
    -o-transition: opacity .25s, transform .25s ease-out, visibility 0ms linear .25s;
    transition: opacity .25s, transform .25s ease-out, visibility 0ms linear .25s;
    transition: opacity .25s, transform .25s ease-out, visibility 0ms linear .25s, -webkit-transform .25s ease-out
  }

  .menu-item,
  .page_item {
    display: block;
    line-height: 2.5rem
  }

  .menu-item a,
  .page_item a {
    font-size: 0.9rem;
    padding: 0
  }

  .header-container {
    width: 100%
  }

  .sub-menu {
    max-width: 100%;
    border-radius: .5rem;
    background-color: #00000009;
    position: static;
    display: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .25s linear, -webkit-transform .25s ease-out;
    transition: opacity .25s linear, -webkit-transform .25s ease-out;
    -o-transition: transform .25s ease-out, opacity .25s linear;
    transition: transform .25s ease-out, opacity .25s linear;
    transition: transform .25s ease-out, opacity .25s linear, -webkit-transform .25s ease-out;
    box-shadow: none
  }

  .sub-menu li a {
    font-size: .8rem
  }

  .drop {
    display: block;
    visibility: visible;
    opacity: 1
  }

  .mobile {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0ms;
    -o-transition-delay: 0ms;
    transition-delay: 0ms
  }
}


/* ----------- Margin And Padding Utilities ------------- */

.p-1 {
  padding: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mt-mb-4 {
  margin-top: 0rem;
}

.py-6 {
  padding-block: 6rem;
}

.my-6 {
  margin-block: 6rem;
}

.my-4 {
  margin-block: 4rem;
}

.py-4 {
  padding-block: 4rem;
}

.py-3 {
  padding-block: 3rem;
}

.py-2 {
  padding-block: 2rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 2rem;
}

.my-8 {
  margin-block: 8rem;
}

.py-8 {
  padding-block: 8rem;
}

.pd-3 {
  padding: 3rem;
}

.center {
  margin-inline: auto;
}


.pd-flex-3 {
  padding: clamp(1rem, 4vw, 3rem);
}

.pd-flex-2 {
  padding: clamp(1rem, 3vw, 2rem);
}

.pd-flex-15 {
  padding: clamp(1rem, 3vw, 1.5rem);
}


.corner-flex-3 {
  border-radius: clamp(1rem, 4vw, 2rem);
}

.mt-mb-1 {
  margin-top: 1rem;
}

/* Spacer */
.sp-top {
  margin-top: calc(1rem * var(--spacer));
}

.sp-bottom {
  margin-bottom: calc(1rem * var(--spacer));
}


@media screen and (min-width:700px) {
  .mt-lg-4 {
    margin-top: 4rem;
  }
}

@media screen and (max-width:700px) {
  .mt-mb-2 {
    margin-top: 2rem;
  }
}

/* ---------- Grid Utilities ----------- */

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(25rem, 100%), 1fr));
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
}

.three-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.four-column {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
}


.grid-13 {
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: center;
  gap: 2rem;
  row-gap: 3rem;
}

@media screen and (max-width:700px) {
  .grid-13 {
    grid-template-columns: 100%;
  }
}

.justify-self-left {
  justify-self: flex-start;
}

.justify-self-right {
  justify-self: flex-end;
}

.flex-gap {
  gap: clamp(7rem, 20%, 3rem);
}

.one-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}


.flex-13 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  /* border: 2px solid red; */
}

.flex-13 .col1 {
  /* border: 1px solid green; */
  flex: 1 1 20rem;
  max-width: 100%;
}

.flex-13 .col2 {
  max-width: 100%;
  /* border: 1px solid green; */
  flex: 3 1 30rem;
}





@media screen and (max-width:700px) {}

/* ----------- Text Utilities ----------- */


.text-body {
  line-height: 2rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--txtLight);
  letter-spacing: 0.5px;
}

.text-white {
  color: var(--txtWhite);
}

.text-white-light {
  color: var(--txtWhiteLight);
}

.text-dark {
  color: var(--txtDark);
}

.text-light {
  color: var(--txtLight);
}

.text-heading1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 5rem;
}

.text-heading2 {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 3rem;
}

.text-heading3 {
  font-size: 1.7rem;
  line-height: 2.2rem;
  font-weight: 400;
}

.text-heading4 {
  font-size: 1.5rem;
  line-height: 2.2rem;
  font-weight: 400;
}

.text-heading5 {
  font-size: 1.2rem;
}

.text-center {
  text-align: center;
  max-width: max-content;
  margin-inline: auto;
}

.text-bold {
  font-weight: 900;
}

.text-regular {
  font-weight: 700;
}

.p-max {
  max-width: 34rem;
}

.font-cur {
  font-family: 'Merienda', cursive;
}



/* ---------- Color Utilities ---------- */

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.color-tertiary {
  color: var(--tertiary);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-white {
  background-color: #ffffff;
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-tertiary {
  background-color: var(--tertiary);
}

.bg-gradient {
  background: rgb(45, 56, 86);
}

.bg-red {
  background-color: var(--red);
}

/* ------ Button Utilities -------- */

.btn {
  text-decoration: none;
  border: none;
  outline: none;
  padding: 1.2rem 2rem;
  display: block;
  max-width: max-content;
  letter-spacing: 0.06rem;
  text-align: center;
  cursor: pointer;
}

.btn-link {
  text-decoration: none;
  border: none;
  outline: none;
  display: block;
  max-width: max-content;
  letter-spacing: 0.06rem;
  cursor: pointer;
  color: var(--primary);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-link img {
  margin-bottom: -0.05rem;
  max-width: 1.1rem;
}

.btn-primary {
  font-size: 1.1rem;
  background-color: var(--primary);
  color: var(--txtWhite);
  font-weight: 700;
  box-shadow: 0 1rem 2rem #783f1447;
  transition: all 200ms ease-out;
}

.btn-primary:hover {
  box-shadow: 0 1rem 2rem #783f1447;
  transform: translateY(-0.2rem);
}

.btn-red {
  background-color: var(--red);
}

.btn-red:hover {
  box-shadow: 0 1rem 2rem #78171447;
}

.btn-tertiary {
  text-decoration: none;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
}

.btn-top-bar {
  color: var(--txtWhite);
  background-color: var(--primary);
  padding: 0.7rem 1rem;
  text-decoration: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-top-bar img {
  max-width: 1.5rem;
}

.sec-title .text-body {
  margin-top: 0;
}


.isolate {
  isolation: isolate;
}




/* Home Page Starts------------------- */


.home1 {
  padding-top: var(--header-height);
  margin-top: calc(-1 * var(--header-height));
  position: relative;
}

.full-bg {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  object-position: center center;
  opacity: 0.06;
  height: 100%;
  width: 100%;
  z-index: 0;
  user-select: none;
}


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

footer {
  border-top: 0.1rem solid var(--tertiary);
}

footer .three-column {
  align-items: flex-start;
}

.logo-footer {
  width: 300px;
}

.footer-social {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-info img {
  margin-top: 0.5rem;
  max-width: 1.1rem;
  height: auto;
  padding: 0;
  filter: invert(100%);
  opacity: 0.7;
}

.footer-social .item {
  max-width: 3rem;
  padding: 0.6rem;
  background-color: white;
  box-shadow: 0 0.25rem 0.5rem #00000008;
}

footer .btn-top-bar {
  padding: 1rem;
  justify-content: center;
}

.footer-bottom {
  font-size: 0.85rem;
  padding: 1rem 0;
  color: white;
}

.footer-bottom .two-column {
  justify-content: flex-end;
}

.footer-bottom .two-column p:last-of-type {
  justify-self: flex-end;
}

.footer-bottom a {
  color: white;
}

.footer-nav {
  border-top: 0.1rem solid var(--tertiary);
  padding: 2rem 1rem;
}

.footer-nav .col {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  color: var(--txtLight);
}

.footer-nav .col2 {
  justify-self: flex-end;
}

@media screen and (max-width:700px) {
  .footer-nav {
    text-align: center;
  }

  .footer-nav .col {
    justify-content: center;
  }
}

/* Main Pages Sytling */

/* ------------------------------ */









/* Theme Styles Starts------------- */

.bottom-line1 {
  padding-bottom: 2rem;
  position: relative;
}

.bottom-line1::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 1rem;
  background-color: var(--tertiary);
  width: 100%;
  max-width: 15rem;
}

.bottom-line1::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 1rem;
  background-color: var(--secondary);
  width: 100%;
  max-width: 10rem;
}

.line-center.bottom-line1::before {
  left: 50%;
  transform: translateX(-50%);
}

section {
  position: relative;
}


/* FOR GLIDE */
.glide,
.glide2,
.glide3 {
  /* height: 100%; */
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  /* border: 2px solid red; */
}

.glide * {
  box-sizing: inherit;
}

.glide__track {
  cursor: grab;
  overflow: hidden
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  /* gap: 1rem; */
}

.glide__slides--dragging {
  user-select: none
}

.glide__slide {
  /* aspect-ratio: 4/5; */
  width: 100%;
  /* height: 100%; */
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent
}

.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none
}

.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;

}

.glide__arrow {
  border: none;
  background-color: var(--accent);
  cursor: pointer;
}

.glide__arrow img {
  display: block;
  width: 2rem;
  background-color: #016de0;
  padding: 0.5rem;
}

.glide__arrow--left {
  transform: rotate(180deg);
}

.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: max-content;
}

.glide__bullets::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 200%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #00000015;
  z-index: -1;
  border-radius: 3rem;
}


.glide__bullet {
  width: max(1vw, 0.6rem);
  height: max(1vw, 0.6rem);
  border-radius: 50%;
  background-color: #ffffff50;
  outline: none;
  border: none;
}

.glide__bullet--active {
  background-color: #ffffff;
}

.glide--rtl {
  direction: rtl
}

.glide-wrapper {
  width: 100%;
  max-width: 100%;
}





.home1 {
  padding-top: var(--header-height);
  margin-top: calc(-1 * var(--header-height));
  position: relative;
}

.full-bg {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  object-position: top;
  opacity: 0.20;
  height: 100%;
  width: 100%;
  z-index: 0;
  user-select: none;
  mix-blend-mode: luminosity;
}




/* Home 2 ---------------------- */

.home2-item {
  position: relative;
  aspect-ratio: 16/8;
}

.home2-item .content {
  padding: 1rem;
  position: relative;
  z-index: 0;
}

.home2-item .content img {
  max-width: 3.5rem;
  margin: auto;
}

.home2-item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  mix-blend-mode: soft-light;
  object-fit: cover;
  opacity: 0.45;
}

/* HOME 3 ------------------ */


.home4-item img {
  max-width: 4.5rem;
  padding: 1rem;
  background-color: white;
  border-bottom: 0.5rem solid var(--tertiary);
}

.home4-bg1 {
  position: absolute;
  width: 80vw;
  right: 10%;
  height: 110%;
  top: 0;
  object-fit: cover;
  max-width: unset;
  z-index: -1;
  opacity: 0.045;
  mix-blend-mode: luminosity;
  object-position: top;

}

.home4-bg2 {
  position: absolute;
  width: 619px;
  left: 0;
  height: 100%;
  top: 0;
  z-index: -1;
}

.home4-bg2 img {
  height: 100%;
  width: 619px;
  object-fit: cover;
  max-width: unset;
  opacity: 0.75;
  mix-blend-mode: soft-light;
  object-position: top right;
}

.home4 .col1,
.home4 .col2 {
  position: relative;
  align-self: stretch;
}

.home4 .three-column {
  row-gap: 3rem;
}

.home4 .col1 {
  display: flex;
  align-items: center;
}

.home4 .col1 .text-heading2 {
  text-transform: uppercase;
}



.home5 .full-bg {
  opacity: 0.5;
}


.svs-item .svs-item-img {
  aspect-ratio: 4/3;
  object-fit: cover;
  margin: auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.svs-item .content {
  display: block;
  text-align: center;
  padding: 0.7rem;
  background-color: #ffffff20;
  backdrop-filter: blur(8px);
  border-radius: 15px;
  position: relative;
}

.svs-item .content:hover {
  background-color: var(--tertiary);
}

.svs-item .content:hover p {
  color: var(--txtDark);
}

.svs-item-link {
  display: block;
  height: 100%;
  object-fit: contain;
  position: absolute;
  max-width: 1rem;
  aspect-ratio: 1;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  z-index: 1;
  filter: invert(100%);
  opacity: 0.7;
}

.svs-item .content:hover .svs-item-link {
  filter: invert(0%);

}


.home6 .glide3 {
  position: static;
}

.home6 .glide__arrows {
  position: absolute;
  left: 1rem;
  bottom: 5.5rem;
  justify-content: flex-start;
  margin-top: 0;
}

.home6 .col1 {
  margin-bottom: 3rem;
}

.doctors1 .three-column {
  align-items: stretch;
  grid-template-columns: repeat(auto-fill, minmax(min(18rem, 100%), 1fr));
}

.doc-item {
  height: 100%;
  background-color: white;
}

.doc-img {
  isolation: isolate;
  position: relative;
}

.doc-img img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
  border-radius: 6%;
  border: 4px solid #e12454;
}

.doc-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 65%;
  /* background-color: var(--tertiary); */
  z-index: -2;
}

.doc-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
  /* background-color: var(--secondary); */
  z-index: -1;
}

.doctor-name {
  text-transform: capitalize;
  font-size: 1.3rem;
}

.testi-item {
  height: 100%;
  border-radius: 1.1rem;
  position: relative;
  margin-bottom: 0rem;
  max-width: 40rem;
  transform: translateX(50%);
  transition: filter 400ms ease-out;
}

.testi-avatar {
  padding: 1rem;
}

.testi-content {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100% - 4rem);
  position: relative;
  isolation: isolate;
  background-color: white;
}

.testi-img {
  width: 100%;
  max-width: 3rem;
}

.testi-img img {
  width: 100%;
}

.testi-name {
  margin-left: 1rem;
}

.testi-txt {
  font-size: 1rem;
  color: var(--txtLight);
  line-height: 1.7rem;
}

.quote1 {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 8rem;
  opacity: 0.3;
  z-index: -1;
  rotate: 180deg;
}

.quote2 {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 8rem;
  opacity: 0.3;
  z-index: -1;
}

.glide4 {
  position: relative;
}

.glide4 .glide__slide {
  padding-bottom: 4rem;
}

.glide4 .glide__arrows {
  position: absolute;
  top: 45%;
  left: 0;
  justify-content: space-between;
  width: 100%;
  z-index: 3;
  transform: translateY(-50%);
}

.glide4 .glide__slide--active .testi-item {
  filter: drop-shadow(0 0.4rem 0.8rem #0000000e);
}

@media screen and (min-width:1000px) {
  .slider::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 25%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, var(--body) 10%, #fff9f000);
    z-index: 1;
  }

  .slider::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 25%;
    top: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(-90deg, var(--body) 10%, #fff9f000);
  }
}



.contact2 {
  isolation: isolate;
  position: relative;
}

.contact-wrapper {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(25rem, 100%), 1fr));
  align-items: flex-start;
  isolation: isolate;
  gap: 4rem;
  overflow: hidden;
}

.contact-form {
  height: 100%;
  position: relative;
  display: grid;
  align-items: center;
  gap: 2rem;
}

.form-group {
  margin-top: 2rem;
  max-width: 30rem;
}

.form-group:first-of-type {
  margin-top: 0rem;
}


.contact-form label {
  display: block;
  color: var(--txtWhiteLight);
  margin-bottom: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
}

.contact-form input {
  border: none;
  padding: 1rem;
  width: 100%;
  color: var(--txtWhiteLight);
  border: 0.0625rem solid var(--txtWhiteLight);
  background: none;
}

.contact-form input::placeholder {
  color: #ffffff70;
}

.contact-form input:focus {
  outline: none;
}

.contact-form .btn img {
  width: 1.3rem;
  margin-left: 0;
}

.contact-details {
  height: 100%;
  position: relative;
}

.contact-details .item {
  display: flex;
  text-decoration: none;
  align-items: flex-start;
  gap: 1rem;
  background-color: #ffffff20;
  padding: 0.7rem;
  backdrop-filter: blur(5px);
}

.contact-details .item:not(:first-child) {
  margin-top: 1rem;
}

.contact-details .item .img {
  margin-top: 0.15rem;
  max-width: 2.5rem;
  padding: 0.65rem;
}

.contact-details .item:first-of-type .img {
  background-color: var(--green);
}

.contact-details .item:nth-of-type(2) .img {
  background-color: var(--red);
}

.contact-details .item:nth-of-type(3) .img {
  background-color: var(--yellow);
}

.contact-wrapper .details {
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 1.1rem;
}

.contact-details .item .text {
  margin-top: 0.5rem;
  line-height: 1.7rem;
  color: var(--txtWhiteLight);
  max-width: 25rem;
}

.contact-details .item .text b {
  margin-bottom: 1rem;
  color: var(--txtWhite);
}

.contact2 .full-bg {
  opacity: 0.11;
}

.contact3.emergency-box {
  min-height: 60vh;
  width: 100%;
  position: relative;
  /* align-items: center; */
  justify-content: center;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.emergency-box .btn-top-bar {
  padding: 1rem 1.5rem;
  background-color: var(--red);
  margin-top: 1rem;
}

.map {
  width: 100%;
  height: 50vh;
  margin-bottom: -0.2rem;
}

.contact3 .home2-item {
  background-color: #342e2455;
  backdrop-filter: blur(5px);
}

.contact3 .four-column {
  gap: 1rem;
  padding: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(18rem, 100%), 1fr));
}

/* ---------------Facility Page ----------------- */
.facility-item {
  background-color: #ffffff;
  border-bottom: 0.1rem solid var(--tertiary);
}

.facility-content {
  padding: 1rem;
}

@media screen and (max-width:700px) {
  .facilities .two-column {
    gap: 2rem;
  }
}


/* -----------------BLOG ------------------- */

.blog-card {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  margin-top: 4rem;
  --padding: clamp(1rem, 5vw, 2.5rem);
  padding: var(--padding);
  gap: var(--padding);
  box-shadow: .2rem .5rem 2rem #00000005
}

.blog-img {
  align-self: stretch;
  order: 1;
  flex: 1 1 15rem;
}

.blog-img img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 3/2;
}

.blog-content {
  order: 2;
  flex: 1 1 25rem
}


@media screen and (min-width:700px) {
  .blog-card:nth-of-type(odd) .blog-img {
    order: 2;
  }

  .blog-card:nth-of-type(odd) .blog-content {
    order: 1
  }

}

.btn-blog,
.btn-blog a,
.btn-blog,
.nav-previous a,
.nav-next a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--primary);
  font-weight: 700;
}

.nav-previous a,
.nav-next a {
  display: block;
  text-align: center;
  font-weight: 400;
}

.btn-blog img {
  border-radius: 0 !important;
  height: 1rem;
  width: auto
}




/* ABout Page Starts --------------------------*/
.about2-item {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
}

.about2-item img {
  filter: invert(100%);
  max-width: 3rem;
}

.bg-half {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translatey(-50%);
  background-color: white;
}

.about2 .three-column {
  box-shadow: 0 1rem 2rem #00000040;
}

.vision,
.mission {
  background-color: #ffffff;
  position: relative;
  box-shadow: 0 0.5rem 1rem #00000008;
}

.vision-bg,
.mission-bg {
  position: absolute;
  top: -4rem;
  height: calc(100% + 8rem);
  width: 100%;
  background-color: var(--secondary);
  z-index: -2;
}

.vision-bg img,
.mission-bg img {
  width: 100%;
  height: 100%;
  mix-blend-mode: soft-light;
  opacity: 0.5;
  filter: saturate(0);
}

.vision-bg {
  left: -50%;
}

.mission-bg {
  right: -50%;
}




.masonry {
  columns: 4;
  column-gap: 16px;
}

@media (max-width: 1200px) {
  .masonry {
    columns: 3;
  }
}

@media (max-width: 992px) {
  .masonry {
    columns: 2;
  }
}

.masonry .grid {
  display: inline-block;
  margin-bottom: 1rem;
  position: relative;
}

.masonry .grid img {
  width: 100%;
  /* border-radius: 5px; */
}

.masonry .grid__title {
  font-size: 28px;
  font-weight: bold;
  margin: 0px 0px 0.625rem 0px;
}

.masonry .grid__author {
  font-size: 0.875rem;
  font-weight: 300;
}

.masonry .grid__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.masonry .grid__body {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 1.875rem 1.875rem;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.masonry .grid__tag {
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
  padding: 0.315rem 0.94rem;
  margin-bottom: 0.3125rem;
}

.mt-auto {
  margin-top: auto;
}





/* ---------------------------------- */

/* --------------Service Page */

.service1-wrapper {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 4rem;
}

.service1-sidebar {
  justify-self: flex-end;
  order: 2;
  flex: 1 1 14rem;
}

.service-list {
  position: sticky;
  top: 2.5rem;
  background-color: white;
  list-style: none;
  padding: clamp(1rem, 10vw, 2.5rem);
}

.service-list li {
  font-size: 0.94rem;
  color: var(--txtLight);
  line-height: 1.4rem;
  text-transform: capitalize;
}

.service-list li a {
  color: var(--txtLight);
  text-decoration: none;
}

.service-list li a:hover {
  color: var(--txtDark);
}

.service-list li.active>a {

  color: var(--primary);
  font-weight: 700;
}

.service-list li.active {

  color: var(--primary);
  font-weight: 700;
}

.service-list li:not(:first-of-type) {
  margin-top: 1rem;
}

.service1-content {
  order: 2;
  flex: 1.7 1 30rem;
}

.service1-img {
  margin-bottom: 2rem;
  position: relative;
}


.service1-img img {
  object-fit: cover;
  object-position: center;
  aspect-ratio: 3/2;
}

.service1-content strong {
  color: var(--txtLight);
}


.service1-content strong {
  color: var(--txtDark);
  font-weight: 700;
  letter-spacing: 0.02rem;
}

.service1-content .content>* {
  margin-block: 2rem;
}


.contactx .form-group:not(:first-of-type) {
  margin-top: 2rem;
}

.contactx .form-group {
  max-width: unset;
}

.contactx label {
  display: block;
  color: var(--txtLight);
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.bg-contact.contactx label {
  color: var(--txtWhite);
}

.contactx .field {
  border: none;
  padding: 0.8rem 1rem;
  width: 100%;
  color: #fff;
  border-bottom: 0.1rem solid var(--tertiary);
  background-color: white;
}

.bg-contact.contactx .field {
  backdrop-filter: blur(5px);
  background-color: #ffffff10;
}

.service1-sidebar .contactx .two-column {
  gap: 2rem;
}

.contactx textarea {
  resize: none;
}

.contactx select * {
  color: var(--txtLight);
}

.contactx input::placeholder {
  color: #ffffff70;
}

.contactx .field:focus {
  outline: none;
  border: 0.1rem solid var(--tertiary);
  padding: 0.75rem 1rem;
}

.contactx .two-column {
  align-items: flex-start;
}

.btn-submit {
  margin-left: auto;
}



.svs-emergency {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}


.fellow1 .flex-13 {
  gap: 0;
  align-items: stretch;
}

.fellowship-item:not(:last-of-type) {
  border-bottom: 0.1rem solid var(--tertiary);
}

.fellowship-item .col1 {
  padding: 1rem;
  background-color: var(--secondary);
}

.fellowship-item .col2 {
  padding: 1rem;
  background-color: white;
}


/* ----------------Article--------------- */
article {
  background-color: white;
  max-width: 55rem;
  margin-inline: auto;
}


.entry-content {
  padding: 1rem clamp(1rem, 5vw, 4rem);
}

article h1,
article h2,
article h3,
article h4 {
  max-width: 58rem;
  margin-inline: auto;
  color: var(--txtDark);
}


article p,
.service1-content .content p {
  font-size: 1.1rem;
  line-height: 2.1rem;
  color: var(--txtLight);
}


.entry-content>* {
  margin-block: 1.3rem;
}

article ul li,
article ol li,
.service1-content .content ul li,
.service1-content .content ol li {
  line-height: 2.1rem;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--txtLight);
  margin-left: 1rem;
}


article ul li:not(:last-of-type),
article ol li:not(:last-of-type),
.service1-content .content ul li:not(:last-of-type),
.service1-content .content ol li:not(:last-of-type) {
  margin-bottom: 1.5rem;
}


@media screen and (max-width:700px) {

  article p,
  .service1-content .content p {
    font-size: 1rem;
    line-height: 2rem;
  }

  article ul li,
  article ol li,
  .service1-content .content ul li,
  .service1-content .content ol li {
    font-size: 1rem;
  }
}



article ul li::marker,
article ol li::marker,
.service1-content .content ul li::marker,
.service1-content .content ol li::marker {
  color: var(--txtDark);
  font-weight: 700;
}

.wp-block-embed iframe {
  height: auto;
  width: 100%;
  aspect-ratio: 16/9;
}

figcaption {
  margin-inline: auto;
  max-width: max-content;
  color: var(--txtLight);
}

.attachment-post-thumbnail,
.size-post-thumbnail,
.wp-post-image {
  position: relative;
  width: 100%;
  height: auto;
}

.entry-content img {
  border-radius: 0.8rem;
}

.posts-navigation,
.post-navigation {
  max-width: max-content;
  margin-inline: auto;
  margin-top: 2rem;
}

.posts-navigation .nav-links,
.post-navigation .nav-links {
  max-width: max-content;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

@media screen and (max-width:700px) {

  .posts-navigation .nav-links,
  .post-navigation .nav-links {
    font-size: 0.8rem;
  }

}





@media screen and (max-width:700px) {

  .text-heading1 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }

  .text-heading2 {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }

  .text-heading3 {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }

  .text-heading4 {
    font-size: 1.15rem;
  }

  .text-body {
    font-size: 0.95rem;
    line-height: 1.8rem;
  }

  .text-mb-center {
    text-align: center;
    margin-inline: auto;
  }

  .mb-center {
    margin-inline: auto;
  }

  .mt-mb-4 {
    margin-top: 3rem;
  }

  .img-extra {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .two-column {
    gap: 2.5rem;
  }

  .pb-mb-0 {
    padding-block-end: 0;
  }

  .my-6 {
    margin-block: 4rem;
  }

  .my-8 {
    margin-block: 6rem;
  }

  .home1 .text-heading1 {
    margin-top: 2.5rem;
    font-size: 2.5rem;
    line-height: 3.8rem;
  }

  .logo-bg {
    top: 40%;
    height: auto;
    width: 60%;
  }

  .mb-order-1 {
    order: 1;
  }

  .mb-order-2 {
    order: 2;
  }
}




/* Hide Unhide Class */

@media screen and (max-width:700px) {
  .mb-hide {
    display: none;
    visibility: hidden;
  }
}

@media screen and (min-width:700px) {
  .pc-hide {
    display: none;
    visibility: hidden;
  }
}

/* Animation ------------------ */
.emergency img {
  animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) infinite;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {

  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-3px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(3px, 0, 0);
  }
}


/* Animations */

.fade-bottom-init {
  translate: 0 2rem;
  opacity: 0;
  transition: translate 700ms ease-out calc(var(--order) * 100ms),
    opacity 700ms linear calc(var(--order) * 100ms);
}

.fade-right-init {
  translate: 2rem 0rem;
  opacity: 0;
  transition: translate 700ms ease-out calc(var(--order) * 100ms),
    opacity 700ms linear calc(var(--order) * 100ms);
}

.fade-left-init {
  translate: -2rem 0rem;
  opacity: 0;
  transition: translate 700ms ease-out calc(var(--order) * 100ms),
    opacity 700ms linear calc(var(--order) * 100ms);
}

.fade-in {
  translate: 0 0;
  opacity: 1;
}




/* Lite  Youtube----------- */


lite-youtube {
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  width: 100%;
}



/* responsive iframe with a 16:9 aspect ratio
  thanks https://css-tricks.com/responsive-iframes/
*/

lite-youtube::after {
  content: "";
  display: block;
  padding-bottom: calc(100% / (16 / 9));
}

lite-youtube>iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;

}

/* play button */
lite-youtube>.lty-playbtn {
  display: block;
  width: 68px;
  height: 48px;
  position: absolute;
  cursor: pointer;
  transform: translate3d(-50%, -50%, 0);
  top: 50%;
  left: 50%;
  z-index: 1;
  background-color: transparent;
  /* YT's actual play button svg */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
  filter: grayscale(100%);
  transition: filter .1s cubic-bezier(0, 0, 0.2, 1);
  border: none;
}

lite-youtube:hover>.lty-playbtn,
lite-youtube .lty-playbtn:focus {
  filter: none;
}

/* Post-click styles */
lite-youtube.lyt-activated {
  cursor: unset;
}

lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated>.lty-playbtn {
  opacity: 0;
  pointer-events: none;
}

.lyt-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}


/* Video--------------------------- */
.video-card {
  background-color: white;
}

.video-card iframe {
  border-radius: clamp(0.2rem, 5vw, 0.8rem) clamp(0.2rem, 5vw, 0.8rem) 0 0;
  max-width: 100%;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}

.yt-tm-item {
  background-color: white;
  padding: 0.6rem;
  box-shadow: 0 0.4rem 0.6rem #00000008;
}

.img-invert {
  filter: invert(100%);
}

.gallery1-item {
  overflow: hidden;
  position: relative;
  box-shadow: 0.1rem 0.4rem 8rem #02243a0a;
  transition: all 250ms ease-out;
}

.gallery1-item .content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  background-color: #ffffff;
  text-align: center;
  color: var(--txtLight);
  position: relative;
  z-index: 1;
}

.gallery1-item img {
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
  transition: all 250ms ease-out;
}

.gallery1-item:hover {
  box-shadow: 0.1rem 0.5rem 1.5rem #02243a1c;
  transform: translateY(-0.5rem);
}

.gallery1-item:hover img {
  transform: scale(1.05);
}



@media screen and (max-width:700px) {
  .top-bar-wrapper {
    justify-content: space-between;
  }

  .top-bar-item {
    max-width: unset;
    width: 100%;
    padding: 0.7rem;
  }

  .top-bar-item img {
    max-width: 1.5rem;
  }

  .top-bar-wrapper .col1,
  .top-bar-wrapper .col2 {
    justify-content: space-between;
    gap: 1rem;
  }

  .top-bar-item .text-body,
  .top-bar-wrapper p {
    line-height: 1rem;
    font-size: 0.7rem;
  }

  .top-bar-wrapper .btn-top-bar {
    max-width: 100%;
    width: 100%;
  }

  .btn-top-bar {
    padding: 1rem;
    line-height: 1rem;
    font-size: 0.7rem;
  }

  .top-bar .ab-container {
    padding: 0;
  }

  .home4 .col1 {
    width: 100%;
    height: 100%;
    min-height: 40vh;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .home4-bg2 {
    width: 100%;
    height: 100%;
  }

  .home4 .flex-13 .col2 {
    order: 1;
  }

  .home6 .glide__arrows {
    bottom: 0;
    position: static;
    margin-top: 2rem;
  }

  .home6 .col1 {
    margin-bottom: 0rem;
  }

  .testi-item {
    transform: translateX(0)
  }

  .glide4 .glide__arrows {
    transform: translateY(0);
    margin-top: 0;
    position: static;
  }

  .footer-bottom .two-column {
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-bottom .two-column p:last-of-type {
    justify-self: center;
  }

  .footer-nav .col2 {
    justify-self: center;
  }
}

.team-head-2 {
  display: none;
}


.back-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border: none;
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}


.back-to-top-btn svg {
  width: 24px;
  height: 24px;
}

.back-to-top-btn:hover {
  background-color: #0056b3;
}


.back-to-top-btn.show {
  display: flex;
  opacity: 1;
}

.slide-with-overlay {
  position: relative;
}

.slide-overlay {
  position: absolute;
  top: -13%;
  left: 3%;
  width: 94%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 20px;
}

.slide-overlay h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.slide-overlay p {
  font-size: 16px;
  text-align: center;
}

.modal-header .btn-close {
  background: transparent;
  border: none;
}

.modal-header .btn-close:hover {
  opacity: 0.7;
}