/*! tailwindcss v2.2.14 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

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

/**
Use a more readable tab size (opinionated).
*/

html {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

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

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
}

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

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

/**
Add the correct font weight in Edge and Safari.
*/

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

/**
Add the correct font size in all browsers.
*/

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button {
  /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

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

/*
Add the correct display in Chrome and Safari.
*/

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */


h1,
h2,
h3,
h4,
h5,
hr,
p {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 1 */
  line-height: 1.5;
  /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: currentColor;
  /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button {
  cursor: pointer;
}

/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */

h1,
h2,
h3,
h4,
h5 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
iframe {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

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

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */

[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

/** Site Header **/

.site-header {
  transition: background-color 0.25s ease-in-out;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7203256302521008) 0%, rgba(0, 0, 0, 0) 100%);
  position: fixed;
  z-index: 10;
  display: flex;
  width: 100vw;
  justify-content: space-between;
  background-color: transparent;
  padding-top: 1.5rem;
  padding-right: 1rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .site-header {
    padding-right: 2rem;
  }
}

@media (min-width: 768px) {
  .site-header {
    padding-right: 5rem;
  }
}

.site-header.is-fixed {
  /* background-color:rgba(0, 49, 255, 0.75); */
  background: #011940;
  box-shadow: 0 0 10px rgb(0 0 0 / 75%);
}

.site-header.is-fixed .blue-border-btn {
  border-color: white;
}

.site-header.is-fixed .blue-border-btn:hover {
  background: white;
  color: #011940;
}

.contact-submit-btn {
  border-color: #0031ff;
  color: #0031ff;
  transition: border-color 0.25s ease-in-out;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 1.5rem;
  border-width: 2px;
  background-color: transparent;
  padding-left: 4rem;
  padding-right: 4rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-transform: uppercase;
}

.blue-border-btn {
  border-color: #0031ff;
  transition: border-color 0.25s ease-in-out;
  font-size: 15px;
  transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, color 0.25s ease-in-out;
  display: inline-block;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 1.5rem;
  border-width: 2px;
  background-color: transparent;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.blue-border-btn:hover {
  background: #0031ff;
}

.white-border-btn {
  border-color: white;
  border-width: 1px;
  font-size: 14px;
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
  display: inline-block;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 1.5rem;
  background-color: transparent;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.white-border-btn:hover {
  background: white;
  color: #0031ff;
}

.site-logo {
  width: 385px;
}

/** Site Footer **/

.site-footer {
  background-color: #011940;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer-contact-text {
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

/** Top Banner Section **/

@media (min-width: 769px) and (max-width: 980px) {
  .contact-right-side .form-field.full-screen-banner {
    padding-left: 0;
    padding-right: 0;
  }
}

.full-screen-banner {
  position: relative;
  display: flex;
  height: 100vh;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.page-title {
  color: white;
  font-size: 56px;
  line-height: 1.4;
  font-weight: 300;
}

.page-subtitle {
  color: #ffd45c;
  line-height: 1.5;
  padding-top: 2rem;
  font-weight: 400;
}

.schedule-consult-box {
  background: #0031ff;
  width: 725px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  display: flex;
  max-width: 100%;
  align-items: center;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.schedule-consult-box.hide {
  display: none;
}

.schedule-consult-box .white-border-btn {
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
  margin-left: 3rem;
}

.schedule-consult-box * {
  color: white;
}

.schedule-consult-close-button {
  position: absolute;
  right: 20px;
  top: 10px;
}

/** White Section w/ Info Circles **/

.white-section {
  display: flex;
  justify-content: space-between;
  padding-top: 7rem;
  padding-bottom: 7rem;
  vertical-align: middle;
}

.white-section p {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.white-section .left-side {
  width: 45%;
}

.white-section .right-side {
  width: 45%;
  z-index:1;
}

.white-section .right-side {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.info-circle {
  width: calc(50% - 3rem);
  background-image: url('./resources/images/blue-circle.svg');
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
}

.info-circle h2{
  font-family: 'untitled_sans';
}

@media screen and (min-width: 981px) {
  .clean-energy-header {
    max-width: 340px;
  }
}

/** Body Banner **/

.body-banner {
  min-height: 350px;
  z-index: 10;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.body-banner-content-box {
  background-color: #0031ff;
  width: 35%;
  min-width: 575px;
  margin-right: 7rem;
  margin-left: auto;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.mobile-body-banner-content-box {
  background-color: #0031ff;
  width: calc(100% - 50px);
  margin: 0 auto;
  top: -75px;
  position: relative;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.mobile-body-banner-content-box {
  display: none;
}

.body-banner-content-box h2,
  .body-banner-content-box p,
  .mobile-body-banner-content-box h2,
  .mobile-body-banner-content-box p {
  color: white;
}

.body-banner-content-box p, .mobile-body-banner-content-box p {
  margin-top: 2rem;
}

/** Brand Carousel **/

.brand-carousel-section {
  background-color: rgba(112, 112, 112, 0.13);
  z-index: 10;
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}

.brand-carousel-wrapper h2 {
  color: #011940;
  margin-bottom: 3rem;
}

.brand-carousel {
  margin-top: 50px;
}

.brand-carousel,
  .testimonial-carousel {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.brand-logo {
  max-height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.brand-carousel .swiper-wrapper{
  align-items:center;
}

/** Testimonial Carousel **/

.testimonial-carousel-wrapper {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.testimonial-name {
  font-size: 20px;
  color: #0031ff;
  margin-top: 3rem;
  text-transform: uppercase;
}

.swiper-scrollbar-drag {
  background: #0031ff;
}

.swiper-scrollbar {
  margin-top: 50px;
  position: relative !important;
  height: 3px !important;
}

/** News Section **/

.featured-news-wrapper {
  padding-bottom: 7rem;
}

.featured-news-wrapper h2 {
  color: #011940;
}

.news-swiper-buttons {
  max-width: 82%;
  position: relative;
  bottom: 1.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.featured-news-wrapper .swiper-button-prev,
  .featured-news-wrapper .swiper-button-next {
  background: #e8e8e8;
  color: #0031ff;
}

.featured-news-wrapper .swiper-button-prev {
  border-right: 1px solid white;
  cursor: pointer;
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-right: 1.25rem;
  padding-left: 1.5rem;
}

.featured-news-wrapper .swiper-button-next {
  border-left: 1px solid white;
  cursor: pointer;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-right: 1.5rem;
  padding-left: 1.25rem;
}

.news-article {
  margin-top: 3rem;
  height: auto;
}

.article-title{
  font-family: 'untitled_serif';
}

.article-featured-image{
  background-size: cover;
  background-position: center;
}

.article-featured-image,
  .article-content {
  width: 50%;
}

.article-content {
  background-color: #0031ff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 2rem;
  padding-left: 2.5rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.article-content hr {
  height: 2px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  opacity: 0.5;
}

.article-category {
  font-size: 18px;
  text-transform: uppercase;
}

.news-article {
  display: flex;
}

.featured-news-wrapper {
  margin-right: 0px;
  margin-left: auto;
  padding-left: 25px;
}

.read-article-button {
  font-size: 14px;
  position: relative;
  margin-top: auto;
  display: inline-block;
  cursor: pointer;
  padding-top: 3rem;
  text-transform: uppercase;
}

.read-article-button i {
  border-width: 1px;
  color: #ffd45c;
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
  margin-right: 0.5rem;
  display: inline-flex;
  height: 0px;
  width: 0px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  padding: 1.25rem;
}

.read-article-button:hover i {
  background-color: white;
  color: #0031ff;
}

/** Instagram Section **/

.instagram-section-wrapper {
  background-color: #ececec;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.instagram-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.instagram-section-header h3,
  .instagram-section-header a {
  color: #0031ff;
}

.instagram-link {
  display: flex;
  align-items: center;
}

.instagram-link span {
  font-size: 14px;
}

.instagram-link .instagram-icon {
  border-width: 1px;
  border-color: #0031ff;
  font-size: 21px;
  margin-right: 0.5rem;
  display: inline-flex;
  height: 0px;
  width: 0px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 1.25rem;
}

/** Schedule Consult Section **/

.schedule-consult-section {
  background: #0031ff;
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}

.schedule-consult-section h2 {
  margin-bottom: 5rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

/** Contact Section **/

.contact-popup {
  margin: 25px;
  width: calc(100% - 50px);
  height: calc(100% - 50px);
  display: none;
  box-shadow: 0 0 10px 2px rgb(0 0 0 / 25%);
  position: fixed;
  z-index: 10;
  overflow-y: scroll;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

input,
  textarea {
  background: rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
}

.form-field {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}

.contact-header {
  display: flex;
  justify-content: space-between;
  padding-top: 3rem;
}

.contact-body {
  display: flex;
  justify-content: space-between;
  padding: 5rem;
}

.contact-left-side {
  width: 35%;
  max-width: 475px;
}

.contact-right-side {
  width: 60%;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
}

.checkbox-field input {
  margin-top: 7px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #0031ff;
  background-color: transparent;
  padding: 7px;
  cursor: pointer;
}

.checkbox-field input:checked {
  background: blue;
}

.checkbox-field label {
  padding-left: 15px;
  color: #0031ff;
  cursor: pointer;
}

button.contact-popup-close-button {
  position: absolute;
  right: 25px;
  top: 20px;
}

@media (min-width: 769px) and (max-width: 980px) {
  .contact-right-side .form-field.form-submit-row {
    padding-left: 0;
    padding-right: 0;
  }
}

.form-submit-row {
  margin-top: 2.5rem;
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-content > * {
  text-align: center;
  margin: 10px;
}

.footer-contact-text{
  font-size:12px;
}

/** Media Queries **/

@media (max-width: 980px) {
  h2 {
    font-size: 35px !important;
  }

  h3 {
    font-size: 25px !important;
  }

  h4 {
    font-size: 20px !important;
  }

  h5 {
    font-size: 16px !important;
  }

  .testimonial-name {
    font-size: 18px;
  }

  .page-title {
    font-size: 42px;
  }

  .site-logo {
    max-width: 300px;
  }

  .full-screen-banner {
    min-height:700px !important;
  }

  .white-section {
    flex-direction: column;
  }

  .white-section .left-side,
    .white-section .right-side {
    width: 100%;
  }

  .white-section .right-side {
    max-width: 485px;
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-content > * {
    margin: 10px;
  }

  .mobile-body-banner-content-box {
    display: block;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .mobile-body-banner-content-box + .white-section {
    padding-top: 2rem;
  }

  .body-banner-content-box {
    display: none;
  }

  .body-banner {
    padding-top: 50%;
    padding-bottom: 0;
  }

  .featured-news-wrapper {
    padding-right: 25px;
  }

  .news-swiper-buttons {
    max-width: 100%;
  }

  .info-circle {
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .white-section h2 {
    margin-bottom: 50px;
  }

  .white-section .info-circle h2 {
    margin-bottom: 0;
  }

  .schedule-consult-section h2 {
    margin-bottom: 3rem;
  }

  .contact-body {
    flex-direction: column;
    padding: 2rem;
  }

  .contact-left-side,
    .contact-right-side {
    width: 100%;
    max-width: 100%;
  }

  .contact-header {
    padding-top: 2rem;
  }

  .footer-contact-text{
    text-align:center!important;
  }
}

@media (min-width: 769px) and (max-width: 980px) {
  .contact-right-side .form-field:first-of-type {
    padding-left: 0;
  }

  .contact-right-side .form-field:nth-of-type(2) {
    padding-right: 0;
  }

  .contact-right-side .form-field.w-full {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 28px !important;
  }

  h3 {
    font-size: 25px !important;
  }

  h4 {
    font-size: 18px !important;
  }

  .page-subtitle {
    font-size: 18px;
  }

  .schedule-consult-box {
    width: 100%;
    flex-direction: column;
  }

  .schedule-consult-box .contact-btn {
    margin-left: 0 !important;
    margin-top: 15px !important;
  }

  .news-article {
    flex-direction: column;
  }

  .article-featured-image,
    .article-content {
    width: 100%;
  }

  .article-content {
    padding: 1.5rem;
  }

  .article-featured-image {
    padding-top: 50%;
  }

  .testimonial-carousel-wrapper, .white-section, .brand-carousel-section, .instagram-section-wrapper, .schedule-consult-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .featured-news-wrapper {
    padding-bottom: 4rem;
  }

  .instagram-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .instagram-link {
    margin-top: 15px;
  }

  .form-field {
    width: 100% !important;
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (max-width: 500px) {
  .page-title {
    font-size: 34px;
  }

  .site-logo {
    width: 225px;
  }

  .blue-border-btn {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .info-circle {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 0;
    margin-right: 0;
    height: 235px;
  }

  .info-circle h5 {
    width: 50%;
    margin: 0 auto;
  }

  .form-submit-row {
    flex-direction: column;
  }

  .checkbox-field {
    width: 100% !important;
  }

  .contact-submit-btn {
    margin-top: 25px;
  }
}

@media (max-width: 400px) {
  .site-logo {
    width: 150px;
  }

  .blue-border-btn {
    padding: 0;
    border: 0;
  }

  .blue-border-btn:hover {
    background: transparent !important;
    color: white !important;
  }
}

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

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

.ml-2 {
  margin-left: 0.5rem;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

.w-1\/2 {
  width: 50%;
}

.w-5\/12 {
  width: 41.666667%;
}

.w-full {
  width: 100%;
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.overflow-hidden {
  overflow: hidden;
}

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

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

*, ::before, ::after {
  --tw-shadow: 0 0 #0000;
}

*, ::before, ::after {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

@font-face {
  font-family: untitled_sans;

  src: url('./resources/fonts/UntitledSans-Medium.woff2');

  font-weight: 500;
}

@font-face {
  font-family: untitled_sans;

  src: url('./resources/fonts/UntitledSans-Regular.woff2');

  font-weight: 400;
}

@font-face {
  font-family: untitled_sans;

  src: url('./resources/fonts/UntitledSans-Light.woff2');

  font-weight: 300;
}

@font-face {
  font-family: untitled_serif;

  src: url('./resources/fonts/UntitledSerif-Regular.woff2');

  font-weight: 400;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

* {
  font-family: 'untitled_sans';
}

.serif {
  font-family: 'untitled_serif'!important;
}

.sans {
  font-family: 'untitled_sans'!important;
}

html {
  display: block;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

.overflow-hidden {
  overflow: hidden;
}

.page-center {
  max-width: 1125px;
  margin: 0 auto;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}

h2 {
  font-size: 45px;
  color: #0031ff;
  line-height: 1.25;
  font-weight: 400;
  font-family: 'untitled_serif';
}

h3 {
  font-size: 30px;
  font-weight: 400;
}

h4 {
  font-size: 25px;
  font-weight: 400;
}

h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

/* Magnific Popup CSS */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
  .mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
  .mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
  .mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */

  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    transform-origin: 0;
  }

  .mfp-arrow-right {
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

@media (min-width: 640px) {
  .sm\:block {
    display: block;
  }

  .sm\:hidden {
    display: none;
  }
}

@media (min-width: 768px) {
}

@media (min-width: 1024px) {
}

@media (min-width: 1280px) {
}

@media (min-width: 1536px) {
}