/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

/**
 * 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;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 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; /* 1 */
  font-size: 1em; /* 2 */
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * 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; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * 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;
}

/* 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; /* 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,
select { /* 1 */
  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;
}

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

/**
 * 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; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * 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; /* 1 */
  font: inherit; /* 2 */
}

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

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
/*****************************************/
/* Flex layout    */
/*****************************************/
.row{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.row>*{
  padding: 0 15px;
}
ul, ol{
  padding: 0;
  margin: 0;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.flex-wrap{
  flex-wrap: wrap;
}
.d-flex {
  display: flex;
}
.justify-content-between {
  justify-content: space-between;
}
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
.white-text{
  color: #fff;
}
.text-center{
  text-align: center;
}
.text-uppercase{
  text-transform: uppercase;
}

@media(max-width: 767px){
  .col-6 {
    flex: 0 0 auto;
    width: 100%;
  }
}


/*****************************************/
/* Visibilty classes */
/*****************************************/


.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

/*****************************************/
/* Responsive visibilty classes     */
/*****************************************/

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
/*   .content-wrapper {
    padding: 0;
  } */
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}
header .custom-social-icons a:last-child .custom-social-links__icon{
  margin-right: 0;
}
header .custom-social-links__icon svg{
  height: 25px;
}
/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}
header .header-wrapper {
  padding-top: 30px;
}
header.header {
  left: 0;
  padding: 0;
  position: fixed;
  top: 0;
  transition: all .3s ease;
  width: 100%;
  z-index: 111;
}
.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

/* .header__logo--main {
padding-top: 1rem;
} */

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}




.header__search .hs-search-field__input {
  
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  
  height: 45px;
  padding: 0 0.7rem;
}




.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}

header .header-nav-row-1 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
header .header-contacct {
  margin-right: 40px;
}
header .custom-social-icons{
  margin-bottom: 0;
}
header .header-contact-wrap .icon-item .fa-phone, header .header-contact-wrap .phone a {
  color: #fff;
  font-size: 28px;
}
header .header-contact-wrap .icon-item .fa-phone{
  font-size: 20px;
  margin-left: 8px;
}
header .custom-social-links__icon svg:hover {
  fill: #95c11f !important;
}

header.sticky .custom-social-links__icon svg:hover {
  fill: #774e29 !important;
}
header.sticky .header-contact-wrap .phone a:hover{
  color: #774e29;
}
header.header.sticky {
  background: #95c11f;
}
header.header.sticky .header-wrapper {
  padding-bottom: 10px;
  padding-top: 10px;
}
header .header-contact-wrap .phone {
  align-items: center;
  display: flex;
}
header .header-contact-wrap .icon-item{
  line-height: 20px;
  margin-left: 5px;
}

@media(min-width: 992px){
  header .header-contact-wrap .phone a:hover{
    color: #95c11f;
  }
}
/*****************************************/
/* Footer    */
/*****************************************/
footer.footer{
  padding: 100px 0 70px;
}
footer ul{
  list-style: none;
  padding: 0;
}
footer .hs-menu-wrapper ul, footer .logo__image-gallery{
  display: block;
  padding-top: 20px;
}
footer .section-title h2 {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}
footer a{
  color: #000;
}
footer a:hover{
  color: #95c11f;
}
footer .foote__row-3{
  margin-top: 60px;
}
footer .icon-value{
  width: 20px;
  padding-right: 25px;
  display: inline-block;
  flex-shrink: 0;
}
footer ul li{
  padding-bottom: 8px;
}
footer .footer__logo{
  margin-bottom: 30px;
}
footer ul li.location{
  align-items: baseline;
  display: flex;
}
footer .footer-row-wrapper > .row{
  flex-wrap: nowrap;
  justify-content: space-between;
}
footer ul, footer ul p, footer .footer-copyrights .hs_cos_wrapper > p:last-child{
  margin-bottom: 0;
}
footer .custom-social-links__icon svg{
  fill: #000;
}
footer .custom-social-icons > .custom-social-links__link:first-child span{
  margin-left: 0;
}
footer .custom-social-icons{
  margin-top: 35px;
  margin-bottom: 0;
}
footer .custom-social-links__icon svg:hover {
  fill: #95c11f !important;
}
footer li.email {
    white-space: nowrap;
}
footer .custom-social-links__icon{
  margin: 0 2px;
  width: 30px;
}
@media(max-width: 1366px){
  footer .contact-info li a, footer p, footer span, footer li a {
    font-size: 16px;
  }
  footer .section-title h2{
    font-size: 20px;
  }
}
@media(max-width: 1200px){
  footer .footer-row-wrapper > .row {
    flex-wrap: wrap;
  }
  footer .footer-column{
    flex-basis: 33.33%;
    margin-bottom: 30px;
  }
}

@media(max-width: 991px){
  footer .footer-column{
    flex-basis: 50%;
  }
}
/* @media(max-width: 767px){
  footer .custom-social-icons{
    justify-content: center;
  }
} */
@media(max-width: 575px){
  footer .footer-column{
    flex-basis: 100%;
  }
  footer ul li.location, footer .custom-social-icons{
    justify-content: center;
  }
  footer.footer{
    text-align: center;
  }
}
/*****************************************/
/* Custom style   */
/*****************************************/
body{
  overflow-x: hidden;
  font-size: 18px;
  font-weight: 300;  
}
a{
  transition: all 0.3s ease; 
}
img{
  max-width: 100%;
}
a.theme-btn span.button-arrow{
  background: #7b9f19;
  display: inline-block;
  height: 52px;
  /*   border: 1px solid #7b9f19; */
  line-height: 55px;
  margin-left: 20px;
  padding: 0 20px 1px;
  vertical-align: bottom;
}
a.theme-btn span.button-arrow img, span.button-arrow img{
  width: 12px;
}
.hs_recaptcha .input{
  margin: 0 auto;
  text-align: center;
  display: table;
}
.hs_recaptcha{
  margin-bottom: 15px;
}
.hs-form textarea{
  width: 100% !important;
}
.hs-form .hs_submit .actions:after {
  background: #7b9f19;
  color: #fff;
  content: "\f105";
  display: inline-block;
  font-family: FontAwesome;
  height: 49px;
  line-height: 51px;
  padding: 0 20px 1px;
}
form .hs-button, form input[type=submit]:hover{
  background: #7b9f19;
}
/* a.theme-btn .button-arrow{
max-width: 10px;
} */
a.theme-btn{
  font-size: 20px;
  font-family: 'Source Sans Pro';
  padding: 0;
  height: 52px;
  color: #fff;
  line-height: 52px;
  font-weight: 600;
  padding: 0 20px;
  background: #95c11f;
  padding-right: 0;
  transition: all 0.3s ease;
  /*   border: 1px solid #95c11f; */
  cursor: pointer;
  display: inline-block;
  margin: 0 !important;
}
a.theme-btn.theme-brown-btn span.button-arrow{
  background: #5f3c1d;
  border: 1px solid #5f3c1d;
}
a.theme-btn:hover{
  background: #7b9f19;
  /*   border: 1px solid #7b9f19; */
}
a.theme-btn.theme-brown-btn:hover{
  background: #5f3c1d;
  /*   border: 1px solid #5f3c1d; */
}
a.theme-btn.theme-brown-btn{
  background: #774e29;
  /*   border: 1px solid #774e29; */
}
a.theme-btn:hover{
  color: #fff;
  font-weight: 600;
}
.section__title-row .section-title .title{
  text-align: center;
  padding-bottom: 35px;
}
.section__title-row .section-title .title span{
  display: block;
}
.section__title-row .section-title .primary-title{
  color: #774e29; 
  font-size: 24px;
  font-style: italic; 
  font-weight: 400;    
  line-height: 35px;
}
.section-title h2{
  margin-bottom: 0;
}
.padd-50{
  padding: 0 30px;
}
.section-intro-widget, .max__container{
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 15px;
}
.max__1300{
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}
.section__title-row .section-title .secondary-title{
  font-size: 45px;  
  font-weight: 300;
  color: #222222;
}

@media(max-width: 1800px){
  .section-intro-widget, .max__container{
    max-width: 1550px;
  }
}
@media(max-width: 1600px){
  .content-wrapper{
    max-width: 1320px !important;
  }
  .section-intro-widget, .max__container{
    max-width: 1380px;
  }
}
@media(max-width: 1400px){
  .content-wrapper{
    max-width: 1140px !important;
  }
  .section-intro-widget, .max__container{
    max-width: 1180px;
  }
}
@media(max-width: 1200px){
  .content-wrapper{
    max-width: 960px !important;
  }
  .section-intro-widget, .max__container{
    max-width: 980px;
  }  
}
@media(max-width: 991px){
  .content-wrapper{
    max-width: 720px !important;
  }
  .section-intro-widget, .max__container{
    max-width: 740px;
  }  

}
@media(max-width: 991px) and (min-width: 768px){
  .body-container-wrapper .hs-image__grid__container li.hs-image__grid__list__item{
    flex-basis: calc(50% - 15px) !important;
  }
}
@media(max-width: 767px){
  .section__title-row .section-title .secondary-title {
    font-size: 35px;
  }
  .content-wrapper{
    max-width: 540px !important;
  }
  .section-intro-widget, .max__container{
    max-width: 580px;
  }
}

@media(max-width: 575px){
  a.theme-btn{
    display: inline-flex;
    padding: 0 0 0 12px !important;
    height: auto;
    line-height: unset;
    text-align: left;
    align-items: center;
  }
}
/*****************************************/
/* Font    */
/*****************************************/
@font-face {
  font-family: 'Source Sans Pro';
  src: url('https://2603296.fs1.hubspotusercontent-na1.net/hubfs/2603296/Cabins_For_Schools_2024_Redesign/Font/SourceSansPro/SourceSansPro-Light.woff2') format('woff2'),
    url('https://2603296.fs1.hubspotusercontent-na1.net/hubfs/2603296/Cabins_For_Schools_2024_Redesign/Font/SourceSansPro/SourceSansPro-Light.woff2') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('https://2603296.fs1.hubspotusercontent-na1.net/hubfs/2603296/Cabins_For_Schools_2024_Redesign/Font/SourceSansPro/SourceSansPro-It.woff2') format('woff2'),
    url('https://2603296.fs1.hubspotusercontent-na1.net/hubfs/2603296/Cabins_For_Schools_2024_Redesign/Font/SourceSansPro/SourceSansPro-It.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('https://2603296.fs1.hubspotusercontent-na1.net/hubfs/2603296/Cabins_For_Schools_2024_Redesign/Font/SourceSansPro/SourceSansPro-Bold.woff2') format('woff2'),
    url('https://2603296.fs1.hubspotusercontent-na1.net/hubfs/2603296/Cabins_For_Schools_2024_Redesign/Font/SourceSansPro/SourceSansPro-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('https://2603296.fs1.hubspotusercontent-na1.net/hubfs/2603296/Cabins_For_Schools_2024_Redesign/Font/SourceSansPro/SourceSansPro-Semibold.woff2') format('woff2'),
    url('https://2603296.fs1.hubspotusercontent-na1.net/hubfs/2603296/Cabins_For_Schools_2024_Redesign/Font/SourceSansPro/SourceSansPro-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('https://2603296.fs1.hubspotusercontent-na1.net/hubfs/2603296/Cabins_For_Schools_2024_Redesign/Font/SourceSansPro/SourceSansPro-Regular.woff2') format('woff2'),
    url('https://2603296.fs1.hubspotusercontent-na1.net/hubfs/2603296/Cabins_For_Schools_2024_Redesign/Font/SourceSansPro/SourceSansPro-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body{
  font-family: 'Source Sans Pro' !important;
  font-weight: normal;
}

p,a, h1{
  font-family: 'Source Sans Pro' !important;
  font-weight: normal;
}

 h2, h3, h4, h5, h6{
  font-family: 'Source Sans Pro' !important;
   font-weight: 300;
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}
/* Module CSS */
/*****************************************/
/* All module CSS here to reduce Network Request    */
/*****************************************/


/******************/
/* Banner CSS */
/******************/
.internal-banner .banner-inner-content, .internal-banner .banner-btn-section{
  padding: 0 15px;
}
.internal-banner.banner-section .banner-description h2,
.internal-banner.banner-section .banner-secondary-title h2{
  color: #fff;
  font-weight: 100;
  font-size: 55px;
  line-height: 1.1;
  margin-bottom: 0;
}
.internal-banner.banner-section .logo-image-section img{
  max-width: 170px;
}
.internal-banner.banner-section .banner-title h1{
  margin-bottom: 10px;
  font-weight: 300;
  line-height: 1.1;
}
.internal-banner .banner-item{
  color: #fff;
  text-align: center;
  background-position: center;
  padding:170px 0 80px;
  /*   padding:150px 0 50px; */  
  /*   padding:300px 0 170px; */
  background-size: cover;
}
/* Banner without subtitle */
.banner-item.banner-img-item.mt-90 {
  padding: 220px 0 120px;
}
.internal-banner .banner-btn-section{
  margin-top: 70px;
}
.internal-banner a.theme-btn span.btn-arrow{
  height: 52px;
  line-height: 52px;
}
.internal-banner .banner-btn-section a.theme-btn.red-btn{
  background: #5d6e30;
}
.internal-banner .banner-btn-section .banner-btn-group{
  display: flex;
  justify-content: center;
}
.internal-banner .anner-title-section{
  margin-top: 30px;
}
.internal-banner .banner-btn-section a.theme-btn.red-btn span.btn-arrow{
  background: #536032;
}
.internal-banner .banner-btn-section a.theme-btn.red-btn:hover{
  background: #536032;
}
.internal-banner .primary-btn{
  margin-right: 30px;
}

.banner-section .banner-video-item{  
  overflow: hidden;
  padding: 350px 0 50px;    
  position: relative;
  text-align: center;      
}
.banner-section .banner-video-item video{
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.banner-section .banner-video-item .banner-inner-content{
  position: absolute;
  margin: 0 auto;  
  bottom: 0;
  color: #fff;
  align-items: center;
  background: transparent !important;
  display: flex;
  height: 100%;
  left: 50%;
  transform:translateX(-50%);
  padding: 40px;
  right: auto;
  text-align: center;
  top: 0;
  width: auto;
  z-index: 9;
}
.internal-banner .banner-video-content.banner-inner-contents{
  max-height: 700px;
  overflow: hidden;
}
@media(max-width: 1200px){
  .internal-banner .banner-item .banner-title h1{
    font-size: 45px;
  }
  .internal-banner.banner-section .banner-description h2, .sub-title h2{
    font-size: 35px;
  }
  .internal-banner .banner-inner-content {
    padding: 0 30px;
  }
  .internal-banner .banner-item{		
    padding:150px 0 50px;
  }
}


@media(max-width: 991px){
  .internal-banner .banner-item, .banner-item.banner-img-item.mt-90 {
    padding: 70px 0 50px;
  }
}
@media(max-width: 767px){
  .internal-banner .banner-btn-section .banner-btn-group{
    flex-direction: column;
  }
  .internal-banner.banner-section .banner-description h2, .sub-title h2{
    font-size: 28px;
  }
  
  .internal-banner .banner-item .banner-title h1, .sub-title h2{
    font-size: 35px;
  }
  .internal-banner .primary-btn{
    margin-right: 0;
    margin-bottom: 15px;
  }
  .internal-banner .banner-btn-section{
    flex-direction: column;
  }
}

/******************/
/* benefits CSS */
/******************/
.benefits-card-layout .card__item{
  flex-basis: calc(100%/4);
  padding: 0 15px;
}
.benefits-card-layout .card__item .card__title h3{
  margin-bottom: 30px;
  margin-top: 20px;
  font-size: 24px;
}
.benefits-card-layout .card__btn-section{
  text-align: center;
  margin-top: 10px;
}
.benefits-card-layout .card-box-wrapper {
  text-align: center;
}
.benefits-card-layout .card__description{
  margin-top: 15px;
}

@media(max-width: 991px){
  .benefits-card-layout .card__item{
    flex-basis: 50%;
    margin-bottom: 30px;
  }
}

@media(max-width: 767px){
  .benefits-card-layout .card__item{
    flex-basis: 100%;
  }
}

/******************/
/* blog-banner CSS */
/******************/
.internal-banner .banner-inner-content, .internal-banner .banner-btn-section{
  padding: 0 15px;
}
.internal-banner.banner-section .banner-description h2,
.internal-banner.banner-section .banner-secondary-title h2{
  color: #fff;
  font-weight: 100;
  font-size: 55px;
}
.internal-banner.banner-section .banner-title h2{
  margin-bottom: 10px;
  font-weight: 300;
  color:#fff;
}
.internal-banner .banner-item{
  color: #fff;
  text-align: center;
  background-position: center;
  padding:170px 0 80px;
  background-size: cover;
}
.internal-banner .banner-btn-section{
  margin-top: 70px;
}
.internal-banner a.theme-btn span.btn-arrow{
  height: 52px;
  line-height: 52px;
}
.internal-banner .banner-btn-section a.theme-btn.red-btn{
  background: #5d6e30;
}
.internal-banner .banner-btn-section .banner-btn-group{
  display: flex;
  justify-content: center;
}
.internal-banner .anner-title-section{
  margin-top: 30px;
}
.internal-banner .banner-btn-section a.theme-btn.red-btn span.btn-arrow{
  background: #536032;
}
.internal-banner .banner-btn-section a.theme-btn.red-btn:hover{
  background: #536032;
}
.internal-banner .primary-btn{
  margin-right: 30px;
}
.banner-section .banner-video-item.banner-item, .banner-section .banner-video-item.banner-item .banner-video-content{
  padding: 0;
}
.banner-section .banner-video-item.banner-item video{
  width: 100%;
}
.banner-section .banner-video-item.banner-item{
  position: relative;
}
.banner-section .banner-video-item.banner-item .banner-video-content{
  line-height: 0;
}
.banner-section .banner-video-item.banner-item::before{
  position: absolute;
  background: rgb(0 0 0 / 60%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.banner-section .banner-video-item.banner-item .banner-inner-content .banner-btn-section{
  margin: 0;
}

.banner-section .banner-video-item.banner-item .banner-inner-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.internal-banner .banner-video-content.banner-inner-contents{
  max-height: 700px;
  overflow: hidden;
}
@media(max-width: 1200px){
  .internal-banner .banner-item .banner-title h2{
    font-size: 45px;
  }
  .internal-banner.banner-section .banner-description h2, .sub-title h2{
    font-size: 35px;
  }
  .internal-banner .banner-inner-content {
    padding: 0 30px;
  }
  .internal-banner .banner-item{		
    padding:150px 0 120px;
  }
}


@media(max-width: 991px){
  .internal-banner .banner-item {
    padding: 100px 0 50px;
  }
}
@media(max-width: 767px){
  .internal-banner .banner-btn-section .banner-btn-group{
    flex-direction: column;
  }
  .internal-banner.banner-section .banner-description h2, .sub-title h2{
    font-size: 28px;
  }

  .internal-banner .banner-item .banner-title h2, .sub-title h2{
    font-size: 35px;
  }
  .internal-banner .primary-btn{
    margin-right: 0;
    margin-bottom: 15px;
  }
  .internal-banner .banner-btn-section{
    flex-direction: column;
  }
}
/******************/
/* blog-listing CSS */
/******************/
.blog-index {
	display: flex;
	flex-wrap: wrap;
	margin:0 -1rem; 
}
.blog-index__post { 
	padding: 1.4rem 1rem;
}
.blog-index__post-image {
	height: auto;
	max-width: 100%;
}
.blog-index__post-timestamp {
	display: block;
}
.blog-index__post-author {
	align-items: center;
	display: flex;
}
.blog-index__post-author-image {
	border-radius: 50%;
	height: auto;
	margin-right: 0.35rem;
	width: 30px;
}
.blog-index__post-tags,
.blog-index__post-title,
.blog-index__post-timestamp,
.blog-index__post-author,
.blog-index__post-image--small {
	margin: 0 0 0.4rem;
}

@media screen and (min-width: 768px) {
	.blog-index__post {
		flex: 0 0 calc(100% / 2);
	}
}

/******************/
/* blog-pagination CSS */
/******************/
.pagination {
  align-items: center;
  display: flex;
  justify-content: center;
}
.pagination__link {
  display: inline-flex;
  margin: 0 0.35rem;
}
.pagination__link,
.pagination__link:hover,
.pagination__link:focus,
.pagination__link:active {
  text-decoration: none;
}
.pagination__link--disabled {
  cursor: default;
  pointer-events: none;
}
.pagination__link--disabled .pagination__link-text {
  color: #B0C1D4 !important;
}
.pagination__link--first,
.pagination__link--prev {
  margin-right: 0.7rem;
}
.pagination__link--first {
  margin-left: 0;
}
.pagination__link--number {
  border: 2px solid transparent;
  border-radius: 6px;
  margin: 0 0.175rem;
  padding: 0.25rem 0.4rem;
}
.pagination__link--number:hover,
.pagination__link--number:focus,
.pagination__link--active {
  border-color: #B0C1D4;
}
.pagination__link--last,
.pagination__link--next {
  margin-left: 0.7rem;
}
.pagination__link--last {
  margin-right: 0;
}
.pagination__link-icon svg,
.pagination__link-icon svg {
  height: 16px;
  margin: 0 0.3rem;
  width: 16px;
}
.pagination__link--disabled .pagination__link-icon svg,
.pagination__link--disabled .pagination__link-icon svg {
  fill: #B0C1D4 !important;
}

/******************/
/* blog-search CSS */
/******************/
.hs-search-field {
  position: relative;
}
.hs-search-field__input {
  box-sizing: border-box;
  width: 100%;
}
.hs-search-field__bar button svg {
  height: 10px;
}
.hs-search-field__suggestions {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hs-search-field--open .hs-search-field__suggestions {
  border: 1px solid #000;
}
.hs-search-field__suggestions li {
  display: block;
  margin: 0;
  padding: 0;
}
.hs-search-field__suggestions #results-for {
  font-weight: bold;
}
.hs-search-field__suggestions a,
.hs-search-field__suggestions #results-for {
  display: block;
}
.hs-search-field__suggestions a:hover,
.hs-search-field__suggestions a:focus {
  background-color: rgba(0, 0, 0, 0.1);
  outline: none;
}

/******************/
/* blog-social-icons CSS */
/******************/
.blog-social-icons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.blog-social-links__icon {
  margin-right: 20px;
  margin-left: 0;
  display: inline-flex;
  background: transparent;
  height: 35px;
  margin: 0 .35rem;
  position: relative;
  width:35px;
}

.blog-social-links__icon svg {
  fill: #FFF;
  height: 30px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  width: auto;
  padding:3px;
}

.blog-social-links__icon svg:hover {
  fill: #fff !important;
}

.blog-social-links__icon:hover svg,
.blog-social-links__icon:focus svg,
.blog-social-links__icon:active svg {
  fill: #FFF;
}

@media(max-width: 767px){
  .blog-social-icons{
    justify-content: start;
  }
}

/******************/
/* card CSS */
/******************/
.cards {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.cards__card {
  align-items: center;
  align-self: flex-start;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
  max-width: 100%;
  width: 300px;
}

.card__image {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  padding: 0.7rem;
}

.card__text {
  padding: 0 0.7rem;
  width: 100%;
}

/******************/
/* card-gallery CSS */
/******************/
.card-gallery .card__list{
  display: flex;
  margin: 0 -15px;
  flex-wrap: wrap;
}
.card-gallery .card__item{
  flex-basis: calc(100%/3);
  padding: 0 15px;
}
.card-gallery .box-inner-content{
  position: relative;
}
.card-gallery .box-inner-content::after{
  position: absolute;
  content: "";
  background: #000;
  background: linear-gradient(180deg,rgba(0,0,0,.003),rgba(0,0,0,.9) 68%,#000);
  bottom: 0;
  opacity: 0.8;
  left: 0;
  width: 100%;
  height: 140px;
}
.card-gallery .card__list .box-layout{
  flex-basis: 20%;
  margin-bottom: 30px;
  position: relative;
}
.card-gallery .card__title h3{
  color: #222;
  padding-top: 15px;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 10px;
}

.card-gallery .card__description {
  margin-bottom: 45px;
}
.card-gallery .box-outer-content{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: #fff;
  /*   padding: 0 15px; */
  /*   height: 100%; */
  width: 100%;
  z-index: 1;
  transition: all 0.3s ease;
}
.card-gallery .card__description p{
  font-size: 18px;  
  font-weight: 400;
}
.box-layout:hover .box-outer-content{
  opacity: 1;
  min-height: 100%;
  z-index: 11;
  padding-bottom: 20px;
}
.card-gallery .card__list .box-layout:hover::before, .card-gallery .card__list .box-layout:hover::after{
  opacity: 1;
  z-index: 111;
}
.card-gallery .inner-layout{
  position: relative;
}
.card-gallery .card__list .box-layout::before{
  content: " ";
  border-left: 1px solid #004084;
  border-top: 1px solid #004084;
  border-bottom: 1px solid #004084;
  margin-right: 10px;
  padding: 10px 5px 10px 5px;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
}
.card-gallery .card__list .box-layout::after{
  content:" ";
  padding:10px 5px 10px 5px;
  border-right:1px solid #004084;
  border-top:1px solid #004084;
  border-bottom:1px solid #004084;
  margin-left:10px;
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
  z-index: 1;
  opacity: 0;
}

.card-gallery .box-outer-content-wrapper {
  padding: 0 15px;
  height: 100%;
}

.card-gallery .box-outer-content-wrapper .title h3{
  font-size: 35px; 
  font-weight: 200;
}
.card-gallery .title-section{
  position: absolute;
  bottom: 10px;
  left: 15px;
  z-index: 1;
}
.card-gallery  .box-image-item {
  position: relative;
}
.card-gallery .image-item img{
  width: 100%;
}
.card__list .title-section h3{
  color:#fff;
  margin-bottom: 0;
}
.card__list .card__image img {
  width: 100%;
}
.card-gallery a.theme-btn{
  font-size: 22px;
  position: relative;
  z-index: 1;
}
.card-gallery .card__image{
  line-height: 0;
}

.card-gallery .inner-layout::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  /*   border: 1px solid #004084; */
  top: 0;
  left: 0;
  opacity: 0;
}
.card-gallery .card__list .box-layout:hover .inner-layout::after{
  opacity: 1;
  z-index: 11;
}
.card-gallery .card__gallery-btn-section {
  position: absolute;
  bottom: -49px;
  left: 20px;
  z-index: 111;
  opacity: 0;
}
.card-gallery .box-layout:hover .card__gallery-btn-section{
  opacity: 1;
}

.card-gallery .theme-btn.theme-blue-btn span.button-arrow{
  background: #012951;
  border: 1px solid #012951;
}

.card-gallery .theme-btn.theme-blue-btn:hover{
  background: #012951;
  border: 1px solid #012951;
}
.card-gallery .theme-btn.theme-blue-btn{
  background: #004487;
  border: 1px solid #004487;
}
.card-gallery .theme-btn:hover{
  color: #fff;
  font-weight: 600;
}
.card-gallery .title h3{
  font-size: 28px;
  font-weight: 300;
}
.card__item:first-child:hover~.card__item:nth-child(4), .card__item:nth-child(4):hover~.card__item:nth-child(5),
.card__item:nth-child(3):hover~.card__item:nth-child(6){
  transform: translateY(50px);
}
@media(max-width: 1400px){
  .card-gallery .theme-btn{
    font-size: 16px;
  }
}
@media(max-width: 1200px){
  .card-gallery .card__list .box-layout{
    flex-basis: 33.33%;
  }
  .card-gallery a.theme-btn{
    font-size: 20px;
  }
}

@media(min-width:1200px){
  .card-gallery .box-outer-content-wrapper .title, .card-gallery .box-outer-content-wrapper .card__description{
    /*     padding: 0 12px; */
  }
  .card-gallery .box-outer-content:after, 
  .card-gallery .box-outer-content:before{
    height:77%
  } 
  a.theme-btn{
    margin-left: 12px;
    margin-top:10px
  }

}
@media(min-width: 1251px){
  .box-layout{
    transition: all .3s;
  }
  .card__item:first-child:hover ~ .card__item:nth-child(6) {
    transform: translateY(50px);
  }
  .card__item:nth-child(2):hover ~ .card__item:nth-child(7) {
    transform: translateY(50px);
  }
  .card__item:nth-child(3):hover ~ .card__item:nth-child(8) {
    transform: translateY(50px);
  }
  .card__item:nth-child(4):hover ~ .card__item:nth-child(9) {
    transform: translateY(50px);
  }
  .card__item:nth-child(5):hover ~ .card__item:nth-child(10) {
    transform: translateY(50px);
  }
  .card__item:nth-child(6):hover ~ .card__item:nth-child(11) {
    transform: translateY(50px);
  }
  .card__item:nth-child(7):hover ~ .card__item:nth-child(12) {
    transform: translateY(50px);
  }
  .card__item:nth-child(8):hover ~ .card__item:nth-child(13) {
    transform: translateY(50px);
  }
  .card__item:nth-child(9):hover ~ .card__item:nth-child(14) {
    transform: translateY(50px);
  }
}
@media(max-width: 1250px){
  .card-gallery .card__item{
    flex-basis: 50%;
  }
  .card-gallery .card__list{
    justify-content: center;
  }
  .card__item:nth-child(1):hover ~ .card__item:nth-child(4) {
    transform: translateY(50px);
  }
  .card__item:nth-child(2):hover ~ .card__item:nth-child(5) {
    transform: translateY(50px);
  }
  .card__item:nth-child(3):hover ~ .card__item:nth-child(6) {
    transform: translateY(50px);
  }
  .card__item:nth-child(4):hover ~ .card__item:nth-child(7) {
    transform: translateY(50px);
  }
  .card__item:nth-child(5):hover ~ .card__item:nth-child(8) {
    transform: translateY(50px);
  }
  .card__item:nth-child(6):hover ~ .card__item:nth-child(9) {
    transform: translateY(50px);
  }
  .card__item:nth-child(7):hover ~ .card__item:nth-child(10) {
    transform: translateY(50px);
  }
}

@media(max-width: 991px){
  .card-gallery .card__list .box-layout, .card-gallery .card__item{
    flex-basis: 50%;
  }
  .card-gallery .card__item{
    transform: none !important;
  }
  .card-gallery .card__gallery-btn-section{
    bottom: -21px;
  }
}
@media(max-width: 575px){
  .card-gallery .card__list .box-layout{
    flex-basis: 100%;
  }
}
@media (min-width:560px){
  .jdr-card-gallery{margin:30px;}
}
@media (max-width: 736px) {
  .card__list .title-section h3, .card-gallery .card__title h3{
    font-size:20px;
  }	
  /* 	.card-gallery .card__list{
  display:block;
} */
}

@media(max-width: 1500px){
  .card__list .title-section h3, .card-gallery .card__title h3{
    font-size: 28px;
  }
  .card-gallery .card__description p {
    font-size: 16px;
  }
}

@media(max-width: 1366px){
  .card__list .title-section h3, .card-gallery .card__title h3 {
    font-size: 21px;
  }
  .card-gallery .card__description p {
    font-size: 14px;
  }
  .card-gallery a.theme-btn {
    font-size: 14px;
  }
  .card-gallery .card__title h3{
    padding-top: 8px;
  }
}

@media(max-width: 1160px){
  .card-gallery {
    padding: 0 ;
  }  
}
@media(min-width: 1160px){
  .card-gallery .section-main-wrapper {
    padding: 0 50px;
  }
}
@media(max-width: 767px){
  .card-gallery .card__item, .card-gallery .card__list .box-layout {
    flex-basis: 50%;
  }

}

@media(max-width: 575px){
  .card-gallery .card__item, .card-gallery .card__list .box-layout {
    flex-basis: 100%;
  }
  .card-gallery .card__list{
    max-width: 80%;
    margin: 0 auto;
  }
}


@media(min-width: 560px){
  .card-gallery .section-main-wrapper {
    margin: 30px;    
  }
}

/******************/
/* card-three-column-layout CSS */
/******************/
.three-column-card-layout .card__item{
  flex-basis: 33.33%;
  padding: 0 15px;
}
.three-column-card-layout .card-box-wrapper {
  text-align: center;
}
.three-column-card-layout .card__description{
  margin-top: 15px;
}

@media(max-width: 991px){
  .three-column-card-layout .card__item{
    flex-basis: 100%;
    margin-bottom: 30px;
  }
}

/******************/
/* case-study-gradient-column CSS */
/******************/
.case-study-gradient-column{
  background: rgb(223,226,214);
  background: linear-gradient(90deg, #f0efef 0%, #f0efef 50%, #f5f5f5 50%, #f5f5f5 100%);
  padding-bottom: 80px;
}
.case-study-gradient-column .left-column > .padd-50{
  padding-left: 0;
}
.case-study-gradient-column .slick-prev:before {
  color: #b1b1b1;
  content: "\f0d9";
  font-family: Font Awesome\ 5 Free;
  font-weight: 900;
}
.case-study-gradient-column .slick-next:before {
  color: #b1b1b1;
  content: "\f0da";
  font-family: Font Awesome\ 5 Free;
  font-weight: 900;
}
.case-study-gradient-column button.slick-arrow{
  background-color: #f0efef;
  border-radius: 0;
  height: 50px;
  z-index: 1;
  width: 30px;
}

.case-study-gradient-column .slick-prev{
  left: 20px;
}
.case-study-gradient-column .slick-next{
  right: 20px;
}
.case-study-gradient-column .left-column,
.case-study-gradient-column .right-column{
  padding-top: 50px;
  padding-bottom: 60px;
  height: 100%;
}
.case-study-gradient-column .slider-pagination{
  display: none;
}
.case-study-gradient-column .row-fluid .span6{
  padding: 0;
}

.case-study-gradient-column .right-column > .padd-50{
  padding-right: 0;
}
.case-study-gradient-column .virual-visit-wrapper .description p{
  font-size: 20px;	
}
.case-study-gradient-column .case-study-image-slider .slider-pagination .slick-arrow .fa{
  background: #fff;
}

.case-study-gradient-column .row-fluid{
  margin: 0 -15px;
}
.case-study-gradient-column .row-fluid .span6{
  padding: 0 15px;
}
.case-study-gradient-column iframe{
  width: 100%;
  height: 100%;
}
.case-study-gradient-column .embed-content {
  height: 423px;
}
.case-study-gradient-column .description p{  
  margin-bottom:10px;
}
.case-study-gradient-column .case-study-image-slider .case-study-image-slider-wrapper{
  margin: 0 -15px;
}
.case-study-gradient-column .case-study-image-slider .slider-pagination .slick-btn{
  color:#000;
}
.case-study-gradient-column .case-study-image-slider .case-study-image-item img{
  width: 100%;
}
.case-study-gradient-column .section-row-2 .case-study-image-slider .slick-slide {
  margin: 0 15px;
}
@media(max-width: 991px){
  .case-study-gradient-column .row-fluid .span6{
    width: 100%;
  }
  .case-study-gradient-column .row-fluid{
    flex-wrap: wrap;
  }
  .case-study-gradient-column .left-column > .padd-50, .right-column > .padd-50{
    padding: 0;
  }
  .case-study-gradient-column{
    background: rgb(223,226,214);
    /* background: linear-gradient(180deg, rgba(223,226,214,1) 0%, rgba(223,226,214,1) 49%, rgba(216,219,208,1) 49%, rgba(216,219,208,1) 100%); */
  }
}

@media(max-width: 767px){
/*   .case-study-gradient-column a.theme-btn{
    height: auto;
    line-height: inherit;
    padding: 10px 20px;
  } */
/*   .case-study-gradient-column a.theme-btn span.button-arrow{
    display: none;
  } */
}

@media(min-width: 991px) and (max-width: 1290px){
  .case-study-gradient-column a.lg-btn.theme-btn span{
    display:none;    
  } 
  .case-study-gradient-column a.lg-btn.theme-btn{
    padding:10px;
    height:auto;
    line-height:inherit;
    text-align:center;
  } 
}
@media(max-width: 1290px) and (max-width: 1300px) {
  .case-study-gradient-column a.lg-btn.theme-btn{
    margin-left:0;
  }
}

/******************/
/* case-study-image-slider CSS */
/******************/
.case-study-image-slider .widget-wrapper{
  margin: 0 !important;
  position: relative;
}
.case-study-image-slider .slider-pagination .slick-btn::before{
  display: none;
}
.case-study-image-slider .case-study-image-item img{
  width: 100%;
}
.case-study-image-slider .slick-next, .case-study-image-slider .slick-prev{
  font-size: 16px;
}
.case-study-image-slider .widget-wrapper .slider-pagination{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  width: 100%;
  z-index: 1;
}
.case-study-image-slider .slider-pagination .slick-btn{
  color:#000;
}
.case-study-image-slider .slick-slide {
  margin: 0 15px;
}
.case-study-image-slider .slick-list {
  margin: 0 -15px;
}
.case-study-image-slider .slider-pagination .fa{
  background: #dfe2d6;  
  color: #5d6e30;
  padding: 15px;
}
.case-study-image-slider .widget-wrapper .slider-pagination .slick-next{
  right: 0;
  position: absolute;
}

@media(max-width: 1600px){
  .case-study-image-slider {
    padding: 0 60px;
  }
}
@media(min-width: 1700px){
  .case-study-image-slider .widget-wrapper .slider-pagination .slick-prev{
    position: absolute;
    left: -50px;
  }
  .case-study-image-slider .widget-wrapper .slider-pagination .slick-next{
    position: absolute;
    right: -50px;
  }
}

/******************/
/* category-card-layout CSS */
/******************/
.category-card-layout .category__list{  
  display: flex;
  flex-wrap: wrap;  
  justify-content: center;  
}
.category-card-layout .category__list .category__item{
  flex:0 0 calc(100%/4);
  padding: 0 15px 30px 15px;  

}
.category-card-layout .card--wrapper{
  text-align: center;
  position: relative;
}
.category-card-layout .card__featured-image img{
  width: 100%;
}
.category-card-layout .card--wrapper .card__featured-title h4{  
  font-size: 18px;
  font-weight: 200;
  padding: 0 15px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color:#fff;
}
.category-card-layout .card-btn-section a{
  display: block;
  font-size: 20px;
  color: #fff;  
}
.category-card-layout .img-wrapper {
  line-height: 0;
}
.category-card-layout .section__title-row{
  margin-bottom: 40px;
}
.category-card-layout a.theme-btn span.button-arrow{
  float: right;
}
.category-card-layout .card--wrapper .card__featured-title h4 a{
  color:#fff;
}
.category-card-layout .card--wrapper .card__featured-title{
  position: absolute;
  bottom: 70px;
  text-align: center;
  width: 100%;
}
.category-card-layout .card__featured-image{
  position: relative;
}
.category-card-layout .card__featured-image::after {
  position: absolute;
  content: "";  
  background: linear-gradient(180deg,rgba(0,0,0,.003),rgba(0, 0, 0, 0.6) 68%,#000000e0);
  width: 100%;
  bottom: 0;
  content: "";
  height: 140px;
  left: 0;
}

@media(max-width: 1200px){
  .category-card-layout .category__list .category__item{
    flex: 0 0 calc(100%/2);
  }
}
@media(max-width: 991px){  
  .category-card-layout .category__item {
    flex-basis: 50%;
  }
}

@media(max-width: 767px){  
  .category-card-layout .category__list .category__item {
    flex-basis: 100%;
  }
}
@media(max-width: 575px){
  .category-card-layout .card-btn-section a{
    line-height: 52px;
    text-align: center;
  }
}

/******************/
/* custom-card-layout CSS */
/******************/

.custom-card-layout .custom-card__list{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.custom-card-layout .custom-card__list .card__item{
  padding:0 15px;
  flex-basis: 25%;
}
.custom-card-layout .card__title h3{  
  padding-top: 20px;   
  font-weight: 200;
}
.custom-card-layout .card-inner-content {
  text-align: center;
}
.custom-card-layout .card-item{
  flex-basis: 25%;
  padding: 0 15px;
}
/* .custom-card-layout .icon-with-text-list{
float: left;
width: 100%;
} */
.custom-card-layout .section-header .section-title .card__title h2 span{
  background: transparent;  
  font-size: 30px !important;
}
.custom-card-layout .section-bottom-content{
  text-align:center;
}
@media(max-width: 1500px){
  .custom-card-layout .card__title h3{
    font-size: 27px;
  }
}
@media(max-width: 1200px){
  .custom-card-layout .card-item{
    flex-basis: 50%;
    margin-bottom: 30px;
  }
  .custom-card-layout .custom-card__list{
    flex-wrap: wrap;
  }
}
@media(max-width: 991px){
  .custom-card-layout .custom-card__list .card__item{
    flex-basis: 50%;
    margin-bottom: 30px;
  }
}
@media(max-width: 767px){
  .custom-card-layout .custom-card__list .card__item{
    flex-basis: 100%;
  }
  .custom-card-layout .section-header .section-title .card__title h2 span.secondary-title{
    font-size: 40px !important;
  }
  .custom-card-layout .card-item{
    flex-basis: 100%;
  }
}

@media(max-width: 575px){
  .custom-card-layout .card-item{
    flex-basis: 100%;
  }
}

/******************/
/* follow-us CSS */
/******************/
.follow-us-widget .social__icons-list{
  align-items: center;
  display: flex;
  flex-wrap: wrap;
justify-content:center;
}

.follow-us-widget .section__title-row .section-title .title{
  padding-bottom: 10px;
}
.follow-us-widget .custom-social-links__icon {
  margin-right: 20px;
  margin-left: 0;
  display: inline-flex;
  justify-content: flex-end;
  background: transparent;
/*   height: 35px; */
  margin: 0 .35rem;
  position: relative;
  width:35px;
}

.follow-us-widget .custom-social-links__icon svg {
  fill: #95c11f;
  height: 25px;
  left: 50%;
/*   position: absolute; */
  top: 50%;
/*   transform: translate(-50%,-50%); */
  width: auto;
  padding:3px;
}

.follow-us-widget .custom-social-links__icon svg:hover {
  fill: #774e29 !important;
}

.follow-us-widget .custom-social-links__icon:hover svg,
.follow-us-widget .custom-social-links__icon:focus svg,
.follow-us-widget .custom-social-links__icon:active svg {
  fill: #95c11f;
}

@media(max-width: 767px){
 .follow-us-widget .custom-social-icons{
    justify-content: start;
  }
}

/******************/
/* header-menu CSS */
/******************/
.navigation-primary {
  display: inline-block;
  vertical-align: center;
}
.submenu.level-1>li:first-child{
  padding-left: 0;
}
.submenu.level-2>li:last-child {
  border: none;
}
.navigation-primary a {
  font-size: 20px;
  line-height: 25px;  
}
header .contact-info{
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}
header .contact-info a{
  color: #222;
  letter-spacing: 1.1px;
}
header .contact-info a:hover{
  color: #3089b5;
}
header .contact-info li:first-child{
  padding-bottom: 8px;
}
.navigation-primary ul.level-1 > li a{
  color: #fff;  
  font-size: 20px;  
  font-weight: 400;
}
.navigation-primary ul.level-1>li a:hover{
  color: #95c11f !important;
}
header.sticky .navigation-primary ul.level-1>li > a:hover{
  color: #774e29 !important;
}
.navigation-primary a.active-item{
  color: #fff !important;
  position: relative;
}
.navigation-primary a.active-branch{
  color: #fff !important;
}
.navigation-primary .submenu.level-2 a.active-item {
  color: #95c11f !important;
}
header.sticky .navigation-primary .has-submenu li a:hover {
  color: #95c11f !important;
}
.header-menu .custom-menu-primary{
  text-align: right;
}
.navigation-primary .submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navigation-primary .submenu a,
.navigation-primary .submenu p {
  text-decoration: none;
}
.submenu-toggle {
  display: none;
}
.submenu.level-1 {
  display: inline-block;
}
.submenu.level-1 > li {
  display: inline-block;
  padding: 0px 15px;  
  vertical-align:middle;
}
.submenu.level-1 > li.has-submenu {
  position: relative;
}
.submenu.level-1>li>a, .submenu.level-2 .menu-item .menu-link{
  color: #000;
}

.submenu.level-1>li:last-child {
  padding-right: 0;
}
.submenu.level-1>li.has-submenu>a:after {
  color: #fff;
  content: "\f107";
  display: inline-block;
  font-family: FontAwesome;
  padding-left: 10px;
  font-size: 12px;
  vertical-align: middle;
}
.submenu.level-2 {
  border: 2px solid #D1D6DC;
  border-radius: 0;
  box-shadow: 0 2px 9px 0 rgba(0,0,0,0.2);
  font-weight: 500;
  left: -9999px;
  opacity: 0;
  position: absolute;
  text-transform: none;
  top: 100%;
  width: 270px;
}
.submenu.level-2 > li {
  border-bottom: 1px solid #D1D6DC;
  padding: 0;
}
ul.submenu.level-2 {
  padding: 5px 10px;
  background: #fff;
  z-index:1;
}
.submenu.level-2 > li:first-child:hover:before,
.submenu.level-2 > li:first-child.focus:before {
  background-color: rgba(208, 210, 212, 1.0);
  transition: background-color 0.3s;
}
.submenu.level-2 .menu-item .menu-link {
  background-color: #FFF;
  display: block;
  padding: 5px 15px;
  transition: background-color 0.3s;
}
.submenu.level-2 .menu-item .menu-link:hover,
.submenu.level-2 .menu-item .menu-link:focus {
  background-color: #D0D2D4;
  cursor: pointer;
  transition: background-color 0.3s;
}
.submenu.level-3 .menu-item .menu-link {
  padding-left: 60px;
}
.submenu.level-1 > li.has-submenu:hover .submenu.level-2,
.submenu.level-1 > li.has-submenu.focus .submenu.level-2 {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.submenu.level-2 .menu-item .menu-link{
  text-align: left;
}
.submenu.level-3 > li {
  list-style:none;
}
/* Hide navigation dropdown in the inline editor */
.hs-inline-edit .submenu.level-1 > li.has-submenu:hover .submenu.level-2,
.hs-inline-edit > li.has-submenu.focus .submenu.level-2 {
  visibility: hidden;
}
.custom-menu-primary .header-primary-menu{
  text-align: right;
}
.custom-menu-primary .header-primary-menu .submenu{
  text-align: left;
}
header .header-email-section a:hover{
  color: #3089b5;
}

/* Media Query */

@media(min-width: 992px){
  header .header__column{
    display: flex;
    flex: 1 1 80%;
  }
  header .navigation-primary{
    display: flex;
  }
  header .header__row-1, header .header-menu{
    flex: 1 1 100%;
  }
  header .submenu.level-1{
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .custom-menu-primary .submenu>.has-submenu>.level-3{
    padding: 3px;
    box-shadow: 0 2px 9px 0 rgb(0 0 0 / 20%);
    border: 2px solid #d1d6dc;
    border-radius: 0;
  }

  .custom-menu-primary .submenu > .has-submenu > .level-3{
    display: none;
    border-radius: 0;
    background: #fff;
    padding: 10px;
  }
  .custom-menu-primary .submenu > .has-submenu{
    position: relative;
  }
  .custom-menu-primary .submenu > .has-submenu:hover > .level-3{
    display: block;
    position: absolute;
    left: 100%;       
    top: 0;
    width: 100%;
  }
  .custom-menu-primary .submenu  li:nth-last-child(2) .has-submenu:hover .level-3  {
    right:100% !important;
    left:unset !important;
  }
  .custom-menu-primary .submenu.level-1>li:last-child:hover .submenu.level-2 {
    right:0 !important;
    left:unset !important;
  }

  .custom-menu-primary .submenu.level-3 .menu-item .menu-link{
    padding-left: 10px;
  }  
  .submenu.level-2 .has-submenu > .menu-link::after{
    border: solid #002953;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2.5px;
    transform: rotate( -45deg );
    -webkit-transform: rotate( -45deg );
    margin-left: 7px;
    position: relative;
    top: -2px;
    cursor: pointer;
    content: '';
  }
}

@media (min-width: 768px) and (max-width: 1150px) {
  .navigation-primary a {
    font-size: 15px;
  }
  .submenu.level-1 > li {
    display: inline-block;
  }
  .submenu.level-1 > .has-submenu > .menu-arrow {
    right: 0;
    top: 40px;
  }
  .submenu.level-2 .menu-item .menu-link{
    font-size:14px;
  }
  .submenu.level-2 {
    left: 0;
  }
}

@media(max-width: 991px){ 
  header .header__contact-column {
    margin-left: unset;
  }
  .navigation-primary ul.level-1>li a.active-branch, .navigation-primary ul.level-1>li a.active-item{
    color: #95c11f !important;
  }
  header .contact-info{
    text-align: center;
  }
  header .header__navigation-column{
    order: 3;
    width: 100%;
  }
  header .header__column{
    order: 4;
    width: 100%;
  } 
  .navigation-primary ul.level-1>li a, {
    font-size: 16px;
  }
  .submenu.level-1 > li{
    padding: 0px 13px;
  }
  .header-menu .header-primary-menu .menu-link{
    font-size: 14px;
  }
  .custom-menu-primary .submenu.level-3 .menu-item .menu-link{
    padding-left: 70px;
  }
  .header-menu .custom-menu-primary{
    text-align: left;
  }
  .navigation-primary ul.level-1>li a {
    color: #222;
  }
  header .navigation-primary{
    background: #fff;
  }
  .submenu.level-1 > li{
    padding: 0 !important;
  }

  .navigation-primary a{
    line-height: 25px;
  }

  .submenu.level-1>li:not(:last-child){
    border-right: none;
  }

  .navigation-primary {
    display: block;
  }

  .submenu > li > a {
    display: block;
    width: 100%;
  }

  .submenu > .has-submenu {
    position: relative;
  }

  .submenu > .has-submenu > a {
    width: 70%;
  }

  .submenu {
    display: none;
  }

  .submenu.level-1 {
    width: 100%;
  }

  .submenu.level-1 > li {
    border-top: 2px solid #CED4DB;
    display: block;
    padding: 0;
    width: 100%;
  }

  .submenu.level-1 > li > a {
    font-weight: 600;
    padding: 7px 30px;
  }

  .submenu.level-1 > .has-submenu > .menu-arrow,
  .submenu > .has-submenu > .menu-arrow,
  .submenu .menu-arrow {
    background-position: center right 30px;
    background-repeat: no-repeat;
    background-size: 20px;
    border: none;
    cursor: pointer;
    height: 55px;
    padding: 15px 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
  }

  .submenu.level-1 > .has-submenu > .menu-arrow-bg,
  .submenu > .has-submenu > .menu-arrow-bg,
  .submenu .menu-arrow-bg {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIxOXB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAxOSAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5QbHVzPC90aXRsZT4gICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+ICAgIDxnIGlkPSJQbHVzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxnIGlkPSJHcm91cCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDAuMDAwMDAwKSIgc3Ryb2tlPSIjOTc5ODlGIiBzdHJva2Utd2lkdGg9IjIuNCI+ICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLTIiPiAgICAgICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjIiIHk9IjkuNiIgd2lkdGg9IjE2LjgiIGhlaWdodD0iMSIgcng9IjAuNSI+PC9yZWN0PiAgICAgICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS42MDAwMDAsIDkuNjAwMDAwKSByb3RhdGUoOTAuMDAwMDAwKSB0cmFuc2xhdGUoLTkuNjAwMDAwLCAtOS42MDAwMDApICIgeD0iMS4yIiB5PSI5LjYiIHdpZHRoPSIxNi44IiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8L2c+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    display: block;
    height: 20px;
    margin-left: auto;
    margin-right: 30px;
    transition: transform 0.4s;
    width: 20px;
  }

  .submenu.level-1>li.has-submenu>a:after{
    display:none;
  }

  .arrow_mark-container.level-2 {
    display: none;
  }

  input[type="checkbox"]:checked ~ .submenu {
    display: block;
  }

  input[type="checkbox"]:checked ~ .menu-arrow .menu-arrow-bg {
    transform: rotate(45deg);
    transition: transform 0.4s;
  }

  .submenu>.has-submenu>a {
    width: 100%;
  }

  .submenu.level-2 {
    border: none;
    box-shadow: none;
    opacity: 1;
    position: static;
    transform: unset;
    visibility: visible;
    width: 100%;
    z-index: 2;
  }

  .submenu.level-2 .menu-item {
    border-bottom: none;
    border-top: 2px solid #EBEFF3;
    padding: 0;
    background-color: transparent;
    padding: 0;
  }

  .submenu.level-2 .menu-item .menu-link {
    padding: 7px 60px;
    transition: none;   
    background: transparent;    
  }

  .submenu.level-2 .menu-item .menu-link:hover,
  .submenu.level-2 .menu-item .menu-link:focus {
    transition: none;
  }

  .submenu.level-2 .menu-item .menu-link:hover {
    background-color: inherit;
  }

  .submenu.level-3 {
    background-color: inherit;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .submenu.level-3 > li {
    background-color: inherit;
    padding: 0;
  }

  .submenu.level-3 .menu-item .menu-link {
    padding: 7px 90px;
  }

  .child-menu-trigger {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    top: 0;
    line-height: 40px;
    cursor:pointer; 
    color:#95c11f;
  }

  .submenu.level-2 .menu-item .menu-link{
    color: #000 !important;
  }
  .submenu.level-2 .menu-item:first-of-type, .submenu.level-2 .menu-item:first-of-type .menu-link{
    border-radius: 0;
  }

  .child-menu-trigger:after {
    content: '+';   
    top: 0;
    font-size: 30px;
  }

  ul.submenu.level-2 {
    padding: 0;
    background: transparent;
  } 

  .child-open > .child-menu-trigger:after {
    content: '-';
  }
  .navigation-primary ul.level-1>li a{
    font-size: 14px;
  }
  header .header__logo {
    max-width: 300px;
  }
  .submenu.level-1>li {
    padding: 0px 7px;
  }
  header .submenu.level-1>li:last-child a{
    font-size: 14px;
  }

  .custom-menu-primary .submenu > .has-submenu:hover > .level-3{
    position: static;
  }
  header.header{
    padding: 0 30px;
  }  
  header .header__logo {
    max-width: 250px !important;
  }  
  header.header{
    position: static;   
    background: #95c11f;
  }  
  header .header-contacct {
    margin-right: 0;
  }
  header .header-nav-row-1 {
    flex-direction: column;
    align-items: center;
  }
  header .header-wrapper{
    padding-top: 0;
  }
  .header__logo{
    margin: 0 auto;
    max-width: 100%;
    justify-content: center;
  } 
  header.header .header-logo {
    display: block;
    width: auto;
    vertical-align: middle;
    padding-top: 0;
    margin: 0 auto;
    text-align: center;
  }  
  .header__container{
    flex-direction: column;
  }
  .custom-menu-primary {
    display: none;
  }
  .mobile-trigger {
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -.01375rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 36px;
    min-width: 36px;
    height: 13px;
    min-height: 13px;
    margin-top: 8px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 30px;
  }
  .mobile-trigger .btn-menu-inner {
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s;
    width: 36px;
    min-width: 36px;
    position: absolute;
    height: 2px;
    background-color:#774e29;
  }
  .mobile-trigger .btn-menu-inner:before,.mobile-trigger .btn-menu-inner:after {
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s;
    width: 36px;
    min-width: 36px;
    height: 2px;
    content: "";
    overflow: hidden;
    position: absolute;
    right: 0;
    left: 0;
    background-color: #774e29;
  }
  header .custom-social-links__icon{
    width: 25px;
  }
  header .header-nav-row-1{
    margin: 15px 0 0;
  }
  header .header-contact-wrap .icon-item .fa-phone, header .header-contact-wrap .phone a {
    font-size: 24px;
  }
  header .custom-social-links__icon svg{
    height: 25px;
  }
  .mobile-trigger .btn-menu-inner:before {
    top: -6px
  }
  .mobile-trigger .btn-menu-inner:after {
    bottom: -6px
  }
  .mobile-trigger:hover {
    opacity: 0.7;
    transition: all ease 0.5s;
  }     
}

@media(min-width: 1366px){
  .submenu.level-1 > li{
    padding: 0px 20px;
  }
}

@media(max-width: 1200px){
  .navigation-primary ul.level-1 > li a{
    font-size: 16px;
  }
  header .header-contact-wrap .icon-item .fa-phone, header .header-contact-wrap .phone a {
    color: #fff;
    font-size: 24px;
  }
  header .header-contact-wrap .icon-item .fa-phone {
    font-size: 18px;
  }
}

.show-menu{
  display:block !important;
}

/******************/
/* home-banner CSS */
/******************/
.home-banner .banner-inner-content, .home-banner .banner-btn-section{
  padding: 0 15px;
}
.home-banner a.theme-btn{
  height: 65px;
  line-height: 65px;
  border: none;
  padding: 0 0 0 30px;
}
.home-banner a.theme-btn span.button-arrow{
  height: 65px;
  line-height: 65px;
}
.home-banner.banner-section .banner-description h2{
  color: #fff;
  font-weight: 100;
  font-size: 55px;
}
.home-banner.banner-section .banner-title h1{
  margin-bottom: 10px;
  font-weight: 400;
}
.home-banner .banner-item{
  color: #fff;
  text-align: center;
  /*   padding:150px 0 50px; */
  padding:170px 0 70px;
  background-size: cover;
}
.home-banner .banner-btn-section{
  margin-top: 70px;
}
.home-banner a.theme-btn span.btn-arrow{
  height: 52px;
  line-height: 52px;
}
.home-banner .banner-btn-section a.theme-btn.red-btn{
  background: #5d6e30;
}
.home-banner .banner-btn-section .banner-btn-group{
  display: flex;
  justify-content: center;
}
.home-banner .anner-title-section{
  margin-top: 30px;
}
.home-banner .banner-btn-section a.theme-btn.red-btn span.btn-arrow{
  background: #536032;
}
.home-banner .banner-btn-section a.theme-btn.red-btn:hover{
  background: #536032;
}
.home-banner .primary-btn{
  margin-right: 30px;
}
.banner-section .banner-video-item.banner-item, .banner-section .banner-video-item.banner-item .banner-video-content{
  padding: 0;
}
.banner-section .banner-video-item.banner-item video{
  width: 100%;
}
.banner-section .banner-video-item.banner-item{
  position: relative;
}
.banner-section .banner-video-item.banner-item .banner-video-content{
  line-height: 0;
}
.banner-section .banner-video-item.banner-item::before{
  position: absolute;
  background: rgb(0 0 0 / 60%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.banner-section .banner-video-item.banner-item .banner-inner-content .banner-btn-section{
  margin: 0;
}

.banner-section .banner-video-item.banner-item .banner-inner-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.home-banner .banner-video-content.banner-inner-contents{
  max-height: 700px;
  overflow: hidden;
}
@media(max-width: 1200px){
  .home-banner .banner-item .banner-title h1, .sub-title h2{
    font-size: 45px;
  }
  .home-banner.banner-section .banner-description h2{
    font-size: 35px;
  }
  .home-banner .banner-inner-content {
    padding: 0 30px;
  }
  .home-banner .banner-item{		
    padding:150px 0 70px;
  }
}


@media(max-width: 991px){
  .home-banner .banner-item {
    padding: 70px 0 50px;
  }
}
@media(max-width: 767px){
  .home-banner .banner-btn-section .banner-btn-group{
    flex-direction: column;
  }
  .home-banner.banner-section .banner-description h2{
    font-size: 28px;
  }
  /*   .home-banner .banner-item{		
  padding:100px 0 80px;
} */
  .home-banner .banner-item .banner-title h1, .sub-title h2{
    font-size: 35px;
  }
  .home-banner .primary-btn{
    margin-right: 0;
    margin-bottom: 15px;
  }
  .home-banner .banner-btn-section{
    flex-direction: column;
  }
}

/******************/
/* hotspot-section CSS */
/******************/
.hotspot-widget .wpim-infowindow__inner h6 {
  font-size: 30px;   
  color: #222;
  font-weight: 300;
  margin-bottom: 10px;
}
.hotspot-widget .wpim-infowindow__inner div {
  border-top: 1px solid #ccc;
  width: 100%;
  float: left;
  padding-top: 15px;
}
.hotspot-widget .head h6.title {
  font-size: 18px;
  margin: 0;
}
.hotspot-widget .body p {
  font-size: 18px;
}
.hotspot-widget .content {
  padding: 20px;
}
.scalize .content .body p:last-child,
.scalize .content .head .title,
.scalize .content.left.top {
  margin-bottom: 0;
}
.scalize {
  transform-origin: top left;
  position: relative;
  width: 100% !important;
}
.scalize img.target {
  width: 100%;
  position: relative;
  z-index: 1;
}
.scalize .content {
  position: absolute;
  background: #e9e9e9;
  width: 250px;
  display: none;
  z-index: 99;
  height: auto !important;
}
.scalize .content .head {
  position: relative;
  padding: 0;
  background: #e9e9e9;
  border-bottom: solid 1px transparent;
  float: right;
}
.scalize .content .head .exit {
  float: right;
  display: block;
  width: 38px;
  height: 38px;
  border-left: solid 1px transparent;
  position: relative;
  top: 0;
  left: 10px;
  filter: alpha(opacity=50);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  -webkit-opacity: 0.5;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-opacity: 0.5;
  -o-opacity: 0.5;
  opacity: 0.5;
}
.scalize .content .head .exit:hover {
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  -webkit-opacity: 0.8;
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
  -ms-opacity: 0.8;
  -o-opacity: 0.8;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.3);
}
.scalize .content .head .exit img {
  padding: 7px;
  width: 100%;
}
.scalize .content .body {
  /*   padding: 0 12px; */
  background: #e9e9e9;
  position: static;
}
.scalize .content .body img {
  width: 100%;
}
.scalize .content .body:before {
  content: "";
  position: absolute;
  border: 15px solid transparent;
  top: 0;
}
.scalize .content .footer {
  padding: 10px 15px;
  border-top: solid 1px #dfdfdf;
  position: relative;
}
.scalize .content.center .body:before {
  top: 50%;
  margin-top: -24px;
}
.scalize .content.left {
  margin-left: -280px;
}
.scalize .content.left .body:before {
  left: 100%;
  border-left-color: #e2e5da;
  border-right: 0 none;
  top: 115px;
}
.scalize .content.left.top {
  margin-top: -120px;
}
.scalize .content.left.bottom {
  margin-top: 50px;
}
.scalize .content.left.bottom .body:before {
  top: 100%;
  margin-top: -56px;
}
.scalize .content.right {
  margin-left: 50px;
}
.scalize .content.right .body:before {
  right: 100%;
  border-right-color: #e2e5da;
  border-left: 0;
  top: 38px;
}
.scalize .content.right.top {
  margin-top: -43px;
  margin-bottom: 0;
}
.scalize .content.right.bottom {
  margin-top: 50px;
}
.scalize .content.right.bottom .body:before {
  top: 100%;
  margin-top: -56px;
}
.wrap-selector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 3;
} 
.scalize .item-point {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background: #64ffda;
  border: 3px solid #00bfa5;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -khtml-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  -khtml-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.scalize .item-point > div {
  position: relative;
  cursor: default;
  z-index: 9;
}
.scalize .item-point > div .toggle {
  display: block;
  position: absolute;
  top: -3px;
  left: -3px;
}
.scalize .item-point.circle {
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border-color: transparent !important;
  box-shadow: none;
}
.scalize .item-point.circle.active,
.scalize .item-point.circle.disabled {
  border: 3px solid #64ffda;
  background: #64ffda;
}
.scalize .item-point.circle .toggle {
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.scalize .item-point.square {
  width: 30px;
  height: 30px;
  font-weight: 700;
  line-height: 27px;
  color: #1d1d1d;
  background: #a7ffeb;
  border: 2px solid #00bfa5;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  text-align: center;
}
.scalize .item-point.square.active,
.scalize .item-point.square.disabled {
  color: #fff;
  background: #00bfa5;
}
.scalize .item-point.square > div .toggle {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  top: -2px;
  left: -2px;
}
.scalize .item-point.disabled .toggle {
  cursor: default;
}
.scalize .item-point.content {
  width: 200px;
  height: 0;
  border: 0;
}
.scalize .item-point.pulse {
  box-shadow: 0 0 0 #1de9b6;
  animation: pulse 2s infinite;
}
.scalize .item-point.pulse:hover {
  animation: none;
}
.scalize .item-point.pulse2:after,
.scalize .item-point.pulse2:before {
  content: "";
  margin: -3px 0 0 -3px;
  position: absolute;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  border: 1px solid #1de9b6;
  border-radius: 50%;
}
.scalize .item-point.pulse2:before {
  animation: blip1 1s infinite cubic-bezier(0, 0.6, 1, 0.6);
}
.scalize .item-point.pulse2:after {
  animation: blip2 1s infinite linear;
}
.scalize .item-point.marker {
  background: 0 0;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  border: 0;
}
.scalize .item-point.marker.active {
  border: 0;
}
.scalize .item-point.marker.active .pin {
  background: #00bfa5;
}
.scalize .item-point.marker.active .pin:after {
  background: #64ffda;
}
.scalize .item-point.marker .toggle {
  width: 30px;
  height: 30px;
  top: -6px;
  left: -6px;
}
.scalize .item-point.marker .pin {
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: #64ffda;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -ms-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  z-index: 3;
}
.scalize .item-point.marker .pin:after {
  content: "";
  width: 14px;
  height: 14px;
  margin: 8px 0 0 8px;
  background: #00bfa5;
  position: absolute;
  border-radius: 50%;
}
.scalize .item-point.marker .pulse {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  height: 14px;
  width: 14px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 15px 0 0 -7px;
  -webkit-transform: rotateX(55deg);
  -moz-transform: rotateX(55deg);
  -ms-transform: rotateX(55deg);
  transform: rotateX(55deg);
  z-index: 2;
}
.scalize .item-point.marker .pulse:after {
  content: "";
  border-radius: 50%;
  height: 40px;
  width: 40px;
  position: absolute;
  margin: -13px 0 0 -13px;
  -webkit-animation: pulsate 1s ease-out;
  -moz-animation: pulsate 1s ease-out;
  -ms-animation: pulsate 1s ease-out;
  animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-box-shadow: 0 0 1px 2px #a7ffeb;
  box-shadow: 0 0 1px 2px #a7ffeb;
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
  -ms-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #1de9b6;
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 #1de9b6;
    box-shadow: 0 0 0 0 #1de9b6;
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
@keyframes blip1 {
  to {
    transform: scale(3);
    opacity: 0;
  }
}
@keyframes blip2 {
  to {
    transform: scale(2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-o-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-moz-keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-2000px) rotate(-45deg);
    -moz-transform: translateY(-2000px) rotate(-45deg);
    -ms-transform: translateY(-2000px) rotate(-45deg);
    transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(30px) rotate(-45deg);
    -moz-transform: translateY(30px) rotate(-45deg);
    -ms-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}
@-webkit-keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-2000px) rotate(-45deg);
    -moz-transform: translateY(-2000px) rotate(-45deg);
    -ms-transform: translateY(-2000px) rotate(-45deg);
    transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(30px) rotate(-45deg);
    -moz-transform: translateY(30px) rotate(-45deg);
    -ms-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}
@-o-keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-2000px) rotate(-45deg);
    -moz-transform: translateY(-2000px) rotate(-45deg);
    -ms-transform: translateY(-2000px) rotate(-45deg);
    transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(30px) rotate(-45deg);
    -moz-transform: translateY(30px) rotate(-45deg);
    -ms-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-2000px) rotate(-45deg);
    -moz-transform: translateY(-2000px) rotate(-45deg);
    -ms-transform: translateY(-2000px) rotate(-45deg);
    transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(30px) rotate(-45deg);
    -moz-transform: translateY(30px) rotate(-45deg);
    -ms-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}
@media (max-width: 480px) {
  .scalize > div.content.animated {
    top: 30px !important;
    left: 50% !important;
    margin: 0 0 0 -125px !important;
  }
  .scalize > div.content.animated .body:before {
    display: none;
  }
  .scalize .item-point.content {
    -ms-transform: scale(0.7, 0.7);
    -webkit-transform: scale(0.7, 0.7);
    transform: scale(0.7, 0.7);
    -ms-transform-origin: 20% 40%;
    -webkit-transform-origin: 20% 40%;
    transform-origin: 10% 10%;
  }
}
@media (max-width: 360px) {
  .item-point.square {
    -ms-transform: scale(0.7, 0.7);
    -webkit-transform: scale(0.7, 0.7);
    transform: scale(0.7, 0.7);
    -ms-transform-origin: 20% 40%;
    -webkit-transform-origin: 20% 40%;
    transform-origin: 10% 10%;
  }
}


.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;  
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;
  line-break: auto;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px; 
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  line-break: auto;
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
.pulse-beat {
  -webkit-animation: pulse 3s infinite ease-in-out;
  -o-animation: pulse 3s infinite ease-in-out;
  -ms-animation: pulse 3s infinite ease-in-out;
  -moz-animation: pulse 3s infinite ease-in-out;
  animation: pulse 3s infinite ease-in-out;
}
.wrap-selector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 3;
}

@media(max-width: 991px){
  .hotspot-widget .wpim-infowindow__inner h6 {
    font-size: 18px;
  }
  .scalize .content{
    width: 230px;
  }
  .scalize .content.left .body:before{
    top: 110px;
  }
  .scalize .content.left {
    margin-left: -250px;
  }
  .hotspot-widget .wpim-infowindow__inner div{
    font-size: 13px;
  }
}
@media(max-width: 767px){
  .hotspot-widget .scalize .item-point.circle{
    width:30px !important;
    height:30px !important;
  }
}
@media(max-width: 1159px){
  .hotspot-widget .content-wrapper {
   padding: 0;
  }
}

/******************/
/* icon-with-text-box CSS */
/******************/
.icon-with-text-box .widget-wrapper{  
  background-color:#e0e2d7;
  padding: 30px 60px;
}
.icon-with-text-box .section-header .title-wrapper h2{
  font-weight: 400;
}
.icon-with-text-box .section-header .title-wrapper .col-title span{  
  padding-left: 0;
}
.icon-with-text-box .section-header .title-wrapper .col-title{
  text-align: left;
}
.icon-with-text-box .section-header .title-wrapper .col-title:before{
  background: #cdcdcb;
  width: 70%;
}
.icon-with-text-box .section-header .title-wrapper{
  margin-top: 0;
  margin-bottom: 30px;
}
.icon-with-text-box .box-bg-color{
  display: flex;
  align-items: center;
}
.icon-with-text-box .text-content{
  padding-left: 40px;
}

.icon-with-text-box .text-content-row-2 .description{
  flex-basis: 66%;
  padding-right: 15px;
}
.icon-with-text-box .text-content-row-2{
  float: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.icon-with-text-box .icon-image-section{
  flex-shrink: 0;
}

@media(max-width: 1400px){
  .icon-with-text-box .box-btn-section a.theme-btn{
    margin: 0;
    font-size: 18px;
  }
}
@media(max-width: 1200px){
  
  .icon-with-text-box .text-content-row-2 .description{
    flex-basis: 100%;
    padding: 0;
  }
  .icon-with-text-box .text-content-row-2{
    flex-direction: column;
  }
}
@media(max-width: 991px){
  .icon-with-text-box .text-content-row-2{
    flex-direction: column;
  }
  .icon-with-text-box .section-header .title-wrapper .col-title:before{
    width: 100%;
  }
}

@media(max-width: 767px){
  .icon-with-text-box .text-content {
    padding-left: 0;
  }
  .icon-with-text-box .box-bg-color{
    flex-direction: column;
    align-items: flex-start;
  }
}
@media(max-width: 575px){
  .icon-with-text-box .widget-wrapper{
    padding: 20px;
  }
  .icon-with-text-box .text-content {
    padding-left: 0;
    padding-top: 20px;
  }
  .icon-with-text-box a.theme-btn {
/*     padding: 15px 15px; */
    font-size: 12px;
    line-height: inherit;
  }
  .icon-with-text-box a.theme-btn .btn-arrow{
    display: none;
  }
}

@media (min-width: 1200px) and (max-width: 1256px) {
  .icon-with-text-box .box-btn-section a.theme-btn{    
    font-size: 16px;
  }
}