/******************************************************************
Site Name: Brew
Author: Dan Brown

Stylesheet: Main Stylesheet

Here's where the magic happens. First we are calling the bootstrap
LESS files.  Then we'll load Font Awesome.  Any customizations 
should be placed in either custom-variables.less, a new less file,
or the proper file inside less/brew
******************************************************************/
/*!
 *  Font Awesome 4.0.1
 *  the iconic font designed for Bootstrap
 *  ------------------------------------------------------------------------------
 *  The full suite of pictographic icons, examples, and documentation can be
 *  found at http://fontawesome.io.  Stay up to date on Twitter at
 *  http://twitter.com/fontawesome.
 *
 *  License
 *  ------------------------------------------------------------------------------
 *  - The Font Awesome font is licensed under SIL OFL 1.1 -
 *    http://scripts.sil.org/OFL
 *  - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
 *    http://opensource.org/licenses/mit-license.html
 *  - Font Awesome documentation licensed under CC BY 3.0 -
 *    http://creativecommons.org/licenses/by/3.0/
 *  - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
 *    "Font Awesome by Dave Gandy - http://fontawesome.io"
 *
 *  Author - Dave Gandy
 *  ------------------------------------------------------------------------------
 *  Email: dave@fontawesome.io
 *  Twitter: http://twitter.com/davegandy
 *  Work: Lead Product Designer @ Kyruus - https://kyruus.com
 */
/* FONT PATH
 * -------------------------- */



/* Fonts */

h1 {
  font-family:'Poppins', sans-serif !important;
  font-size: 60px !important;
  line-height: 68px !important;
  font-weight: 500 !important;
  color: #000;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

h2 {
  font-family:'Poppins', sans-serif !important;
  font-size: 40px !important;
  line-height: 48px !important;
  font-weight: 600 !important;
  color: #921b83;
}

h3 {
  font-family:'Poppins', sans-serif !important;
  font-size: 30px !important;
  line-height: 40px !important;
  font-weight: 500 !important;
  color: #921b83 !important;
  margin: 0 0 5px 0 !important;
}

h4 {
  font-family:'Poppins', sans-serif !important;
  font-size: 21px !important;
  font-weight: 500 !important;
  line-height: 28px !important;
  color: #333333;
}

p {
  font-family:'Poppins', sans-serif !important;
  font-size: 15px;
  line-height: 22px;
  font-weight: 300 !important;
  color: #333333 !important;
  margin-bottom: 10px !important;
}

ul li,
ol li {
  font-family:'Poppins', sans-serif !important;
  font-size: 15px;
  font-weight: 300 !important;
  color: #333333 !important;
}

@media (max-width: 1240px) {
  h1 {
    font-size: 50px !important;
    line-height: 57px !important;
  }
}


@media (max-width: 992px) {
  h1 {
    font-size: 35px !important;
    line-height: 42px !important
  }

  h2 {
    font-size: 24px !important;
    line-height: 30px !important;
  }


  h3 {
    font-size: 20px !important;
    line-height: 26px !important;
  }

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

  p {
    font-size: 14px !important;
    line-height: 21px;
  } 

  ul li,
  ol li {
    font-size: 14px !important;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px !important;
    line-height: 35px !important
  }
}

a {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a:hover {
  opacity: 0.7;
}

@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.0.1');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.0.1') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.0.1') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.0.1') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.0.1#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}
.pull-right {
  float: left;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
  color: #172b38;
  font-size: 21px;
  margin: 10px 0 0 0;
}

@media (min-width: ) {

}

.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-move:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-resize-full:before {
  content: "\f065";
}
.fa-resize-small:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-resize-vertical:before {
  content: "\f07d";
}
.fa-resize-horizontal:before {
  content: "\f07e";
}
.fa-bar-chart-o:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
  color: #35945a;
}

span.footer-phone .fa-phone:before {
  content: "\f095";
  color: #35945a;
}


.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-fullscreen:before {
  content: "\f0b2";
}
.fa-group:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-reorder:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-houzz:before {
  content: "\f27c";
  color: transparent;
  background-image: url('/icn-houzz.png');
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: 0px 0px;
}

.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-asc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-desc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building:before {
  content: "\f0f7";
}
.fa-hospital:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-expand-o:before {
  content: "\f116";
}
.fa-collapse-o:before {
  content: "\f117";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-reply-all:before {
  content: "\f122";
}
.fa-mail-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-o:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-horizontal:before {
  content: "\f141";
}
.fa-ellipsis-vertical:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
/******************************************************************
Site Name: BREW
Author: Dan Brown

Stylesheet: WP Core Styles

This stylesheet contains various snippets of CSS needed for WP Core

******************************************************************/
* {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
cite {
  font-style: italic;
}
.wp-caption {
  max-width: 100%;
  background: transparent;
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 10px 0 7px 0;
  text-align: center;
}
/* end .wp-caption */
.wp-caption.alignleft {
  margin-right: 20px;
}
.wp-caption.alignright {
  margin-left: 20px;
}
/* image gallery styles */
.gallery dl {
  float: left;
  margin-top: 10px;
  text-align: center;
  width: 33%;
}
.gallery dl img {
  border: 2px solid #cfcfcf;
}
/* end .gallery */
/******************************************************************
Site Name: BREW
Author: Dan Brown

Stylesheet: Global Stylesheet

Styles and classes used throughout the entire BREW framework

******************************************************************/
html,
body {
  overflow-x: hidden;
  font-size: 14px;
}
body {
  counter-reset: section;
  background-color: #fff !important;
}
body.admin-bar .navbar-fixed-top {
  top: 46px;
}
@media (min-width: 783px) {
  body.admin-bar .navbar-fixed-top {
    top: 32px;
  }
}
@media (max-width: 783px) {
    html,
    body {
      overflow-x: auto!important;
    }
}
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
/*********************
LINK STYLES
*********************/
a,
a:visited {
  /* on hover */
  /* on click */
  /* mobile tap color */
}
a:link,
a:visited:link {
  /*
    this highlights links on iPhones/iPads.
    so it basically works like the :hover selector
    for mobile devices.
    */
}
@media (min-width: 1200px) {
  .container {
    max-width: 1240px!important;
  }
}
@media (min-width: 992px) {
  .container .row {
    width: 100%;
  }
}
.iframe-container {
  overflow: hidden;
  padding-top: 85%;
  position: relative;
}
.iframe-container iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.header-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 14px 25px;
  border-radius: 25px;
  color: #fff !important;
  text-decoration: none;
  display: inline-block !important;
  text-transform: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-family: 'Poppins', sans-serif !important;
  background: #59307D;
  background: -webkit-linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%) !important;
}

.header-cta:hover,
.header-cta:active,
.header-cta:focus {
  background: #fff !important;
  color: #921b83 !important;
  box-shadow: 0px 2px 10px rgba(80, 37, 111, 0.3);
  text-decoration: none !important;
  opacity: 1 !important;
}

@media (max-width: 540px) {
  .header-cta {
    padding: 8px 20px;
  }
}



.footer-cta,
.cta-btn {
  font-size: 15px;
  font-weight: 600;
  padding: 14px 25px;
  border-radius: 25px;
  color: #fff !important;
  text-decoration: none;
  display: inline-block !important;
  margin-right: 10px;
  margin-top: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-family: 'Poppins', sans-serif !important;
  background: #59307D;
  background: -webkit-linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
}

.cta-btn.outline {
  background: #fff !important; 
  color: #921b83 !important;  
  margin-top: 10px;
}

.cta-btn.outline.white {
  background: transparent !important; 
  border: 1px solid #000;
  color: #000 !important;   
}

.cta-btn.outline:hover,
.cta-btn.outline:active,
.cta-btn.outline:focus {
  background: #921b83 !important;
  color: #fff !important;
  text-decoration: none;
  opacity: 1 !important;
}

@media (max-width: 540px) {
  #footer .cta-btn {
    width: 100% !important;
    text-align: center !important;
  }
}


.mobile-cta {
 color: #fff !important;
  padding: 10px 20px;
  border: 0px solid #293347;
  text-align: center;
  display: inline-block;
  border-radius: 0px;;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: #deeef3;
}


.footer-cta:hover,
.mobile-cta:hover,
.cta-btn:hover,
.footer-cta:active,
.mobile-cta:active,
.cta-btn:active,
.header-cta:focus,
.footer-cta:focus,
.mobile-cta:focus,
.cta-btn:focus {
  background: #fff !important;
  color: #921b83 !important;
  box-shadow: 0px 2px 10px rgba(80, 37, 111, 0.3);
  text-decoration: none !important;
  opacity: 1 !important;
}
.vertical-align {
  display: flex!important;
  align-items: center!important;
  justify-content: center!important;
}
.modal {
  text-align: center;
  padding: 0!important;
}
@media (min-width: 992px) {
  .modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
    /* Adjusts for spacing */
  }
}
@media (min-width: 992px) {
  .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
  }
}
#enquire .modal-dialog {
  width: 100%;
  max-width: 900px;
}
#enquire .modal-dialog .modal-content {
  background: #fff;
  /* Old browsers */
  margin: 120px 0 0 0;
}
@media (min-width: 992px) {
  #enquire .modal-dialog .modal-content {
    margin: 0;
  }
}
#enquire .modal-dialog .modal-content .modal-body .nav-link {
  color: #ffffff!important;
}
#enquire .modal-dialog .modal-content .modal-body .nav-link.active {
  color: #15b687!important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 2em!important;
  font-weight: 800;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}



.hero .hero-banner .swiper-wrapper .swiper-slide-active  .hero-btn,
.hero .hero-banner .swiper-wrapper .swiper-slide-active  .hero-btn-2 {
pointer-events: all !important;
}


.feedback {
  z-index: 9999;
  background: #b81a8a;
  padding: 10px 20px;
  color: #fff;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  right: 40px;
  top: 50%;
  transform: rotate(-90deg);
  transform-origin: 100% 0;
  position: fixed;
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.feedback:hover,
.feedback:active,
.feedback:focus {
  text-decoration: none;
  opacity: 0.6;
  color: #fff;
}
.list-df {
  list-style: none;
  padding: 0;
  margin: 0;
}
/******************************************************************
Site Name: BREW
Author: Dan Brown

Stylesheet: Comments

******************************************************************/
/* h3 comment title */
#comments {
  margin-bottom: 20px;
  /* number of comments span */
}
#comments > h3 {
  line-height: 1;
  margin: 0;
}
#comments .comment-container {
  padding: 20px 20px;
  border-bottom: 1px solid #eee;
}
.comment-content {
  width: 88%;
  margin-left: 2%;
  float: left;
}
.comment-nav {
  padding: 10px 20px;
}
.comment-nav ul li {
  list-style-type: none;
}
.commentlist {
  padding-left: 0;
  /* general comment classes */
  /* vcard */
  /* end .commentlist .vcard */
  /* comment meta */
  /* comment content */
  /* end .commentlist .comment_content */
  /* comment reply link */
  /* end .commentlist .comment-reply-link */
}
.commentlist ol {
  margin: 0;
}
.commentlist li {
  /* end .commentlist li ul.children */
}
.commentlist li:last-child {
  margin-bottom: 0;
}
.commentlist li ul.children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}
.commentlist li[class*=depth-] {
  margin-top: 1.1em;
}
.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
.commentlist li:not(.depth-1) {
  margin-top: 0;
  padding-bottom: 0;
}
.commentlist .odd {
  background: #fcfcfc;
}
.commentlist .even {
  background: #f9f9f9;
}
.commentlist .comment {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
}
.commentlist .comment img,
.commentlist .comment iframe {
  max-width: 100%;
}
.commentlist .children article {
  border-left: 1px solid #eee;
}
.commentlist .bypostauthor {
  background: #6f6f6f;
}
.commentlist .comment-author {
  width: 10%;
  float: left;
}
.commentlist .comment-author img {
  width: 100%;
  height: auto;
}
.commentlist .alert {
  margin: 10px 0 0 82px;
}
.commentlist .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
.commentlist .vcard time {
  float: right;
}
.commentlist .vcard time a {
  color: #999;
  text-decoration: none;
}
.commentlist .vcard time a:hover {
  text-decoration: underline;
}
.commentlist .vcard img.avatar {
  padding: 2px;
  border: 1px solid #cecece;
  background: #fff;
}
.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}
.commentlist .comment-reply-link {
  text-decoration: none;
  float: right;
  background: #4598bb;
  padding: 3px 5px;
  color: #fff;
  opacity: 0.65;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 0.9em;
}
.commentlist .comment-reply-link:hover,
.commentlist .comment-reply-link:focus {
  opacity: 1;
}
/* end .commentlist */
.comment-prev {
  float: left;
}
.comment-next {
  float: right;
}
#respond {
  padding: 20px;
}
#pings {
  padding: 20px;
}
#pings h3 {
  margin-top: 0;
  margin-bottom: 20px;
}
.havecomments > h3 {
  border-bottom: 1px solid #eee;
  padding: 20px 20px 20px;
}
.closed h3 {
  padding: 20px 20px;
  margin: 0;
}
.nocomments > p {
  padding: 0 20px 10px;
}
.nocomments > h3 {
  padding: 20px 20px 10px;
  line-height: 1;
  margin: 0;
}
/********************************************/
/******************************************************************
Site Name: BREW
Author: Dan Brown

Stylesheet: Tables

******************************************************************/
#main table {
  margin: 20px 0;
  width: 100%;
  border: 1px solid #dddddd;
  border-collapse: separate;
  border-left: 0;
}
#main table th,
#main table td {
  padding: 8px;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  vertical-align: top;
  text-align: left;
  line-height: 18px;
}
#main table thead:first-child tr:first-child th,
#main table tbody:first-child tr:first-child th,
#main table tbody:first-child tr:first-child td {
  border-top: 0;
}
/******************************************************************
Site Name: BREW
Author: Dan Brown

Stylesheet: Form Styles

******************************************************************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em;
}
.respond-form ul {
  padding-left: 0;
  padding-bottom: 20px;
}
.respond-form form {
  margin: 0.75em 0;
}
.respond-form form li {
  list-style-type: none;
  clear: both;
  margin-bottom: 0.7335em;
  border: none;
}
.respond-form form li label,
.respond-form form li small {
  display: none;
}
.respond-form form input[type=text],
.respond-form form input[type=email],
.respond-form form input[type=url],
.respond-form form textarea {
  padding: 3px 6px;
  background: #efefef;
  border: 2px solid #cecece;
  line-height: 1.5em;
  /* form validation */
}
.respond-form form input[type=text]:focus,
.respond-form form input[type=email]:focus,
.respond-form form input[type=url]:focus,
.respond-form form textarea:focus {
  background: #fff;
}
.respond-form form input[type=text]:invalid,
.respond-form form input[type=email]:invalid,
.respond-form form input[type=url]:invalid,
.respond-form form textarea:invalid {
  outline: none;
  border-color: #fbc2c4;
  background-color: #f6e7eb;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}
.respond-form form input[type=text],
.respond-form form input[type=email],
.respond-form form input[type=url] {
  max-width: 400px;
  min-width: 250px;
}
.respond-form form textarea {
  resize: none;
  width: 97.3%;
  height: 150px;
}
/* comment submit button */
/* comment form title */
#comment-form-title {
  margin: 0 0 1.1em;
}
/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}
/* no comments */
.nocomments {
  margin: 0 20px 1.1em;
}
@media (min-width: 992px) {
  #footer-widgets .menu-footer-container {
    float: right;
  }
}
#footer-widgets .menu-footer-container .menu li {
  display: inline-block;
}
#footer-widgets .menu-footer-container .menu li a {
  padding: 0 0 0 20px;
}
/******************************************************************
Site Name: BREW
Author: Dan Brown

Stylesheet: Sidebars

******************************************************************/
#sidebar .widget {
  margin-bottom: 30px;
}
.widgettitle {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  line-height: 24px;
}
.widget ul {
  padding: 0;
  margin: 0;
}
.widget ul li {
  padding: 5px 0;
  list-style: none;
  /* deep nesting */
}
/******************************************************************
Site Name: BREW
Author: Dan Brown

Stylesheet: Footer

******************************************************************/
#footer {
  padding: 0px 0 15px 0;
  clear: both;
  color: #fff;
  background: #5a307d;
}

@media (max-width: 768px) {
  #footer {
    padding: 0px 0 15px 0;
  }  
}

#footer h4 {
  color: #fff;
}
#footer a {
  color: #fff;
  display: inline-block;
  text-align: left;
  text-decoration: none;
}

@media (max-width: 540px) {

}

#footer .footer-disclaimer a {
  color: #fff !important;
  font-size: 13px;
  text-decoration: underline;
}

#footer p strong {
  color: #fff;
  margin-bottom: 10px !important;
  display: block;
}


#footer p {
  font-size: 11px !important;
  margin-bottom: 1px !important;
  font-weight: 500 !important;
  line-height: 16px !important;
  color: #fff !important;
}

#footer .footer-disclaimer a {
  font-size: 11px !important;
  font-weight: 500 !important;
  margin-top: 10px;
}

#footer img {
  max-width: 180px !important;
  width: auto !important;
}

.footer-wrapper.row-2 {
  margin-top: 0px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
@media (max-width: 768px) {


  .footer-wrapper.row-1 {
    padding-top: 60px;
  }

  .footer-wrapper #menu-footer li {
    margin-top: 10px;
  }

  .footer-wrapper {
    padding: 0 20px;
  }

  #footer img {
    max-width: 110px !important;
    height: auto !important;
    margin-bottom: 20px;
  }

  #footer .alignnone {
    margin: 0px !important;
  }
}


#sub-floor {
  color: #ffffff;
  background: transparent;
  padding: 40px 0 30px;
  text-align: center;
}
@media (min-width: 992px) {
  #sub-floor {
    text-align: left;
  }
}
.copyright {
  text-align: center;
}
@media (min-width: 992px) {
  .copyright {
    text-align: left;
  }
}
.attribution {
  text-align: center;
}
@media (min-width: 992px) {
  .attribution {
    text-align: right;
  }
}
.attribution a {
  text-align: center;
  margin: 0 auto;
  width: 25px;
  height: 25px;
  display: block;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  text-align: center!important;
  font-size: 8px;
  color: #fff!important;
  background: #acb4bc;
  line-height: 25px;
  text-decoration: none;
}
.attribution a:hover,
.attribution a:active,
.attribution a:focus {
  text-decoration: none;
}
@media (min-width: 768px) {
  .attribution a {
    margin: 0 0 0 auto;
  }
}
@media (min-width: 992px) {
  .attribution a {
    float: right;
    margin: 0;
  }
}
.widgetFooter {
  padding-bottom: 25px;
}
@media (min-width: 992px) {
  .widgetFooter {
    padding-bottom: 0px;
  }
}
.widgetFooter .menu .menu-item {
  display: block!important;
}
@media (min-width: 992px) {
  .widgetFooter .menu .menu-item {
    display: inline-block !important;
  }
}
.page-feedback #footer {
  border-top: 1px solid #eee;
}
/******************************************************************
Site Name: Brew
Author: Dan Brown

Stylesheet: Content Styles

These are the styles for posts, pages, archive, & blog index



------------ MAP ------------

01. #CONTENT & #MAIN WRAPPERS 
02. ARTICLE WRAPPER
03. ENTRY/PAGE HEADER
04. FEATURED IMAGE
05. ENTRY/PAGE CONTENT
06. ENTRY/PAGE FOOTER

******************************************************************/
/*******************************
01. #CONTENT & #MAIN WRAPPERS
(#content usually includes sidebar.
#main is all post/entry/page content)
********************************/
#content {
  padding-top: 40px;
  min-height: 600px;
}
/*******************************
02. ARTICLE WRAPPER
(background, borders etc for individual posts/pages)
********************************/
.hentry,
#comments,
.respond-form {
  margin: 0 0 20px 0;
  border-radius: 0px;
  background: #fff;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  border: 1px solid #ddd;
}
/*******************************
03. ENTRY HEADER
********************************/
.article-header {
  margin-bottom: 15px;
  padding: 20px 20px 0;
}
.article-header h1,
.article-header h2,
.article-header h3,
.article-header h4,
.article-header h5,
.article-header h6 {
  margin-top: 0;
}
.entry-title {
  margin: 0 0 5px;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .entry-title {
    font-size: 38px;
  }
}
.entry-title a,
.entry-title a:visited {
  color: #444;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.entry-title a:hover,
.entry-title a:active {
  color: #888;
  text-decoration: none;
}
.archive-title {
  margin-top: 0;
}
.byline {
  color: #999;
  margin: 0;
  font-size: 14px;
}
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
.sticky-ind {
  display: none;
}
.sticky .sticky-ind {
  display: inline !important;
}
/*******************************
04. FEATURED IMAGE
********************************/
.featured-content {
  margin-bottom: 20px;
}
.featured-img-bg {
  height: 300px;
  background-width: 100% !important;
  background-size: cover !important;
  background-repeat: none !important;
  background-position: center center !important;
}
.featured-img img {
  width: 100%;
  height: auto;
}
/*******************************
05. ENTRY CONTENT
********************************/
.entry-content {
  padding: 0 20px 20px;
}
.entry-content p {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.5;
}
.entry-content > ol,
.entry-content > ul {
  margin: 0 0 20px 10px;
  font-size: 13px;
  line-height: 1.5;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
.entry-content video,
.entry-content object {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px;
}
/* end entry-content */
/*******************************
06. ENTRY FOOTER
********************************/
.article-footer {
  padding: 10px 20px 10px;
  border-top: 1px solid #eee;
  color: #888;
  font-size: 12px;
}
.article-footer .commentnum {
  text-align: right;
  width: 30%;
}
.article-footer .commentnum a {
  text-decoration: none;
  color: #999999;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.article-footer .commentnum a:hover {
  color: #333333;
}
.article-footer .tags {
  width: 70%;
}
.article-footer .post-link {
  margin-top: -1px;
  padding-left: 10px;
}
.article-footer .post-link:hover {
  text-decoration: none;
}
/******************************************************************
Site Name: BREW
Author: Dan Brown

Stylesheet: Header & Navigation

******************************************************************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
.navbar {
  justify-content: flex-end !important;
}

.navbar .gt_languages a:hover,
.navbar .gt_languages a:active,
.navbar .gt_languages a:focus {
  text-decoration: none;
}
.navbar .gt_languages a span {
  color: #b81a8a!important;
}
.navbar .header-social {
  list-style-type: none;
  padding: 0;
  margin: 0 0 0 10px;
  display: inline-block;
}
.navbar .header-social li {
  display: inline-block;
  margin: 0 0 0 5px;
}
.navbar .header-social li a {
  display: block;
  width: 15px;
  height: 20px;
  text-align: center;
  color: #921b83;
}

.navbar .header-social li a:hover {
  text-decoration: none;
}

.navbar .switcher-popup {
  border: 1px solid #a7a9ac;
  padding: 7px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.navbar .switcher-popup:hover,
.navbar .switcher-popup:active,
.navbar .switcher-popup:focus {
  text-decoration: none;
}
.navbar.main {
  justify-content: center!important;
}
@media (min-width: 992px) {
  .navbar {
    padding: 0!important;
  }
}


.navbar .menu-item-has-children:hover .dropdown-menu {
    min-width: 250px;
    display: block;
    background-color: #fff !important;
    border: 1px solid #fafafa;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-radius: 12px;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.navbar .menu-item-has-children:hover .dropdown-menu .menu-item a {
    color: #ffffff;
    line-height: 1 !important;
    padding: 15px 25px !important;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.navbar .menu-item-has-children:hover .dropdown-menu .menu-item a:hover {
    color: #000000 !important;
    background: 0 !important;
    text-decoration: none;
}


.navbar .menu-item-has-children:hover .dropdown-menu .menu-item:last-child a:before {
    display: none;
}


@media (min-width: 992px) {
  .navbar .menu-item-has-children .dropdown-menu {
    padding: 15px 0;
    margin: 0;
    min-width: 300px !important;
    border-radius: 15px 0 15px 0 !important;
  }
}
@media (min-width: 992px) {
  .navbar .menu-item-has-children .dropdown-menu .menu-item a {
    color: #000000 !important;
    line-height: 24px !important;
    padding: 13px 25px!important;
  }
}
.navbar .menu-item-has-children .dropdown-menu .menu-item a:hover,
.navbar .menu-item-has-children ul.dropdown-menu li a:hover {
  color: #921b83 !important;
  background: 0!important;
  opacity: 0.7 !important;
}
.navbar .menu-item-has-children .dropdown-menu .menu-item:last-child a:before {
  display: none;
}
.navbar .menu-item-has-children a .fa {
  color: #921b83;
}
.navbar .menu-item-has-children .dropdown-menu {
  top: 95%!important;
  left: 0!important;
  right: auto!important;
}
.navbar .menu-item-has-children .dropdown-menu li {
  height: auto!important;
  line-height: 1.2!important;
}
.navbar .menu-item-has-children .dropdown-menu li a {
  padding: 10px 15px;
  display: block;
}
.navbar .navbar-brand img {
  max-width: 100px !important;
  margin: -5px 0 0 5px;
  position: absolute;
}




@media (max-width: 540px) {
  .navbar .navbar-brand img {
    max-width: 90px !important;
    margin: 0px 0 0 5px;
  }
}

@media (min-width: 540px) {
  .navbar .navbar-brand img {
    max-width: 90px !important;
    margin: 0px 0 0 0px;
    margin-bottom: 2px !important;
  }
}


@media (min-width: 768px) {
  .navbar .navbar-brand img {
    max-width: 120px !important;
    margin: 6px 0 0 0px;
  }

  .header.type2.is-fixed .navbar-brand img {
    max-width: 164px !important;
    margin-top: -12px;
  }

  .header.type2.is-fixed {
    padding: 5px 0;
  }
}


@media (min-width: 992px) {
  .navbar .navbar-brand img {
    max-width: 164px !important;
    margin: -5px 0 0 0px;
  }

  .header.type2.is-fixed .navbar .d-flex {
    margin: 1px 0 0 0;
  }
}

@media (min-width: 1200px) {
  .navbar .navbar-brand img {
    max-width: 164px !important;
    margin: -10px 0 0 0;
  }
}


.navbar .navbar {
  display: none!important;
}
@media (min-width: 992px) {
  .navbar .navbar {
    display: flex!important;
  }
}
.navbar .mobile-menu {
  width: 100%;
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  -webkit-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.05);
    padding: 70px 0 20px;
    background: #fff;
}
}

@media (max-width: 540px) {
  .navbar .mobile-menu {
    top: 65px;
  }
}


@media (min-width: 992px) {
  .navbar .mobile-menu {
    background: #fff;
    padding: 20px 25px;
    max-width: 245px;
    top: 75px;
    right: 20px;
  }
}
.navbar .mobile-menu .d-flex {
  width: 100%;
  display: block!important;
  background: #fff;
}
.navbar .mobile-menu .d-flex li {
  height: auto!important;
  line-height: 1.2!important;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.navbar .mobile-menu .d-flex li a {
  display: block;
  text-align: left!important;
  font-weight: 400;
  font-size: 15px;
  padding: 15px 40px;
  position: relative;
  color: #000 !important;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) {
  .navbar .mobile-menu .d-flex li a {
    padding: 10px 20px;
    font-size: 13px;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
}
.navbar .mobile-menu .d-flex li a:hover,
.navbar .mobile-menu .d-flex li a:active,
.navbar .mobile-menu .d-flex li a:focus {
  text-decoration: none;
  color: #293347;
}
.navbar .mobile-menu .d-flex li a .fa {
  color: #921b83;
  width: 20px;
  height: 20px;
  z-index: 99999;
  position: absolute;
  top: 9px;
  font-size: 30px;
  right: 30px;
  text-align: center;
  line-height: 30px;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
@media (min-width: 992px) {
  .navbar .mobile-menu .d-flex li a .fa {
    font-size: 20px;
    top: 5px;
    right: 0;
  }
}
.navbar .mobile-menu .d-flex li a .fa.active {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.navbar .mobile-menu .d-flex li.menu-item-has-children .dropdown-menu {
  border: 0;
  float: none;
  position: relative!important;
  top: auto!important;
  left: auto!important;
}
.navbar .mobile-menu .d-flex li.menu-item-has-children .dropdown-menu li a {
  padding: 8px 40px!important;
}
@media (min-width: 992px) {
  .navbar .mobile-menu .d-flex li.menu-item-has-children .dropdown-menu li a {
    padding: 8px 28px!important;
  }
}
.navbar .mobile-menu.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.navbar .d-flex {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 992px) {
  .navbar .d-flex {
    margin: 0px 0 0 0;
    height: auto
  }
}
.navbar .d-flex .menu-item {
  height: 40px;
  line-height: 40px;
}
.navbar .d-flex .menu-item a {
  background: #fff;
  color: #333;
  padding: 0 10px;
  font-size: 17px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  -webkit-transition: all 0.3s ease 0s !important;
  -moz-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}



.navbar .d-flex .menu-item a:hover {
  color: #921b83;
  text-decoration: none;
}
@media (min-width: 992px) {
  .navbar .d-flex .menu-item a {
    background: 0!important;
    padding: 0 5px 0 15px;
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .navbar .d-flex .menu-item a {
    background: 0!important;
    padding: 0 5px 0 30px;
    font-size: 17px;
  }
  .navbar .col-md-12 {
    padding: 0px;
    margin: -5px 0 0 0;
  }
}


.navbar .d-flex .menu-item.current-menu-item > a {
  text-decoration: none;
  opacity: 0.8;
}
.navbar .d-flex .menu-item.current-menu-item .dropdown-menu a {
  text-decoration: none;
}
.navbar span {
  font-size: 1.214em;
  margin: -2px 15px;
  color: #fff;
}
.navbar span.phone,
.navbar span.mob-phone {
  color: #000 !important;
  padding: 0 0 0 5px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.navbar span.mob-phone {
  position: absolute;
  top: 23px;
  right: 50px;
}

@media (max-width: 768px) {
  .navbar span.mob-phone {
    top: 10px;
    font-size: 16px;
  }
}

@media (max-width: 540px) {
  .navbar span.mob-phone {
    top: 17px;
  }  
}




@media (min-width: 540px) {
  .navbar span {
    margin: 0;
  }

}

@media (min-width: 992px) {
  .navbar span.mob-phone {
    display: none;
    top: 14px;
  }
}





.navbar .header-cta {
  margin: 0px 0 0 20px;
}
.navbar .mobile-cta {
  background: transparent !important;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 56px;
  z-index: 10;
  display: none;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  padding: 15px 15px 12px 40px !important;
  margin: 0;
  border-radius: 25px !important;
}

.header.active .navbar .mobile-cta:hover {
  pointer-events: none !important;
}

@media (max-width: 540px) {
  .navbar .mobile-cta {
    height: 56px;
    padding:  24px 15px 2px 40px
  }
}


@media (min-width: 992px) {
  .navbar .mobile-cta {
    display: none;
  }
}
.navbar .mobile-cta:hover,
.navbar .mobile-cta:active,
.navbar .mobile-cta:focus {
  opacity: 1!important;
}
.header {
  width: 100%;
  z-index: 999;
  overflow: hidden;
}
@media (min-width: 992px) {
  .header {
    padding: 20px 0 30px 0 !important;
    overflow: initial;
  }
}
.header.active {
  position: fixed;
  overflow: initial;
}
.header.type1 {
  position: relative;
  background: #ffffff;
}
.header.type2 {
  position: absolute;
  top: auto;
  background: transparent;
  padding-bottom: 30px;
}

@media (max-width: 992px) {
  .header.type2 {
    padding-bottom: 2px;
  }
}

.header .header-cta {
  display: none;
}
@media (min-width: 992px) {
  .header .header-cta {
    display: inline-block;
  }
}
.nav {
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */
}
/* end .nav */
.hamburger {
  padding: 7px!important;
  position: relative;
  z-index: 101;
  display: block!important;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
@media (max-width: 992px) {
  .hamburger {
    position: absolute;
    top: 17px;
    right: 10px;
  }
}



.hamburger:focus,
.hamburger:active {
  border: 0;
  outline: none;
}
.hamburger .hamburger-inner {
  background: #921b83 !important;
  -webkit-border-radius: 0!important;
  -moz-border-radius: 0!important;
  -o-border-radius: 0!important;
  border-radius: 0!important;
}
.hamburger .hamburger-inner:before,
.hamburger .hamburger-inner:after {
  background: #921b83 !important;
  -webkit-border-radius: 0!important;
  -moz-border-radius: 0!important;
  -o-border-radius: 0!important;
  border-radius: 0!important;
}
.hamburger.is-active {
  right: 25px;
  margin:  0;
  color: #921b83 !important;
  top: -10px;
}
@media (min-width: 540px) {
  .hamburger.is-active {
    top: 3px;
  }
}
.page-blog .header,
.single-post .header,
.error404 .header,
.single-project .header,
.woocommerce-page .header {
  background: transparent;
}
.page-blog .blog,
.single-post .blog,
.error404 .blog,
.single-project .blog,
.woocommerce-page .blog {
  margin: 0px 0 0 0;
}

.error404 .article-header {
    margin-top: 200px;
}

}
.page-feedback .header,
.page-referral .header {
  min-height: 220px;
  background: url(../../images/feedbackhead.jpg) center center no-repeat;
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
  position: relative;
}
.wave {
  width: 220px;
  position: absolute;
  right: 6%;
  bottom: -6.5%;
  opacity: 1;
  z-index: 3;
}

@media (max-width: 768px) {
  .wave {
    width: 30%;
  }
}


@media (min-width: 992px) {
  .wave {
    bottom: -110%;
  }

  .home .wave {
    bottom: -6.5% !important;
  }
}

.arrows {
   max-width: 230px;
  position: absolute;
  left: -17%;
  top: 37%;
  z-index: 5;
}

@media (min-width: 1800px) {
  .arrows {
    left: -5%;
  }
}

@media (max-width: 992px) {
  .arrows {
    display:  none;
  }
}



/******************************************************************
Site Name: Brew
Author: Dan Brown

Stylesheet: Body

Wordpress automatically adds classes to certain pages.  You can target
pages with something such as  body.tag or body.archive
******************************************************************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/** Page Hero Module **/


.page-hero {
  position: relative;
  min-height: 540px;
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
  margin-top:  auto;
  overflow: hidden;
  background-position: center center !important;
}

.page-hero .container {
  z-index: 99;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .page-hero {
    min-height: 800px;
    height: 75vh;
    max-height: 800px;
  }

}

@media (max-width: 768px) {
  .page-hero .container {
    padding: 0 30px;
  }
}


.page-hero .overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}



.page-hero .fg-logo {
  width: 100%;
  margin: 0 0 30px 0;
  max-width: 100px;
  position: relative;
  z-index: 998;
}

@media (min-width: 992px) {
  .page-hero .fg-logo {
    max-width: 160px;
  }
}

@media (min-width: 768px) {
  .page-hero .fg-logo {
    max-width: 120px;
  }
}



.page-hero h1 {
  color: #fff;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}


.page-hero .banner-content {
  max-width: 100%;
  margin-top: auto 0;
}

@media (max-width: 992px) {

}

@media (min-width: 992px) {
  .page-hero .banner-content {
    max-width: 100%;
  }

  .home .page-hero .banner-content {
    position: relative !important;
    bottom: unset !important;
  }


}


.page-hero .banner-content h3 {
  color: #fff !important;
}

@media (min-width: 992px) {
  .page-hero .banner-content h3 {
    font-size: 30px !important;
  }
}

.page-hero .banner-content p {
  font-size: 15px !important;
  font-weight: 300 !important;
  color: #fff !important;
  margin: 25px 0 30px !important;
  line-height: 21px;
}


@media (max-width: 992px) {
  .page-hero .banner-content p {
    font-size: 16px !important; 
    line-height: 21px !important;
  }
}

.page-hero a.page-hero-btn {
  font-size: 15px;
  font-weight: 600;
  padding: 14px 25px;
  border-radius: 25px;
  color: #fff !important;
  text-decoration: none;
  display: inline-block !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-family: 'Poppins', sans-serif !important;
  margin: 0 10px 10px 0;
  background: #59307D;
  background: -webkit-linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
}
.page-hero a.page-hero-btn:hover,
.page-hero a.page-hero-btn:active,
.page-hero a.page-hero-btn:focus {
  background: #fff !important;
  color: #921b83 !important !important;
  box-shadow: 0px 2px 10px rgba(80, 37, 111, 0.3);
  text-decoration: none;
}



.page-hero .hero-btn-2 {
  font-size: 15px;
  font-weight: 600;
  padding: 14px 25px;
  border-radius: 25px;
  background: #fff;
  color: #921b83 !important;
  text-decoration: none;
  display: inline-block !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-family: 'Poppins', sans-serif !important;
}


.page-hero a.hero-btn-2:hover,
.page-hero a.hero-btn-2:active,
.page-hero a.hero-btn-2:focus {
  background: #921b83 !important;
  color: #fff !important;
  text-decoration: none;
  opacity: 1 !important;
}

/** Text Image Module **/




.text-image .col-md-6 {
    padding: 0;
}
.text-image .text-flex.left {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}





.text-image .text-flex .text-content {
  text-align: left;
}


@media (min-width: 768px) {
    .text-image .text-flex .text-content {
        max-width: 80%;
        margin: 0 auto;
        padding: 60px 0 40px 0;
    }
}

@media (min-width: 1201px) {
    .text-image .text-flex.left .text-content {
        max-width: 80%;
        margin: 0 0 0 auto;
    }

    .text-image .text-flex.right .text-content {
        max-width: 80%;
        margin: 0 auto 0 0;
    }
}


@media (min-width: 1600px) {
    .text-image .text-flex.left .text-content {
        max-width: 65%;
    }

    .text-image .text-flex.right .text-content {
        max-width: 65%;
    }
}
.text-image .text-slider-single {
    overflow: hidden;
}
.text-image .text-slider-single .swiper-wrapper .swiper-slide .swiper-image {
    min-height: 700px;
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}



.text-image .text-slider-single .swiper-button-next {
    right: 30px;
    color: #fff;
}
.text-image .text-slider-single .swiper-button-prev {
    left: 30px;
    color: #fff;
}



.text-image .row {
  background: transparent;
}



.text-image .text-image-wrap.right .swiper-image {
  background-size: contain !important;
  background-position: 0% 100% !important;
}

.text-image .text-image-wrap.left .swiper-image {
  background-size: contain !important;
  background-position: 100% 100% !important;
}




.text-image h2:before {
  margin: 15px 0 20px !important;
}



@media (min-width: 992px) {
    .text-image .text-slider-single .swiper-wrapper .swiper-slide .swiper-image {
        min-height: initial;
    }

    .text-image .text-image-wrap.right .swiper-image {
      background-size: 80% !important;
      background-position: 0% 100% !important;
    }

    .text-image .text-image-wrap.left .swiper-image {
      background-size: 80% !important;
      background-position: 100% 100% !important;
    }

    .text-image .text-content-wrap {
      padding: 80px 0;
    }
}


@media (min-width: 1600px) {
    .text-image .text-image-wrap.right .swiper-image {
      background-size: 70% !important;
    }

    .text-image .text-image-wrap.left .swiper-image {
      background-size: 70% !important;
    }
}


@media (max-width: 768px) {
  .text-image .text-image-wrap.right {
    order: 2 ;
  }

  .text-image .swiper-image {
    min-height: 400px !important;
  }

  .text-image .text-flex .text-content {
    max-width: 75%;
    padding: 70px 0px 70px;
    margin: 0 auto !important;
    text-align: center;
  }


  .text-image h2:before {
    margin: 15px auto 20px !important;
  }

  .text-image .text-image-wrap.left .swiper-image {
    background-size: contain !important;
  }

  .text-image .text-slider-single .swiper-wrapper .swiper-slide .swiper-image {
    min-height: 400px;
  }
}



/** Brands Module **/
.brands {
  background: 0;
  padding: 80px 0 30px;
}

 .brands h2 { 
  margin-bottom: 40px;
  text-align: center;
}


.brands h2:before {
  margin: 0px auto 20px !important;
}

.brands .logo-grid {
  float: left;
  padding: 5px;
  width: 20%;
}


.brands .logo-grid .logo {
  min-height: 40px;
  width: 100%;
  margin-bottom: 20px;
  -webkit-background-size: contain!important;
  -moz-background-size: contain!important;
  background-size: contain!important;
}


@media (max-width: 540px) {
  .brands .row {
    margin: 0 auto !important;
  }

  .brands {
    padding: 30px 0 40px;
  }

  .brands .logo-grid {
    width: 33%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .brands .logo-grid {
    width: 20%;
    padding: 10px;
  }

  .brands .logo-grid .logo {
    min-height: 50px;
    }
}

@media (min-width: 992px) {
  .brands .logo-grid {
    width: 20%;
    padding:  10px;
  }

  .brands .logo-grid .logo {
    min-height: 100px;
    background-size: contain !important;
    }
}

.brands .logo-block {
  position: relative;
}
.brands .logos {
  overflow: hidden;
}
.brands .logos .swiper-wrapper .swiper-slide .swiper-image {
  min-height: 40px;
  opacity: 1;
  width: 100%;
  background-size: contain !important;
}

@media (max-width: 540px) {
  .brands .swiper-button-next {
    right: -15px !important;
    top: 20px !important;
    font-size: 10px !important;
  }

  .brands .swiper-button-prev {
    left: -15px !important;
    top: 20px !important;
    font-size: 10px !important;
  }
}

@media (min-width: 540px) {
  .brands .logos .swiper-wrapper .swiper-slide .swiper-image {
    min-height: 60px;
    background-size: contain !important;
  }
}


@media (min-width: 992px) {
  .brands .logos .swiper-wrapper .swiper-slide .swiper-image {
    min-height: 80px;
    background-size: contain !important;
  }
}
.brands .swiper-button-prev,
.brands .swiper-button-next {
  color: #ccc;
  display: flex;
}
@media (min-width: 768px) {
  .brands .swiper-button-prev,
  .brands .swiper-button-next {
    display: block;
  }
}
.brands .swiper-button-prev {
  left: 0;
  top: 37px;
}

.brands .swiper-button-next {
  top: 37px;
}

@media (min-width: 992px) {
  .brands .swiper-button-prev {
    left: -20px;
    top: 46px;
  }
}
.brands .swiper-button-next {
  right: 0;
}
@media (min-width: 992px) {
  .brands .swiper-button-next {
    right: -20px;
    top: 46px;
  }
}


/** Testimonials Module **/


.testimonials {
  position: relative;
  padding: 110px 0;
  overflow: visible;
  background: transparent;
}

@media (min-width: 992px) {
  .testimonials {
    padding: 95px 0;
    margin: 0;
  }
}

.testimonials .swiper-wrapper {
  height:  auto !important;
}


.testimonials .container .row {
  background: transparent;
  width: auto !important;
  position: relative;
  z-index: 2;
}


.testimonials .icn-logo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  opacity: 0.7;
}

.testimonials .icn-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 30%;
}

@media (max-width: 540px) {
  .testimonials .icn-overlay {
    max-width: 80%;
  }
}


.testimonials .col-md-6 {
  background: transparent;
  padding: 0px;
  border-radius: 0px;
  margin: 0;
  width: 93%;
}


.testimonials div#left.col-md-6 {
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 20%;
  background-position: 5% 0%;
}

@media (max-width: 992px) {
  .testimonials div#left.col-md-6 {
    display: block;
    padding: 0 30px;
  }
}

.testimonials div#left.col-md-6 img {
    display: block;
    position: absolute;
    bottom: -30px;
    left: 20px;
    max-width: 320px;
}

@media (min-width: 768px) {
   .testimonials div#left.col-md-6 img {
    display: block;
    position: absolute;
    bottom: -30px;
    left: 30px;
    max-width: 450px;
  } 
}

@media (min-width: 992px) {
   .testimonials div#left.col-md-6 img {
    display: block;
    position: absolute;
    bottom: -30px;
    left: 60px;
    max-width: 500px;
  } 
}


.testimonials div#left.col-md-6 p {
  color: #fff !important;
}

.testimonials div#right.col-md-6 {
}

.testimonials .col-md-6 {
  max-width: 100%;
}


@media (min-width:  992px) {
  .testimonials .col-md-6 {
   max-width: 45%;
   margin-top: 30px;
   margin-bottom: 30px;
  }

  .testimonials div#left.col-md-6 {
      margin-right: 2.5%;
  }

  .testimonials div#right.col-md-6 {
      margin-left: 2.5%;
  }

}

.testimonials .col-md-6 h2 {
  font-weight: 500;
  color: #fff;
  font-size: 26px;
  line-height: auto;
  margin: 30px 0 0 50px;
  text-align: left;
}

@media (max-width: 768px) {
  .testimonials .col-md-6 h2 {
    font-size: 24px;
  }
}

.testimonials .col-md-6 p {
  font-size: 15px;
  font-weight: 500;
  color: #143055;
}
@media (min-width: 992px) {
  .testimonials .col-md-5 p {
    font-size: 16px;
    color: #143055 !important;
  }
}



.testimonials .col-md-6 .btn {
  background: transparent;
  border: 1px solid #fff;
  padding: 10px 25px;
  text-align: center;
  display: inline-block;
  margin: 10px 0 0 0;
  font-size: 1em;
  font-weight: 500;
  color: #fff;
  -webkit-border-radius: 0!important;
  -moz-border-radius: 0!important;
  border-radius: 0!important;
}
.testimonials .col-md-6 .btn:hover,
.testimonials .col-md-6 .btn:active,
.testimonials .col-md-6 .btn:focus {
  text-decoration: none;
  background: #fff;
  color: #293347;
}
.testimonials .testimonials-slider {
  padding: 0 0 30px 0;
  margin: 30px 0 0 0;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonials-slider:before {
  content: "";
  width: 144px;
  height: 144px;
  position: absolute;
  top: 0;
  right: 0;
  /* background: url(../../images/overlay-icon-white.png) center center no-repeat; */ 
}
@media (min-width: 992px) {
  .testimonials .testimonials-slider {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0px !important;
  }

  .testimonials .testimonials-slider {
    padding: 0 30px 70px 30px !important;  
  }
}

.testimonials .testimonials-slider .swiper-wrapper .swiper-slide .testimonial h3 {
  font-size: 1.714em;
  font-weight: 700 !important;
  color: #fff;
  font-style: normal;
  margin-bottom: 10px;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.testimonials .testimonials-slider .swiper-wrapper .swiper-slide .testimonial p {
  font-size: 1.071em;
  font-weight: 400;
  color: #fff !important;
  font-family: 'Spartan', sans-serif !important;
}

.testimonials .testimonials-slider .swiper-wrapper .swiper-slide .testimonial a {
  display: block !important;
  pointer-events: all !important;
  margin: 0 0 10px 0;
}


.testimonials .testimonials-slider .swiper-wrapper .swiper-slide .testimonial p.client {
  font-style: normal!important;
  font-weight: 600;
  color: #fff !important;
  font-family: 'Spartan', sans-serif !important;
  float: left;
  margin: 5px 0 0 0px;
  max-width: 260px;
}


@media (max-width: 540px) {
  .testimonials .testimonials-slider .swiper-wrapper .swiper-slide .testimonial p.client {
    max-width: 180px;
    float: left;
    margin-top: 5px;
  }
}


.testimonials .testimonials-slider .swiper-wrapper .swiper-slide .testimonial .testimonial-img {
  height: 75px;
  width: 75px;
  border-radius: 100%;
  margin: 0 0 15px 0;
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
  float: left;
}
.testimonials .testimonials-slider .swiper-pagination {
  bottom: -5px;
  width: auto!important;
}
.testimonials .testimonials-slider .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: rgba(255,255,255,0.9);
  margin: 0 10px 0 0;
}
.testimonials .testimonials-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #05bcd6 !important;
}


/** Hero Banner Module **/
.hero {
  position: relative;
  margin-top: auto;
  overflow: hidden;
}

@media (min-width:  992px) {
  .hero, 
  .page-hero { 
  }
}



.hero .hero-banner .swiper-wrapper .swiper-slide {
  min-height: 540px;
  width: 100%;
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
  position: relative;
  background-position: center center !important;
}

@media (min-width: 992px) {
  .hero .hero-banner .swiper-wrapper .swiper-slide {
    min-height: 700px;
    height: 80vh !important;
    max-height: 800px;
  }

  .hero .hero-banner .swiper-wrapper .swiper-slide .container {
    bottom: -75px !important;
  }
}


.hero .hero-banner .swiper-wrapper .swiper-slide .overlay {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: rgb(0,0,0) !important;
  background: -moz-linear-gradient(180deg, rgba(0,0,0,0.6012605725884104) 0%, rgba(0,0,0,0.3043418050814075) 35%) !important;
  background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.6012605725884104) 0%, rgba(0,0,0,0.3043418050814075) 35%) !important;
  background: linear-gradient(180deg, rgba(0,0,0,0.6012605725884104) 0%, rgba(0,0,0,0.3043418050814075) 35%) !important;
}
.hero .hero-banner .swiper-wrapper .swiper-slide .container {
  z-index: 999;
  position: relative;
  height: 100%;
}



.hero .hero-banner .swiper-wrapper .swiper-slide .hero-fg {
  width: 100%;
  margin: 0 0 0px 0;
  max-width: 170px;
}

@media (min-width: 540px) {
  .hero .hero-banner .swiper-wrapper .swiper-slide .hero-fg {
    max-width: 240px;
  }

  .hero .hero-banner .swiper-wrapper .swiper-slide .hero-content {
    margin: 150px 0 0 0px;
  }
}

@media (min-width: 768px) {
  .hero .hero-banner .swiper-wrapper .swiper-slide .hero-fg {
    max-width: 280px;
  }

  .hero .hero-banner .swiper-wrapper .swiper-slide .hero-content {
    margin: 105px 0 0 -15px;
  }
}

@media (min-width: 992px) {
  .hero .hero-banner .swiper-wrapper .swiper-slide .hero-fg {
    max-width: 450px;
      right: 8%;
  }

  .hero .hero-banner .swiper-wrapper .swiper-slide .hero-content {
    margin: -60px 0 0 0;
  }
}


.hero .hero-banner .swiper-wrapper .swiper-slide .hero-content p {
  color:  #000 !important;
}

.hero .hero-banner .swiper-wrapper .swiper-slide .hero-content {
  width: 100%;
}

@media (max-width: 992px) {
  .hero .hero-banner .swiper-wrapper .swiper-slide .hero-content {
    margin-top: 35px;
  }
}

@media (max-width: 768px) {
  .hero .hero-banner .swiper-wrapper .swiper-slide .hero-content {
    width: 70%;
  }

  .hero .hero-banner .swiper-wrapper .swiper-slide .hero-content img {
    max-width: 200px;
    height: auto;
  }
}

@media (max-width:  540px) {
  .hero .hero-banner .swiper-wrapper .swiper-slide .hero-content {
    width: 100%;
    margin-top: 100px;
  }
}


.hero .hero-banner .swiper-wrapper .swiper-slide .hero-content h2 {
  color: #fff;
  font-size: 25px !important;
  font-weight: 300!important;
  margin-bottom: 20px;
}
.hero .hero-banner .swiper-wrapper .swiper-slide .hero-content h2 strong {
  font-weight: 700!important;
}
@media (min-width: 992px) {
  .hero .hero-banner .swiper-wrapper .swiper-slide .hero-content h2 {
    font-size: 55px !important;
  }
}
.hero .hero-banner .swiper-wrapper .swiper-slide .hero-content p {
  font-size: 16px;
  color: #fff;
  font-weight: 300 !important;
  margin-bottom: 25px;
  margin-top: 25px;
  line-height: 21px;
}

@media (min-width: 992px) {
  .hero .hero-banner .swiper-wrapper .swiper-slide .hero-content p {
    font-size: 21px;
    max-width: 70%;
    line-height: 28px;
  }
}

@media (min-width: 1200px) {
  .hero .hero-banner .swiper-wrapper .swiper-slide .hero-content p {
    max-width: 55%;
  }
}

.hero .hero-banner .swiper-wrapper .swiper-slide .hero-content .hero-btn {
  font-size: 14px;
  font-weight: 500;
  margin: 10px 5px 12px 0px;
  padding: 13px 30px;
  border-radius: 25px;
  background: transparent;
  border: 1px solid #000;
  color: #000 !important;
  text-decoration: none;
  display: inline-block !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-family: 'Poppins', sans-serif !important;
}


.hero .hero-banner .swiper-wrapper .swiper-slide-active .hero-btn,
.hero .hero-banner .swiper-wrapper .swiper-slide-active .hero-btn-2 {
  pointer-events: all !important;
  z-index: 100 !important;
  position: relative !important;
}


.hero .hero-banner .swiper-wrapper .swiper-slide .hero-content .hero-btn:hover,
.hero .hero-banner .swiper-wrapper .swiper-slide .hero-content .hero-btn:active,
.hero .hero-banner .swiper-wrapper .swiper-slide .hero-content .hero-btn:focus,
.hero .hero-banner .swiper-wrapper .swiper-slide .hero-content .hero-btn-2:hover,
.hero .hero-banner .swiper-wrapper .swiper-slide .hero-content .hero-btn-2:active,
.hero .hero-banner .swiper-wrapper .swiper-slide .hero-content .hero-btn-2:focus {
  background: #000;
  color: #fff !important;
  text-decoration: none;
  opacity: 1 !important;
}

.hero .hero-banner .swiper-wrapper .swiper-slide-duplicate-active .hero-btn,
.hero .hero-banner .swiper-wrapper .swiper-slide-duplicate-active .hero-btn-2 {
pointer-events: none !important;
display: none;
}





.hero .hero-banner .swiper-wrapper .swiper-slide .hero-content .hero-btn-2 {
  font-size: 14px;
  font-weight: 500;
  margin: 10px 5px 12px 0px;
  padding: 13px 30px;
  border-radius: 25px;
  background: transparent;
  border: 1px solid #000;
  color: #000 !important;
  text-decoration: none;
  display: inline-block !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-family: 'Poppins', sans-serif !important;
}




.hero .swiper-pagination {
  top: -40px;
  z-index: 999;
}


@media (min-width: 992px) {
  .hero .swiper-pagination {
    top: -60px;
  }
}
.hero .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #fff!important;
  margin: 0 10px 0 0;
}
.hero .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff!important;
  opacity: 1!important;
}
/** Recent Posts Module **/
.recent {
  padding: 90px 0;
}

.recent-header-intro {
  width: 100%;
  position: relative;
}

.recent h2 {
  margin: 0 0 30px 0;
  display: flex;
  width: 100%;
  text-align: left;
}

.single .recent h2 {
  text-align: left;
}


.recent .post-block {
  position: relative;
  width: 100% !important;
}
.recent .post-block .swiper-button-prev,
.recent .post-block .swiper-button-next {
  color: #c4c0c3;
}
.recent .posts {
  overflow: hidden;
}
.recent .posts .swiper-button-prev {
  left: 0;
}


@media (max-width: 768px) {
  .recent .posts .swiper-button-next,
  .recent .posts .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,31%) !important;
  }  

  .box-slider.recent .posts .swiper-button-next,
  .box-slider.recent .posts .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,45%) !important;
  }   
}


@media (min-width: 992px) {
  .recent .posts .swiper-button-prev {
    left: -50px;
  }
}

.recent .posts .swiper-button-next {
  right: 0;
}


@media (min-width: 768px) {
  .recent .posts .swiper-button-next,
  .recent .posts .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,30%) !important;
  }  

  .box-slider.recent .posts .swiper-button-next,
  .box-slider.recent .posts .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,50%) !important;
  }  

  .recent .posts .swiper-button-next {
    right: -40px;
  }

  .recent .posts .swiper-button-prev {
    left: -40px;
  }
}

@media (min-width: 992px) {
  .recent .posts .swiper-button-next {
    right: -50px;
  }

  .recent .posts .swiper-button-next,
  .recent .posts .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,32%) !important;
  } 

  .box-slider.recent .posts .swiper-button-next,
  .box-slider.recent .posts .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,50%) !important;
  }   
}

.recent .posts .swiper-wrapper {
  position: relative;
}
.recent .posts .swiper-wrapper a {
  width: 100%;
  display: block;
}
.recent .posts .swiper-wrapper .swiper-slide {
  position: relative;
}
.recent .posts .swiper-wrapper .swiper-slide .swiper-image {
  display: block;
  min-height: 200px;
  width: 100%;
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 540px) {
  .recent .posts .swiper-wrapper .swiper-slide .swiper-image {
    min-height: 200px;
  }  
}

.recent .posts .swiper-wrapper .swiper-slide .swiper-image .post-info {
  font-family: 'Poppins', sans-serif !important;
  position: absolute;
  bottom: 40px;
  left: 40px;
  text-align: left;
}
.recent .posts .swiper-wrapper .swiper-slide .swiper-image .post-info .published {
  display: block;
  color: #fff;
  font-weight: 400;
  margin: 0 0 10px 0;
}
.recent .posts .swiper-wrapper .swiper-slide .swiper-image .post-info .post-title {
  display: block;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
}
@media (min-width: 992px) {
  .recent .posts .swiper-wrapper .swiper-slide .swiper-image .post-info .post-title {
    font-size: 24px;
  }
}
.recent .posts .swiper-wrapper .swiper-slide .swiper-image .post-info .post-btn {
  font-size: 13px;
  border: 0;
  outline: 0;
  background: 0;
  border: 0px solid transparent;
  text-decoration: underline;
  color: #fff;
  text-align: center;
  padding: 0;
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.recent .posts .swiper-wrapper .swiper-slide .swiper-image .post-info .post-btn:hover,
.recent .posts .swiper-wrapper .swiper-slide .swiper-image .post-info .post-btn:active,
.recent .posts .swiper-wrapper .swiper-slide .swiper-image .post-info .post-btn:focus {
  opacity:  0.7;
}

.recent .posts .swiper-wrapper .swiper-slide .swiper-image:hover:before {
  background: rgba(0, 0, 0, 0.0);
}


.recent .box-icn,
.blog .box-icn,
.blog-list .box-icn {
  max-width: 38px !important;
  position: absolute;
  top: 0;
  right: 0px;
}




/** Blog Module **/
.blog {
  padding: 80px 0 60px 0;
  background-color: #fff;
}

@media (max-width: 540px) {
  .blog {
    padding: 80px 10px 60px 10px;
  }
}

@media (min-width: 992px) {
  .blog {
    padding: 140px 0 100px 0;
  }
}
.blog h2 {
  color: #ffffff;
  margin: 0 0 30px 0;
  font-weight: 200;
  font-size: 2.5em;
}
@media (min-width: 992px) {
  .blog h2 {
    font-size: 3.214em;
  }
}
.blog .ajax-load-more-wrap {
  width: 100%;
}
.blog .ajax-load-more-wrap .alm-reveal {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.blog .ajax-load-more-wrap .alm-btn-wrap {
  padding: 0 15px;
}
.blog .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn {
  font-size: 14px;
  font-weight: 500;
  margin: 30px 10px 10px 0px;
  padding: 10px 30px;
  text-transform: uppercase;
  border-radius: 6px;
  background: #000000;
  color: #000 !important;
  text-decoration: none;
  display: inline-block !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-family: 'Poppins', sans-serif !important;
}

.blog .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn:hover {
  opacity: 0.7;
}

.blog .post-item {
  margin: 0 0 30px 0;
  position: relative;
}
.blog .post-item .post-image {
  display: block;
  min-height: 278px;
  width: 100%;
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
  margin: 0 auto;
  background: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 540px) {
  .post-item .post-image {
    height: 240px !important;
  }
}


.blog .post-item .post-image .post-info .published {
  display: block;
  color: #fff;
  font-weight: 400;
  margin: 0 0 10px 0;
}
.blog .post-item .post-image .post-info .post-title {
  display: block;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .blog .post-item .post-image .post-info .post-title {
    font-size: 17px;
  }
}

.blog .post-item .post-image .post-info .post-btn {
  border: 0;
  outline: 0;
  background: transparent;
  text-decoration: underline;
  color: #fff;
  text-align: center;
  padding: 0px;
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.blog .post-item .post-image .post-info .post-btn:hover,
.blog .post-item .post-image .post-info .post-btn:active,
.blog .post-item .post-image .post-info .post-btn:focus {
  background: #fff;
  color: #ffffff;
}
/** Single Post **/
.single #content {
  margin: 90px 0 0 0;
  overflow: hidden;
}
.single .related {
  padding: 60px 0;
}
.single .related h2 {
  font-size: 2em;
  margin: 0 0 30px 0;
  font-weight: 600;
}
.single .related .post-item {
  margin: 0 0 30px 0;
  position: relative;
}
.single .related .post-item .post-image {
  display: block;
  min-height: 350px;
  width: 100%;
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
  border-radius: 0px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 768px) {
  .single .related .post-item .post-image {
    display: block;
    min-height: 270px;  
  }
}


.single .related .post-item .post-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.single .related .post-item .post-image:hover:before {
  background: rgba(0, 0, 0, 0.0);
}


.single .related .post-item .post-image .post-info {
  position: absolute;
  bottom: 40px;
  left: 40px;
  text-align: left;
}
.single .related .post-item .post-image .post-info .published {
  display: block;
  color: #fff;
  font-weight: 400;
  margin: 0 0 10px 0;
}
.single .related .post-item .post-image .post-info .post-title {
  display: block;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .single .related .post-item .post-image .post-info .post-title {
    font-size: 17px;
  } 
}

.single .related .post-item .post-image .post-info .post-btn {
  border: 0;
  outline: 0;
  background: transparent;
  border-bottom:  0px;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  text-decoration: underline;
  text-align: center;
  padding: 0px;
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.single .related .post-item .post-image .post-info .post-btn:hover,
.single .related .post-item .post-image .post-info .post-btn:active,
.single .related .post-item .post-image .post-info .post-btn:focus {
  text-decoration: none;
  opacity: 0.6;
  color: #fff;
}
/** Single Project **/


.single-project #content {
  margin: 0px 0 0 0;
}

.single-gallery .single-content {
  margin: 0px 0 0 0;
}
@media (min-width: 992px) {
  .single-gallery .single-content {
    margin: 40px 0 0 0;
  }
}
.single-project .project-alt .gallery-btn {
  margin: 0 25px 0 0;
}
.single-project .project-alt .social-share {
  margin: 15px 0 0 0;
}
@media (min-width: 992px) {
  .single-project .project-alt .social-share {
    margin: 0;
    float: right;
  }
}
.single-project .gallery-top .swiper-slide img {
  width: 100%;
}
.single-project .gallery-thumbs {
  margin: 10px 0 0 0;
}
.single-project .gallery-thumbs .swiper-slide {
  min-height: 65px;
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
}
@media (min-width: 992px) {
  .single-project .gallery-thumbs .swiper-slide {
    min-height: 85px;
  }
}
.single-project .gallery-btn {
  display: none;
  float: right;
  background: #0055a5;
  color: #fff;
  padding: 5px 20px;
  margin: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.single-project .gallery-btn:hover,
.single-project .gallery-btn:active,
.single-project .gallery-btn:focus {
  text-decoration: none;
  opacity: 0.6;
}
@media (min-width: 992px) {
  .single-project .gallery-btn {
    display: inline-block;
  }
}
.single-project #light-thumbnails {
  margin: 30px 0 0 0;
}
.single-project #light-thumbnails .gallery-thumbnail {
  margin: 0 0 30px 0;
}
.single-project .related {
  padding: 60px 0;
}
.single-project .related h2 {
  font-size: 3.214em;
  color: #0055a5;
  margin: 0 0 30px 0;
  font-weight: 100;
}
.single-project .related .post-item {
  margin: 0 0 30px 0;
  position: relative;
}
.single-project .related .post-item .post-image {
  display: block;
  min-height: 350px;
  width: 100%;
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
}
.single-project .related .post-item .post-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.single-project .related .post-item .post-image .post-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.single-project .related .post-item .post-image .post-info .published {
  display: block;
  color: #fff;
  font-weight: 400;
  margin: 0 0 10px 0;
}
.single-project .related .post-item .post-image .post-info .post-title {
  display: block;
  font-size: 1.714em;
  color: #fff;
  font-weight: 400;
  margin: 0 0 10px 0;
}
.single-project .related .post-item .post-image .post-info .post-btn {
  border: 0;
  outline: 0;
  background: #0055a5;
  text-decoration: none;
  color: #fff;
  text-align: center;
  padding: 3px 15px;
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.single-project .related .post-item .post-image .post-info .post-btn:hover,
.single-project .related .post-item .post-image .post-info .post-btn:active,
.single-project .related .post-item .post-image .post-info .post-btn:focus {
  text-decoration: none;
  opacity: 0.7;
}
/** CTA Module **/
.cta {
  padding: 40px 0 80px;
  overflow: hidden;
  margin: 0;
  position: relative;
  background-size: cover !important;
  background-position: 50% 20% !important;
  border-radius: 50px 50px 0 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.cta:before {
  z-index: 0;
  content: "";
  border-radius: 15px;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 100%;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 64%, rgba(255,255,255,1) 80%);
  background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 64%, rgba(255,255,255,1) 80%);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 64%, rgba(255,255,255,1) 80%);
}

.cta .container {
  border-radius: 0 100px 0 0;
  background-size: cover !important;
 }

.cta .cta-background {
  min-height: 590px;
  background-size: cover !important;
  background-position: center top !important;
}


.cta h3 {
  margin-bottom: 20px !important;
}


@media (max-width: 992px) {
  .cta .cta-background {
    min-height: 340px;
  }

  .cta .row {
    padding-left: 15px;
  }

}


@media (max-width: 768px) {

  .cta .row {
    padding-left: 0px;
  }

  .cta {
    padding: 30px 35px 30px;
    background-position: 50% 20% !important;
  }

  .cta .cta-background { 
    background-position: 18% 50% !important;
  }
}


@media (max-width: 540px) { 

    .cta h2:before {
      margin: 0 auto 20px !important;
    }

   .cta {
    padding-bottom: 20px !important;
   }

   .cta .container {
      padding: 80px 30px 0 !important;
      text-align: left !important;
      background-position: 55% 50% !important;
   }

   .cta .gravity-theme {
    padding: 30px 25px 10px !important;
   }

   .cta .cta-content p {
    font-size: 15px !important;
    line-height: 20px !important;
   }
}



/* .cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.5);
} */


.cta img.cta-fg {
  position: absolute;
  right: 20%;
  top: 0;
  max-width: 460px;
  z-index: 1;
}


.cta h2 {
  margin: 0 0 30px 0;
}


.cta img.cta-bg {
  max-width: 220px;
  position: absolute;
  top: -10%;
  right: 10%;
}



.cta .cta-content h4 {
  font-size: 1.286em;
  font-weight: 600;
  margin: 0 0 15px 0;
}


.cta .cta-content {
  position: relative;
  top: 20%;
}

@media (max-width: 540px) {
  .cta .cta-content {
    top: 11%;
  }
}

.cta img {
  margin-bottom: 5px !important;
}

.cta h2 em {
  color: #000000 !important;
  display: block;
  font-style: unset;
}

.cta .cta-content p {
  margin-bottom: 20px !important;
  font-size: 18px !important;
  line-height: 24px !important;
}


@media (min-width: 992px) {
  .cta .cta-content h4 {
    font-size: 21px;
  }

  .cta .cta-content p {
    max-width: 90%;
  }
}






/** FAQ Module **/
.faq {
  padding: 30px 0 60px;
  background: #fff;
}
@media (min-width: 992px) {
  .faq {
    padding: 50px 0 100px;
  }
}

.faq .panel-group {
  margin: 30px -10px 0 -10px;
}
.faq .faq-divider {
  width: 100%;
  padding: 0 10px;
}
@media (min-width: 992px) {
  .faq .faq-divider {
    width: 100%;
    float: left;
  }
}
.faq .panel {
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin: 0 0 20px 0;
  padding: 0;
  border: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq .panel .panel-heading.active .panel-title {
  background: transparent;
  color: #fff;
}
.faq .panel .panel-heading.active .panel-title a {
  color: #fff !important;
  background: #921b83;
  border-radius: 14px;
}
.faq .panel .panel-heading.active .panel-title:before {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  color: #fff;
  z-index: 1;
}
.faq .panel .panel-heading .panel-title {
  background: transparent;
  position: relative;
  margin: 0;
  padding: 0px 0px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  font-weight: 300;
  width: 100%;
  font-size: 1.071em;
  border: 1px solid #921b83;
  border-radius: 15px;
}

@media (min-width: 992px) {
  .faq .panel .panel-heading .panel-title {
    font-size: 18px;
  }
}
.faq .panel .panel-heading .panel-title:before {
  content: "\f107";
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  font-size: 29px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  color: #921b83;
  margin: -14px 0 0 0;
  z-index: 1;
  pointer-events: none !important;
}
.faq .panel .panel-heading .panel-title a {
  display: block;
  color: #921b83;
  background: transparent;
  line-height: 24px;
  font-weight: 500;
  padding: 17px 30px;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.faq .panel .panel-heading .panel-title a:hover,
.faq .panel .panel-heading .panel-title a:active,
.faq .panel .panel-heading .panel-title a:focus {
  text-decoration: none;
  background: #921b83;
  color: #fff;
  border-radius: 14px;
}

.faq .panel .panel-heading .panel-title:hover:before {
  color: #fff !important;
}

.faq .panel .panel-heading .panel-title:hover,
.faq .panel .panel-heading .panel-title:active,
.faq .panel .panel-heading .panel-title:focus {
  text-decoration: none;
  background: #921b83;
  color: #fff;
}
.faq .panel .panel-body {
  padding: 30px 0px;
}


.panel-default.active {
}


.faq .panel .panel-body a {
  color: #000000;
}
/** Content Module **/
.content-block {
  padding: 30px 0;
}
@media (min-width: 992px) {
  .content-block {
    padding: 60px 0;
  }
}
.content-block h2 {
  color: #ffffff;
  margin: 0 0 30px 0;
  font-weight: 600;
  font-size: 2.5em;
}
.content-block p {
  font-size: 1em;
  font-weight: 400;
}
@media (min-width: 992px) {
  .content-block p {
    font-size: 1.071em;
  }
}
.content-block .btn {
  margin: 20px 0 0 0;
  background: #fff!important;
  border: 2px solid #ffffff;
  color: #ffffff!important;
  padding: 8px 20px;
  text-align: center;
  display: inline-block;
  -webkit-border-radius: 0!important;
  -moz-border-radius: 0!important;
  border-radius: 0!important;
}
.content-block #sb_instagram #sbi_images {
  margin: 0 -15px;
}
.content-block #sb_instagram #sbi_images .sbi_item {
  padding: 15px!important;
}
.submeta {
  padding: 15px 0;
  margin: 10px 0 20px;
  border-top: 1px solid #000000;
}
.submeta .social-share {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.submeta .social-share li {
  display: inline-block;
}
.submeta .social-share li a {
  font-size: 1.6em;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  color: #fff;
}
.submeta .social-share li a.fb {
  background: #3b5998;
}
.submeta .social-share li a.twitter {
  background: #55acee;
}
.submeta .social-share li a.pinterest {
  background: #bd081c;
}
.submeta .social-share li a.linkedin {
  background: #0077b5;
}
.submeta .social-share li a.tumblr {
  background: #35465c;
}
.single .subhead {
  background: #56808a!important;
}
.single .entry-title {
  font-weight: 400;
  font-size: 30px;
}
@media (min-width: 768px) {
  .single .entry-title {
    font-size: 45px;
  }
}


.single .entry-title a {
  color: #000!important;
}
.single .byline {
  font-size: 1em!important;
  font-weight: 400 !important;
  color: #000!important;
  line-height: 30px;
  margin-right: 20px !important;
}
.single .byline a {
  color: #000!important;
}
@media (min-width: 992px) {
  .single .byline {
    float: left;
  }
}
.single .post-thumb {
  margin: 0 0 30px 0;
}
.single .post-thumb .post-image {
  border-radius: 15px;
  margin-bottom: 0px;
  min-height: 480px;
  width: 100%;
  background-position: 50% 50% !important;
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

@media (max-width: 540px) {
  .single .post-thumb .post-image {
    min-height: 320px;
  }
}

@media (min-width: 1800px) {
  .single .post-thumb .post-image {
    min-height: 540px;
  }
}

.single .single-content img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 20px 0;
}
.single .single-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 15px 0;
  font-size: 1em;
  font-weight: 400;
  color: #ffffff;
}
@media (min-width: 992px) {
  .single .single-content ul {
    font-size: 1.071em;
  }
}
.single .single-content ul li {
  margin: 0 0 4px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color:  #ffffff;
  padding-left: 18px;
}

.single .single-content ol {
  list-style-type: none;
  padding: 0;
  margin: 0 0 30px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color:  #ffffff;
}

.single .single-content ol li {
  margin: 0 0 4px 0;
  font-weight: 400;
}
.single .single-content ol li:before {
  counter-increment: section;
  content: counter(section);
  margin: 0 10px 0 0;
  color: #921b83;
  display: inline-block;
  font-weight: 500 !important;
}
#single-post-nav .pager {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
#single-post-nav .pager li span {
  padding: 0!important;
  border: 0!important;
  -webkit-border-radius: 0!important;
  -moz-border-radius: 0!important;
  border-radius: 0!important;
  display: inline-block;
  width: auto!important;
}
#single-post-nav .pager li span.previous-page a,
#single-post-nav .pager li span.next-page a {
  line-height: 0;
  color: #fff;
  font-size: 2.3em;
  display: inline-block;
  width: auto!important;
  background: #000000;
  padding: 10px 20px!important;
}
#single-post-nav .pager li span.previous-page {
  float: left!important;
}
#single-post-nav .pager li span.next-page {
  float: right!important;
}
.lg-outer .lg-sub-html {
  display: none;
}
/** Gallery Module **/
.gallery {
  padding: 120px 0 100px;
}
.gallery h2 {
  margin: 0 0 30px 0;
}
.gallery .block-description {
  margin: 0 0 30px 0;
}
.gallery .block-description p {
  color: #ffffff;
  font-size: 1.071em;
}
.gallery .btn {
  margin: 30px 0 0 0;
  background: #fff!important;
  border: 2px solid #ffffff;
  color: #ffffff!important;
  padding: 8px 20px;
  text-align: center;
  display: inline-block;
}
.gallery #light-thumbnails {
  width: 100%;
  padding: 0 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.gallery .prjct-lst {
  padding: 10px;
}

@media (max-width: 540px) {
  .gallery .prjct-lst {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 1px solid !important;
  }

  .gallery .prjct-lst .fullbg {
    min-height: 200px !important;
  }

  .gallery {
    padding: 40px 0 70px !important;
  }
}

.gallery #light-thumbnails {
  margin: 0 auto;
}


.gallery .prjct-lst .gallery-thumbnail {
  overflow: hidden;
  position: relative;
  margin: 0;
}
.gallery .prjct-lst .gallery-thumbnail img {
  display: none;
}
.gallery .prjct-lst .fullbg {
  width: 100%;
  border-radius: 20px !important;
  -webkit-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  outline: none;
  min-height: 200px;
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
}


@media (min-width: 1200px) {
  .gallery .prjct-lst .fullbg {
    min-height: 240px;
  }
}
.gallery .prjct-lst:hover .fullbg {
  transform: scale(1.05);
}
.gallery .prjct-lst:hover .dright:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/** Newsletter Module **/
.newsletter {
  background: #f5f5f5;
  padding: 30px 0;
}
@media (min-width: 992px) {
  .newsletter {
    padding: 60px 0;
  }
}
.newsletter h2 {
  color: #ffffff;
  margin: 0 0 30px 0;
  font-weight: 200;
  font-size: 2.5em;
}
@media (min-width: 992px) {
  .newsletter h2 {
    font-size: 3.214em;
  }
}
.newsletter .block-description {
  width: 100%;
  margin: 0 0 30px 0;
}
@media (min-width: 992px) {
  .newsletter .block-description {
    width: 75%;
  }
}
.newsletter .block-description p {
  color: #77797b;
  font-size: 1.071em;
}
@media (min-width: 992px) {
  .newsletter .block-description p {
    font-size: 1.714em;
  }
}
.newsletter .gform_wrapper {
  margin: 0;
}
@media (min-width: 992px) {
  .newsletter .gform_wrapper .gform_body {
    width: 66%!important;
    display: inline-block;
  }
}
.newsletter .gform_wrapper .gform_body .gform_fields .gfield {
  margin: 0 0 15px 0;
  width: 100%;
}
@media (min-width: 992px) {
  .newsletter .gform_wrapper .gform_body .gform_fields .gfield {
    width: 50%;
    display: inline-block;
    margin: 0;
  }
}
.newsletter .gform_wrapper .gform_body .gform_fields .gfield .gfield_label {
  display: none;
}
.newsletter .gform_wrapper .gform_body .gform_fields .gfield .ginput_container {
  width: 100%;
  margin: 0;
}
.newsletter .gform_wrapper .gform_body .gform_fields .gfield .ginput_container input {
  width: 100%;
  height: 50px;
  padding: 5px 15px!important;
}
.newsletter .gform_wrapper .gform_footer {
  width: 100%!important;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .newsletter .gform_wrapper .gform_footer {
    width: 33%!important;
    display: inline-block;
  }
}
.newsletter .gform_wrapper .gform_footer .gform_button {
  background: #293347;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 0;
  outline: 0;
  color: #fff;
  padding: 14px 25px;
}
.newsletter .message {
  background: url(../../images/message.png) center center no-repeat;
  width: 80px;
  height: 80px;
  background-size: 80px;
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 992px) {
  .newsletter .message {
    width: 165px;
    height: 165px;
    background-size: 165px;
  }
}
/** Contact Module **/


.contact {
  background-size: 100%;
  border-radius: 50px 50px 0 0;
  padding: 50px 0;
  position: relative;
  min-height: 600px;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(247,244,239,1) 34%);
  background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(247,244,239,1) 34%);
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(247,244,239,1) 34%);
}



.contact.hasmap {
  padding: 0;
}
.contact .iframe-container {
  z-index: 999;
}
@media (min-width: 992px) {
  .contact .text-flex.left {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.contact .text-flex .contact-content {
  padding: 60px 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact .text-flex .contact-content {
    max-width: 378px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .contact .text-flex .contact-content {
    max-width: 498px;
  }
}
@media (min-width: 1201px) {
  .contact .text-flex .contact-content {
    max-width: 587px;
  }
}


.contact p {
  margin: 0;
  font-size: 1.071em;
  font-weight: 300;
  color: #000000 !important;
}
@media (min-width: 992px) {
  .contact p {
    text-align: right;
  }
}
.contact .detail-item {
  margin: 0px 0 25px 0 !important;
  text-align: left;
  position: relative;
  min-height: 80px;
  display: flex;
  vertical-align: middle;
}

.contact .detail-item h4 {
  margin: 10px 0 0;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #fff;
  margin-left: 20px;
  display: inline-block;
  padding: 0 0 0 10px;
}


.contact .detail-item img {
}

@media (min-width: 992px) {
  .contact .detail-item h4 {
    font-size: 18px !important;
  }
}
.contact .detail-item h4 img {
  vertical-align: middle;
  display: inline-block;
  margin: 0 10px 0 0;
}
.contact .form-wrap {
  margin: 25px 0 0 0;
  width: 100%;
  display: block;
}

@media (max-width: 540px) {
  .contact .form-wrap {
    margin: 20px 0 0 0;
    padding: 0 30px 10px !important;
  }
}




.contact .form-wrap .validation_error {
  border: 0!important;
  margin: 0;
  padding: 0;
}
.contact .form-wrap .gform_fields .gfield.gfield_error {
  background: 0!important;
  border: 0!important;
}
.contact .form-wrap .gform_fields .gfield.gfield_error .validation_message {
  padding: 0!important;
  color: #f54242;
  font-weight: 500;
}
.contact .form-wrap .gform_fields .gfield .gfield_label {
  display: none;
}
.contact .form-wrap .gform_fields .gfield .ginput_container {
  width: 100%;
}
.gform_wrapper textarea.medium {
    height: 140px !important;
    border-radius: none !important;
}

.contact .form-wrap .gform_fields .gfield .ginput_container input,
.contact .form-wrap .gform_fields .gfield .ginput_container textarea {
  font-size: 15px !important;
  font-weight: 400 !important;
  width: 100%;
  background: #f0ebef;
  padding: 10px 20px 10px 15px !important;
  color: #333333 !important;
  border-bottom: 0px solid #921b83 !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-radius: 6px !important;
  font-family: 'Poppins', sans-serif !important;
}

.contact .form-wrap .gform_fields .gfield .ginput_container input::-webkit-input-placeholder,
.contact .form-wrap .gform_fields .gfield .ginput_container textarea::-webkit-input-placeholder,
.contact .form-wrap .gform_fields .gfield .ginput_container select::-webkit-input-placeholder {
  color: #921b83 !important;
  font-weight: 400 !important;
  opacity:  1 !important;
  font-family: 'Poppins', sans-serif !important;
}
.contact .form-wrap .gform_fields .gfield .ginput_container input::-moz-placeholder,
.contact .form-wrap .gform_fields .gfield .ginput_container textarea::-moz-placeholder,
.contact .form-wrap .gform_fields .gfield .ginput_container select::-moz-placeholder {
  color: #921b83 !important;
  font-weight: 400 !important;
  opacity:  1 !important;
  font-family: 'Poppins', sans-serif !important;
}
.contact .form-wrap .gform_fields .gfield .ginput_container input :-ms-input-placeholder,
.contact .form-wrap .gform_fields .gfield .ginput_container textarea :-ms-input-placeholder,
.contact .form-wrap .gform_fields .gfield .ginput_container select :-ms-input-placeholder {
  color: #921b83 !important;
  font-weight: 400 !important;
  opacity:  1 !important;
  font-family: 'Poppins', sans-serif !important;
}

.contact .form-wrap .gform_fields .gfield .ginput_container select {
  height: 47px;
  width: 100%;
  font-weight: 400 !important;
  background-color: #f0ebef;
  padding: 10px 20px 10px 15px !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 0px solid #921b83 !important;
  appearance: auto !important;
  border-radius: 6px;
  color: #921b83;
  font-family: 'Poppins', sans-serif;
}

.contact .form-wrap .gform_fields .gfield .ginput_container.ginput_container_select {
  position: relative;
}
.contact .form-wrap .gform_fields .gfield .ginput_container.ginput_container_select:before {
  position: absolute;
  right: 0px;
  top: 9px;
  font-size: 2em;
  color: #921b83;
  content: "\f107";
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  padding-right: 10px;
  background: #f0ebef;
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.contact .form-wrap .gform_footer {
  margin: 0;
}
.contact .form-wrap .gform_footer .gform_button {
  font-size: 15px;
  font-weight: 600 !important;
  width: 100%;
  padding: 14px 40px;
  border-radius: 12px;
  border: 0px !important;
  color: #fff !important;
  text-decoration: none;
  display: block !important;
  margin-top: 0px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-family: 'Poppins', sans-serif !important;
  background: #59307D;
  background: -webkit-linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
}
.contact .form-wrap .gform_footer .gform_button:hover,
.contact .form-wrap .gform_footer .gform_button:active,
.contact .form-wrap .gform_footer .gform_button:focus {
  opacity: 0.7;
}

@media (max-width: 540px) {
  .contact .form-wrap .gform_footer .gform_button {
    width: 100%; 
  }
}


/** Enquiry Module **/
.enquiry {
  padding: 30px 0;
}
@media (min-width: 992px) {
  .enquiry {
    padding: 60px 0;
  }
}
.enquiry h2 {
  color: #b81a8a;
  margin: 0 0 30px 0;
  font-weight: 200;
  font-size: 2.5em;
}
@media (min-width: 992px) {
  .enquiry h2 {
    font-size: 3.214em;
  }
}
.enquiry .block-description p {
  color: #77797b;
  font-size: 1.286em;
}
@media (min-width: 992px) {
  .enquiry .block-description p {
    font-size: 1.714em;
  }
}
.enquiry .gform_wrapper .gform_body .gform_fields .gfield {
  width: 100%;
}
@media (min-width: 992px) {
  .enquiry .gform_wrapper .gform_body .gform_fields .gfield {
    width: 25%;
    display: inline-block;
  }
}
.enquiry .gform_wrapper .gform_body .gform_fields .gfield .gfield_label {
  display: none;
}
.enquiry .gform_wrapper .gform_body .gform_fields .gfield .ginput_container input,
.enquiry .gform_wrapper .gform_body .gform_fields .gfield .ginput_container select {
  height: 45px;
  padding: 10px 15px!important;
  color: #77797b;
  border: 1px solid #e2e2e2;
  width: 100%;
}
.enquiry .gform_wrapper .gform_body .gform_fields .gfield .ginput_container select {
  -webkit-appearance: none;
  appearance: none;
}
.enquiry .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_select {
  position: relative;
}
.enquiry .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_select:before {
  position: absolute;
  right: 5px;
  top: 6px;
  font-size: 1.5em;
  color: #ffffff;
  content: "\f107";
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.enquiry .gform_wrapper .gform_body .gform_fields .gfield#field_1_5 {
  width: 100%!important;
}
.enquiry .gform_wrapper .gform_body .gform_fields .gfield#field_1_5 textarea {
  height: 150px;
  padding: 10px 15px;
  color: #77797b;
  border: 1px solid #e2e2e2;
  width: 100%;
}
.enquiry .gform_wrapper .gform_footer .gform_button {
  background: #b81a8a;
  border: 0;
  outline: 0;
  padding: 15px 60px;
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}
.text {
  padding: 30px 0;
}
@media (min-width: 992px) {
  .text {
    padding: 30px 0;
  }
}

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


.text a.column-item img:hover {
  opacity: 0.7;
}


.text a.btn {
  border: 1px solid #1ead5e;
  padding: 10px 20px;
  text-align: center;
  border-radius: 0px;;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0 10px 10px 0;
  text-decoration: none;
  display: inline-block;
}

.text a.btn:hover {
  opacity: 1 !important;
  background: #1ead5e;
  border: 1px solid #1ead5e !important;
  color: #fff !important;
  text-decoration: none;
}  

@media (max-width: 768px) {
  .text a.btn {
    display: block;
  }  
}

.text .btn {
  border: 1px solid #172b38;
  color: #172b38;
  padding: 10px 20px 10px 20px;
  text-align: center;
  border-radius: 0px;;
  font-size: 13px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0 10px 30px 0;
  text-decoration: none;
}

.text .btn:hover {
  opacity: 0.7;
  border: 1px solid #172b38 !important;
  color: #172b38 !important;
  text-decoration: none;
}  

.text.box-shadow .column-item {
  -webkit-box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.2);
}
.text.box-shadow .column-item .column-content {
  padding: 20px;
}
.text.box-shadow .column-item .column-content h3 {
  margin: 0 0 15px 0!important;
}
.text .column-item .column-slider-block {
  position: relative;
}
.text .column-item .column-slider-block .column-slider {
  overflow: hidden;
}
.text .column-item .column-slider-block .column-slider .swiper-wrapper .swiper-slide {
  min-height: 300px;
  width:  100%;
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
}
@media (min-width: 992px) {
  .text .column-item .column-slider-block .column-slider .swiper-wrapper .swiper-slide {
    min-height: 450px;
  }
}
.text .column-item .column-slider-block .swiper-button-prev,
.text .column-item .column-slider-block .swiper-button-next {
  color: #fff;
}
.text h2 {
  margin: 0 0 30px 0;
}



.text ul {
  list-style-type: none;
  padding: 0 0 15px 0; 
  margin: 0;
}
.text ul li {
  margin: 0 0 8px 0;
  position: relative;
  padding: 0 0 0 15px;
}
.text ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f105";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 17px;
  color: #921b83;
  margin:  2px 0 0 0;
  font-style: normal;
  font-weight: 4\500;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.text .block-description {
  margin: 0 0 30px 0;
}


.text .block-description h3 {
  font-size: 14px;
  font-weight: 500;
}


.text .block-description h4 {
  font-size: 17px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .text .block-description h3 {
    font-size: 13px;
    font-weight: 500;
  }

  .text .block-description h4 {
    font-size: 15px;
    font-weight: 500;
  }  
}


.back-to-top {
  z-index: 999;
  position: fixed;
  display: none;
  width: 45px;
  height: 45px;
  background: #dcdfdf;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  text-align: center;
  top: auto;
  left: auto;
  bottom: 10px;
  right: 15px;
  font-size: 2.4em;
  color: #fff;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .back-to-top {
    width: 60px;
    height: 60px;
    font-size: 3em;
  }
}
.back-to-top:hover,
.back-to-top:active,
.back-to-top:focus {
  color: #fff;
  text-decoration: none;
}


/******************************************************************
Site Name: BREW Styles
Author: Dan Brown

Stylesheet: Components

A few random components built for BREW such as breadcrumbs and
next/previous posts

******************************************************************/
/***********************************
Next/Previous buttons under posts
***********************************/
#single-post-nav .pager span {
  width: 100%;
  text-align: center;
  padding: 10px 10px;
  border-radius: 5px;
}
@media (min-width: 992px) {
  #single-post-nav .pager span {
    width: auto;
    padding: 5px 10px;
  }
}
.pager .previous-page {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .pager .previous-page {
    float: left;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .pager .next-page {
    float: right;
  }
}
.pager a,
.previous-page a,
.next-page a {
  color: #999;
}
.pager a:hover,
.previous-page a:hover,
.next-page a:hover {
  color: #444;
  text-decoration: none;
  cursor: pointer;
}
/*********************
AUTHOR BOX
*********************/
#author-info {
  padding: 20px;
}
#author-info h4 {
  margin-top: 0;
}
.author-img {
  float: left;
  margin-right: 20px;
}
@media (min-width: 480px) {
  .author-desc {
    overflow: hidden;
    _overflow: visible;
    zoom: 1;
  }
}
.social-links {
  float: left;
  padding: 0;
  margin: 0;
}
.social-links li {
  float: left;
  text-decoration: none;
  list-style: none;
}
.social-links a {
  color: #999999;
  padding-right: 15px;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  font-size: 1.4em;
}
.social-links a:hover {
  color: #333333;
}
/*********************
BREADCRUMBS
*********************/
.breadcrumb {
  padding: 4px 17px;
  background: #f9f9f9;
}
/*********************
PAGINATION
*********************/
.pagination li a:hover,
.pagination li a:focus {
  background-color: #ffffff;
  color: #fff;
}
.pagination li .active,
.pagination li span:hover {
  background-color: #1a1a1a;
  color: #fff;
}
/* end pagination */
/******************************************************************
Site Name: BREW Styles
Author: Dan Brown

Stylesheet: Tables

This is just for the sample BREW site.  Feel free to delete

******************************************************************/
.featured {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .featured {
    margin-bottom: 0;
  }
}
.homebanner {
  margin-bottom: 60px;
  padding-top: 30px;
  text-align: center;
  height: 350px;
  background: url('../images/hero.png') #2A5781;
  background-size: cover;
  background-position: center center;
  color: #fff;
}
@media (min-width: 480px) {
  .homebanner {
    padding-top: 70px;
  }
}
.homebanner p {
  font-size: 14px;
}
.homebanner h1 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 10px;
}
.homebanner .btn-default {
  background: none;
  border: 2px solid #ffffff;
  color: #ffffff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.homebanner .btn-primary {
  background: none;
  border: 2px solid #fff;
  margin-left: 20px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.homebanner .btn-default:hover {
  background: white;
  color: #ffffff;
}
.homebanner .btn-primary:hover {
  background: white;
  color: #ffffff;
}
.about {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .about {
    margin-bottom: 0px;
  }
}
.about a {
  text-decoration: none;
}
.about i {
  color: #929292;
}
.about p {
  color: #929292;
}
.about h3 {
  color: #626c72;
}
.about:hover i {
  color: #626c72;
  transition: all 0.35s ease;
}

.search-no-results h1 {
  font-size: 2.143em;
  font-weight: bold;
  color: #ec008c;
  margin: 0 0 40px 0;
}
.pagination {
  margin: 0 0 30px 0;
  text-align: left!important;
}
.pagination ul {
  list-style-type: none;
  border: 0!important;
  display: inline-block;
  white-space: nowrap;
  padding: 0;
  clear: both;
}
.pagination ul li {
  width: 42px;
  height: 42px;
  text-align: center;
  margin: 0 5px 0 0;
  border: 1px solid #d3ced2!important;
  padding: 0;
  float: left;
  display: inline;
  overflow: hidden;
}
.pagination ul li span,
.pagination ul li a {
  text-decoration: none;
  line-height: 1;
  padding: 1em;
  min-width: 1em;
  border: 0!important;
  display: block;
  font-size: 1em!important;
  color: #404040!important;
  font-weight: 600;
}
.pagination ul li span.current {
  background: #eee;
}
.pagination ul li a {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.pagination ul li a:hover,
.pagination ul li a:focus,
.pagination ul li a:active {
  background: #ebe9eb;
}


.text .col-lg-3 .column-item .column-content {
  padding: 10px 0px 30px 0px;
}

.text .service1 img,
.text .service2 img,
.text .service3 img,
.text .service4 img,
.text .service5 img,
.text .service6 img {
  margin: 0 auto;
  display: block;
}
@media (min-width: 992px) {
  .text .service1 img,
  .text .service2 img,
  .text .service3 img,
  .text .service4 img,
  .text .service5 img,
  .text .service6 img {
    margin: 0;
  }
}
.text .service1 .cta-btn {
  background: transparent;
}
.text .service1 h3 {
  color: #b81a8a;
}
.text .service2 .cta-btn {
  background: #f17d2f;
}
.text .service2 h3 {
  color: #f17d2f;
}
.text .service3 .cta-btn {
  background: #149ac0;
}
.text .service3 h3 {
  color: #149ac0;
}
.text .service4 .cta-btn {
  background: #20a364;
}
.text .service4 h3 {
  color: #20a364;
}
.text .service5 .cta-btn {
  background: #e53c78;
}
.text .service5 h3 {
  color: #e53c78;
}
.text .service6 .cta-btn {
  background: #dca92c;
}
.text .column-item {
  margin: 0 0 12px 0;
}

.text .column-item p a {
  color:  #000000;
  text-decoration: underline;
}

@media (min-width: 992px) {
  .text .column-item {
    margin: 0 0 12px 0;
  }
}

.text .column-item img {
  width: 100%;
  height:  auto;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}



.text-slider .col-md-12,
.text-slider .column-list {
  width:  100% !important;
  max-width: 100% !important;
}

.text-slider {
  background-image:  url('');
  background-size: 140px;
  background-position: 7% 70%;
  background-repeat: no-repeat;
}



.text .column-item .cta-btn:hover,
.text .column-item .cta-btn:active,
.text .column-item .cta-btn:focus {
  text-decoration: none;
  opacity: 1;
}
.signage-options.box-shadow .column-content {
  padding: 20px!important;
}
.signage-options .column-item .column-content {
  padding: 20px 0;
}
.signage-options .column-item .column-content h4 {
  margin: 0 0 5px 0;
  font-size: 1.071em;
  font-weight: 600;
}
.signage-options .column-item .column-content p {
  font-size: 1.071em;
  font-weight: 400;
  margin: 0 0 10px 0;
}
.about-columns h4 {
  color: #a186aa!important;
  font-size: 1.357em!important;
  font-weight: 300!important;
}
.about-bg .column-bg {
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
  padding: 60px 30px;
}
.about-bg .column-bg h2 {
  color: #fff;
}
.about-bg .column-bg h4 {
  color: #fff!important;
  font-size: 1.357em!important;
  font-weight: 300!important;
}
.about-bg .column-bg p {
  color: #fff;
  font-size: 1.071em;
  font-weight: 400;
}
.about-blocks .column-item img,
.services-blocks .column-item img {
  width: 100%;
}
.about-blocks .column-item .column-content,
.services-blocks .column-item .column-content {
  background: #f0f4f7;
  padding: 30px;
}
.about-blocks .column-item .column-content h3,
.services-blocks .column-item .column-content h3 {
  color: #b81a8a!important;
  font-size: 1.714em;
  font-weight: 400;
  margin: 0 0 20px 0;
}
.about-blocks .column-item .column-content p,
.services-blocks .column-item .column-content p,
.about-blocks .column-item .column-content ul,
.services-blocks .column-item .column-content ul {
  color: #77797b;
  font-size: 1.071em;
  font-weight: 400;
}
.services-blocks .column-item .column-content {
  min-height: 275px;
}
.subservice .column-item {
  margin: 0;
}
.subservice .column-item .column-content h3 {
  color: #b81a8a!important;
  font-size: 1.714em;
  font-weight: 400;
  margin: 0 0 20px 0;
}
.subservice .column-item .column-content h4 {
  color: #a186aa!important;
  font-size: 1.357em!important;
  font-weight: 300!important;
}
.subservice .column-item .column-content p,
.subservice .column-item .column-content ul {
  color: #77797b;
  font-size: 1.071em;
  font-weight: 400;
}
.subservice-list {
  padding: 60px 0 0 0;
}
.subservice-list .text-content-wrap {
  background: #f0f4f7;
  display: flex!important;
  align-items: center!important;
}
.subservice-list .text-content-wrap .text-flex .text-content h2 {
  color: #b81a8a!important;
  font-size: 1.714em;
  font-weight: 400;
  margin: 0 0 20px 0;
}
.subservice-list .text-content-wrap .text-flex .text-content p,
.subservice-list .text-content-wrap .text-flex .text-content ul {
  color: #77797b;
  font-size: 1.071em;
  font-weight: 400;
}
.subservice-list .text-content-wrap .text-flex .text-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.subservice-list .text-content-wrap .text-flex .text-content ul li {
  margin: 0 0 8px 0;
  position: relative;
  padding: 0 0 0 20px;
}
.subservice-list .text-content-wrap .text-flex .text-content ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f105";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 1.6em;
  color: #bf3095;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.subservice-list .text-content-wrap .text-flex .text-content .cta-btn {
  margin: 30px 0 0 0;
}
.subservice-list .text-content-wrap.left {
  -webkit-justify-content: flex-end;
}
.subservice-list .text-content-wrap.left .text-flex .text-content {
  padding: 30px 60px 30px 30px!important;
}
.subservice-list .text-content-wrap.right {
  -webkit-justify-content: flex-start;
}
.subservice-list .text-content-wrap.right .text-flex .text-content {
  padding: 30px 30px 30px 60px!important;
}
.page-contact .contact {
  margin: 30px 0;
}
.page-contact .contact.hasmap:before {
  background: 0!important;
}
.page-feedback .content-block h2 {
  color: #b81a8a;
  margin: 0 0 30px 0;
  font-weight: 200;
  font-size: 2.5em;
}
@media (min-width: 992px) {
  .page-feedback .content-block h2 {
    font-size: 3.214em;
  }
}
.page-feedback .content-block .gform_wrapper {
  background: url(../../images/feedbackbg.jpg) center center repeat #f8f8f8;
  padding: 30px;
  position: relative;
}
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield {
  width: 100%;
}
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield#field_3_11 label {
  background: #b81a8a;
  color: #fff;
  padding: 10px 15px;
  position: absolute;
  top: 0;
  left: 0;
}
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield .gfield_label {
  font-size: 1em;
  color: #b81a8a;
  font-weight: 500;
  margin: 0;
}
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield.gfield_html {
  margin: 30px 0 0 0;
}
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield.gfield_html label {
  font-size: 1em;
  color: #b81a8a;
  font-weight: 500;
  margin: 0 0 15px 0;
}
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield.gfield_html p {
  color: #656565;
  font-size: 0.857em;
}
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio {
  margin: 0;
}
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  width: 100%;
  height: 45px;
  border: 1px solid #cecece;
  background: #fff;
  padding: 10px 15px!important;
}
@media (min-width: 992px) {
  .page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container .gfield_radio li {
    display: inline-block;
    margin: 0 15px 0 0;
  }
}
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container .gfield_radio li input,
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container .gfield_radio li label {
  display: inline-block;
  vertical-align: middle;
}
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container .gfield_radio li label {
  margin: 5px 0 0 5px;
  font-size: 1.143em;
}
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container .gfield_radio li input {
  height: auto!important;
}
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  width: 100%;
  height: 150px;
  border: 1px solid #cecece;
}
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield#field_3_1,
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield#field_3_6,
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield#field_3_7,
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield#field_3_8,
.page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield#field_3_9 {
  width: 100%;
}
@media (min-width: 992px) {
  .page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield#field_3_1,
  .page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield#field_3_6,
  .page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield#field_3_7,
  .page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield#field_3_8,
  .page-feedback .content-block .gform_wrapper form .gform_body .gform_fields .gfield#field_3_9 {
    display: inline-block;
    width: 25%;
  }
}
.page-feedback .content-block .gform_wrapper form .gform_footer .gform_button {
  background: #b81a8a;
  padding: 10px 40px;
  color: #fff;
  border: 0;
  outline: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.page-feedback .content-block .gform_wrapper form .gform_footer .gform_button:hover,
.page-feedback .content-block .gform_wrapper form .gform_footer .gform_button:active,
.page-feedback .content-block .gform_wrapper form .gform_footer .gform_button:focus {
  text-decoration: none;
  opacity: 0.6;
  color: #fff;
}
@media (min-width: 992px) {
  .page-feedback .content-block .gform_wrapper form .gform_footer .gform_button {
    width: auto;
  }
}
.page-referral .content-block h2 {
  color: #767779;
  margin: 0 0 30px 0;
  font-weight: 200;
  font-size: 2.5em;
}
@media (min-width: 992px) {
  .page-referral .content-block h2 {
    font-size: 3.214em;
  }
}
.page-referral .content-block h2 strong {
  color: #b81a8a;
}
.page-referral .content-block .gform_wrapper .form_saved_message_emailform a {
  width: 100%;
  text-align: center;
  display: inline-block;
  margin: 30px 10px 0 0;
  padding: 10px 20px;
  border: 1px solid #b81a8a;
  color: #b81a8a;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.page-referral .content-block .gform_wrapper .form_saved_message_emailform a:active,
.page-referral .content-block .gform_wrapper .form_saved_message_emailform a:focus,
.page-referral .content-block .gform_wrapper .form_saved_message_emailform a:hover {
  background: #b81a8a;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .form_saved_message_emailform a {
    width: auto;
  }
}
.page-referral .content-block .gform_wrapper .form_saved_message {
  background: url(../../images/feedbackbg.jpg) center center repeat #f8f8f8;
  text-align: left;
  padding: 3em!important;
}
.page-referral .content-block .gform_wrapper .form_saved_message p {
  color: #686869;
}
.page-referral .content-block .gform_wrapper .form_saved_message p.resume_form_link_wrapper {
  padding: 0!important;
  margin: 0!important;
  background: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.page-referral .content-block .gform_wrapper .form_saved_message p.resume_form_link_wrapper a {
  color: #ba0d8b!important;
}
.page-referral .content-block .gform_wrapper .form_saved_message .form_saved_message_emailform input[name="gform_resume_email"] {
  width: 100%;
  height: 45px;
  padding: 10px 15px!important;
  border: 1px solid #b2b2b2;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.page-referral .content-block .gform_wrapper .form_saved_message .form_saved_message_emailform input[name="gform_send_resume_link_button"] {
  border: 0;
  height: 45px;
  width: 100%;
  color: #fff!important;
  padding: 12px 0;
  background: #b81a8a;
  text-align: center;
  display: inline-block;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-transform: capitalize;
}
.page-referral .content-block .gform_wrapper .form_saved_message .form_saved_message_emailform input[name="gform_send_resume_link_button"]:hover,
.page-referral .content-block .gform_wrapper .form_saved_message .form_saved_message_emailform input[name="gform_send_resume_link_button"]:active,
.page-referral .content-block .gform_wrapper .form_saved_message .form_saved_message_emailform input[name="gform_send_resume_link_button"]:focus {
  opacity: 0.6;
}
.page-referral .content-block .gform_wrapper .gform_page#gform_page_4_1 .gform_save_link {
  display: none;
}
.page-referral .content-block .gform_wrapper .gform_page.gform_review_page table tr {
  padding: 5px 0;
  display: block;
}
.page-referral .content-block .gform_wrapper .gform_page.gform_review_page table tr td ul.bulleted {
  list-style-type: none!important;
  padding: 0!important;
  margin: 0!important;
}
.page-referral .content-block .gform_wrapper .gform_page.gform_review_page table tr td ul.bulleted li {
  list-style-type: none!important;
  margin: 0 0 8px 0;
  position: relative;
  padding: 0 0 0 20px;
}
.page-referral .content-block .gform_wrapper .gform_page.gform_review_page table tr td ul.bulleted li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f105";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 1.6em;
  color: #bf3095;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page-referral .content-block .gform_wrapper .gform_page.gform_review_page table tr td label {
  color: #b81a8a;
  margin: 0;
  font-weight: 500;
}
.page-referral .content-block .gform_wrapper .gform_page.gform_review_page table tr td img {
  display: none;
}
.page-referral .content-block .gform_wrapper .gform_page.gform_review_page table tr td h4 {
  font-size: 1em!important;
  color: #ffffff!important;
}
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer:after {
  display: block;
  clear: both;
  content: "";
}
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer .gform_next_button,
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer #gform_submit_button_4 {
  padding: 10px 20px;
  border: 0;
  background: #b81a8a;
  color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  outline: 0;
}
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer .gform_next_button:active,
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer #gform_submit_button_4:active,
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer .gform_next_button:focus,
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer #gform_submit_button_4:focus,
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer .gform_next_button:hover,
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer #gform_submit_button_4:hover {
  opacity: 0.6;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_page .gform_page_footer .gform_next_button,
  .page-referral .content-block .gform_wrapper .gform_page .gform_page_footer #gform_submit_button_4 {
    float: right;
  }
}
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer .gform_previous_button {
  padding: 10px 20px;
  border: 0;
  background: #b81a8a;
  color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  outline: 0;
}
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer .gform_previous_button:active,
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer .gform_previous_button:focus,
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer .gform_previous_button:hover {
  opacity: 0.6;
  color: #fff;
  text-decoration: none;
}
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer .gform_save_link {
  padding: 10px 20px;
  border: 1px solid #b81a8a;
  color: #b81a8a;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer .gform_save_link:active,
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer .gform_save_link:focus,
.page-referral .content-block .gform_wrapper .gform_page .gform_page_footer .gform_save_link:hover {
  background: #b81a8a;
  color: #fff;
  text-decoration: none;
}
.page-referral .content-block .gform_wrapper .gf_page_steps #gf_step_4_1 .gf_step_number {
  background: url(../../images/step1.svg) center center no-repeat #f0f4f7;
}
.page-referral .content-block .gform_wrapper .gf_page_steps #gf_step_4_1.gf_step_active .gf_step_number {
  border: 2px solid #e26d1e;
  background: url(../../images/step1-active.svg) center center no-repeat #f17d2f;
  -webkit-background-size: 25px;
  -moz-background-size: 25px;
  background-size: 25px;
}
.page-referral .content-block .gform_wrapper .gf_page_steps #gf_step_4_2 .gf_step_number {
  background: url(../../images/step2.svg) center center no-repeat #f0f4f7;
}
.page-referral .content-block .gform_wrapper .gf_page_steps #gf_step_4_2.gf_step_active .gf_step_number {
  border: 2px solid #e26d1e;
  background: url(../../images/step2-active.svg) center center no-repeat #f17d2f;
  -webkit-background-size: 25px;
  -moz-background-size: 25px;
  background-size: 25px;
}
.page-referral .content-block .gform_wrapper .gf_page_steps #gf_step_4_3 .gf_step_number {
  background: url(../../images/step3.svg) center center no-repeat #f0f4f7;
}
.page-referral .content-block .gform_wrapper .gf_page_steps #gf_step_4_3.gf_step_active .gf_step_number {
  border: 2px solid #e26d1e;
  background: url(../../images/step4-active.svg) center center no-repeat #f17d2f;
  -webkit-background-size: 25px;
  -moz-background-size: 25px;
  background-size: 25px;
}
.page-referral .content-block .gform_wrapper .gf_page_steps #gf_step_4_4 .gf_step_number {
  background: url(../../images/step4.svg) center center no-repeat #f0f4f7;
}
.page-referral .content-block .gform_wrapper .gf_page_steps #gf_step_4_4.gf_step_active .gf_step_number {
  border: 2px solid #e26d1e;
  background: url(../../images/step4-active.svg) center center no-repeat #f17d2f;
  -webkit-background-size: 25px;
  -moz-background-size: 25px;
  background-size: 25px;
}
.page-referral .content-block .gform_wrapper .gf_page_steps #gf_step_4_5 .gf_step_number {
  background: url(../../images/step5.svg) center center no-repeat #f0f4f7;
}
.page-referral .content-block .gform_wrapper .gf_page_steps #gf_step_4_5.gf_step_active .gf_step_number {
  border: 2px solid #e26d1e;
  background: url(../../images/step5-active.svg) center center no-repeat #f17d2f;
  -webkit-background-size: 25px;
  -moz-background-size: 25px;
  background-size: 25px;
}
.page-referral .content-block .gform_wrapper .gf_page_steps #gf_step_4_6 .gf_step_number {
  background: url(../../images/step6.svg) center center no-repeat #f0f4f7;
}
.page-referral .content-block .gform_wrapper .gf_page_steps #gf_step_4_6.gf_step_active .gf_step_number {
  border: 2px solid #e26d1e;
  background: url(../../images/step6-active.svg) center center no-repeat #f17d2f;
  -webkit-background-size: 25px;
  -moz-background-size: 25px;
  background-size: 25px;
}
.page-referral .content-block .gform_wrapper .gf_page_steps .gf_step {
  opacity: 1!important;
  height: auto;
  display: inline-block;
  width: 16.66%;
  margin: 0!important;
  text-align: center;
}
.page-referral .content-block .gform_wrapper .gf_page_steps .gf_step.gf_step_active .gf_step_label {
  color: #f17d2f;
}
.page-referral .content-block .gform_wrapper .gf_page_steps .gf_step.gf_step_last .gf_step_number:before {
  background: 0!important;
}
.page-referral .content-block .gform_wrapper .gf_page_steps .gf_step .gf_step_number {
  text-indent: 9999999px;
  border: 2px solid #e4e9ed;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  display: block;
  margin: 0 auto;
  -webkit-background-size: 12px!important;
  -moz-background-size: 12px!important;
  background-size: 12px!important;
  width: 25px;
  height: 25px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-referral .content-block .gform_wrapper .gf_page_steps .gf_step .gf_step_number {
    width: 60px;
    height: 60px;
    -webkit-background-size: 30px!important;
    -moz-background-size: 30px!important;
    background-size: 30px!important;
  }
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gf_page_steps .gf_step .gf_step_number {
    width: 65px;
    height: 65px;
    -webkit-background-size: 32px!important;
    -moz-background-size: 32px!important;
    background-size: 32px!important;
  }
}
.page-referral .content-block .gform_wrapper .gf_page_steps .gf_step .gf_step_number:before {
  height: 2px;
  content: "";
  width: 275%;
  display: block;
  position: absolute;
  top: 50%;
  right: -60px;
  background: #e4e9ed;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-referral .content-block .gform_wrapper .gf_page_steps .gf_step .gf_step_number:before {
    width: 150%;
    right: -86px;
  }
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gf_page_steps .gf_step .gf_step_number:before {
    background: #e4e9ed;
    width: 250%;
    right: -155px;
  }
}
.page-referral .content-block .gform_wrapper .gf_page_steps .gf_step .gf_step_label {
  display: none;
  font-size: 1em;
  color: #ced4d9;
}
@media (min-width: 1200px) {
  .page-referral .content-block .gform_wrapper .gf_page_steps .gf_step .gf_step_label {
    font-size: 1.143em;
    display: block;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_page {
  background: url(../../images/feedbackbg.jpg) center center no-repeat;
  padding: 30px;
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_page .gform_page_fields .gfield_label {
  color: #b81a8a;
  margin: 0;
  font-weight: 500;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields#gform_fields_4 {
  list-style-type: none;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield.gfield_error {
  background: 0!important;
  border: 0!important;
  max-width: 100%!important;
  padding: 0 16px 0 0!important;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield.gfield_error .ginput_container {
  margin: 8px 0 0 0!important;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield.gfield_error .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield.gfield_error .ginput_container select {
  border: 1px solid #ff0000!important;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield.gfield_error .validation_message {
  padding: 0;
  color: #ff0000!important;
  font-weight: 500;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield h3 {
  font-size: 1.5em;
  color: #fff;
  padding: 10px 20px;
  background-color: #b81a8a;
  display: inline-block;
  border-radius: 5px;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_checkbox {
  margin: 0;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox li input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox li label {
  display: inline-block;
  vertical-align: middle;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox li input {
  margin: 0 5px 0 0;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox li label {
  font-size: 1em;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_62 label {
  color: #b81a8a;
  margin: 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_24,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_25 {
    display: inline-block;
    vertical-align: top;
    width: 33%;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_70 .ginput_container_radio,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_77 .ginput_container_radio,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_78 .ginput_container_radio {
  margin: 0;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_70 .ginput_container_radio .gfield_radio,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_77 .ginput_container_radio .gfield_radio,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_78 .ginput_container_radio .gfield_radio {
  margin: 3px 0;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_70 .ginput_container_radio .gfield_radio li,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_77 .ginput_container_radio .gfield_radio li,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_78 .ginput_container_radio .gfield_radio li {
  margin: 0 0 10px 0;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_70 .ginput_container_radio .gfield_radio li,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_77 .ginput_container_radio .gfield_radio li,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_78 .ginput_container_radio .gfield_radio li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 0 0;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_70 .ginput_container_radio .gfield_radio li input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_77 .ginput_container_radio .gfield_radio li input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_78 .ginput_container_radio .gfield_radio li input {
  height: auto;
  margin: 3px 5px 0 0;
  display: inline-block;
  vertical-align: middle;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_70 .ginput_container_radio .gfield_radio li label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_77 .ginput_container_radio .gfield_radio li label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_78 .ginput_container_radio .gfield_radio li label {
  font-size: 1em;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_3 .validation_message {
  text-align: center;
  margin: 5px 0 0 0;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_3 .gfield_label {
  display: block;
  text-align: center;
  color: #b81a8a;
  font-weight: 400;
  font-size: 1.714em;
  margin: 30px 0 20px 0;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_3 .gfield_radio {
  margin: 0;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_3 .gfield_radio {
    display: flex;
    justify-content: center;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_3 .gfield_radio li {
  width: 100%;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_3 .gfield_radio li {
    width: 35%;
    display: inline-block;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_3 .gfield_radio li input {
  display: none;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_3 .gfield_radio li input:checked + label {
  background: #b81a8a;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_3 .gfield_radio li label {
  max-width: 100%;
  width: 100%;
  padding: 40px 20px;
  background: #585858;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_3 .gfield_radio li label {
    max-width: 85%;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_3 .gfield_radio li label img {
  display: block;
  margin: 0 auto;
  max-height: 100px;
  width: auto;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_3 .gfield_radio li label h4 {
  text-align: center;
  font-size: 1.5em;
  color: #fff;
  margin: 20px 0 0 0;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_5 .gfield_label {
  color: #b81a8a;
  font-weight: 400;
  font-size: 1.4em;
  margin: 0 0 15px 0;
  display: block;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_5 .gfield_label {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_5 .ginput_container_radio {
  display: inline-block;
  vertical-align: middle;
  margin: 0!important;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_5 .ginput_container_radio {
    margin: 0 0 0 15px!important;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_5 .gfield_radio {
  margin: 0;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_5 .gfield_radio {
    display: inline-block;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_5 .gfield_radio li {
  margin: 0 0 10px 0;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_5 .gfield_radio li {
    margin: 0 10px 0 0;
    display: inline-block;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_5 .gfield_radio li input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_5 .gfield_radio li label {
  display: inline-block;
  vertical-align: middle;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_5 .gfield_radio li label {
  width: auto!important;
  margin: 5px 0 0 5px;
  font-size: 1em;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_7,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_8,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_18,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_10,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_12,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_14,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_15,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_16,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_17,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_19,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_20,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_27,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_51,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_53,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_54,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_29,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_30,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_31,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_32,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_33,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_34,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_37,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_38,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_39,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_40,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_63,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_39,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_69,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_75 {
  width: 100%;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_7,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_8,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_18,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_10,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_12,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_14,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_15,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_16,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_17,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_19,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_20,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_27,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_51,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_53,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_54,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_29,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_30,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_31,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_32,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_33,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_34,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_37,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_38,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_39,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_40,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_63,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_39,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_69,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_75 {
    width: 25%;
    display: inline-block;
    vertical-align: top;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_7 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_8 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_18 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_10 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_12 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_14 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_15 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_16 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_17 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_19 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_20 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_27 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_51 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_53 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_54 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_29 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_30 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_31 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_32 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_33 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_34 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_37 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_38 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_39 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_40 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_63 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_39 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_69 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_75 .gfield_label {
  color: #b81a8a;
  margin: 0;
  font-weight: 500;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_7 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_8 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_18 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_10 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_12 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_14 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_15 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_16 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_17 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_19 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_20 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_27 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_51 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_53 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_54 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_29 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_30 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_31 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_32 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_33 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_34 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_37 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_38 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_39 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_40 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_63 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_39 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_69 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_75 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_7 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_8 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_18 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_10 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_12 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_14 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_15 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_16 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_17 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_19 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_20 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_27 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_51 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_53 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_54 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_29 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_30 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_31 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_32 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_33 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_34 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_37 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_38 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_39 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_40 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_63 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_39 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_69 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_75 .ginput_container select {
  width: 100%;
  height: 45px;
  padding: 10px 15px;
  border: 1px solid #b2b2b2;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_7 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_8 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_18 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_10 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_12 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_14 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_15 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_16 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_17 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_19 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_20 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_27 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_51 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_53 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_54 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_29 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_30 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_31 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_32 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_33 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_34 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_37 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_38 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_39 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_40 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_63 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_39 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_69 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_75 .ginput_container select {
  -webkit-appearance: none;
  appearance: none;
  background: url(../../images/angle-down.png) center right 15px no-repeat #fff;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_79,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_64,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_41 {
  width: 100%;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_79,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_64,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_41 {
    width: 50%;
    display: inline-block;
    vertical-align: top;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_79 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_64 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_41 .gfield_label {
  color: #b81a8a;
  margin: 0;
  font-weight: 500;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_79 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_64 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_41 .ginput_container input {
  width: 100%;
  height: 45px;
  padding: 10px 15px;
  border: 1px solid #b2b2b2;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_70 {
  width: 100%;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_70 {
    width: 25%;
    display: inline-block;
    vertical-align: top;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_70 .gfield_label {
  color: #b81a8a;
  margin: 0;
  font-weight: 500;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_72,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_73 {
  vertical-align: top;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_37,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_72,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_73 {
  width: 100%;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_37,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_72,
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_73 {
    width: 50%;
    display: inline-block;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_37 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_72 .gfield_label,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_73 .gfield_label {
  color: #b81a8a;
  margin: 0;
  font-weight: 500;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_37 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_72 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_73 .ginput_container input,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_37 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_72 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_73 .ginput_container select {
  width: 100%;
  height: 45px;
  padding: 10px 15px;
  border: 1px solid #b2b2b2;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_37 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_72 .ginput_container select,
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_73 .ginput_container select {
  -webkit-appearance: none;
  appearance: none;
  background: url(../../images/angle-down.png) center right 15px no-repeat #fff;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_11 {
  width: 100%;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_11 {
    width: 75%;
    display: inline-block;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_11 .gfield_label {
  color: #b81a8a;
  margin: 0;
  font-weight: 500;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_11 .ginput_container input {
  width: 100%;
  height: 45px;
  padding: 10px 15px;
  border: 1px solid #b2b2b2;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_21 {
  width: 100%;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_21 {
    width: 75%;
    display: inline-block;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_21 .gfield_label {
  color: #b81a8a;
  margin: 0;
  font-weight: 500;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_21 .gfield_checkbox li {
  margin: 0 0 10px 0;
}
@media (min-width: 992px) {
  .page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_21 .gfield_checkbox li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 0 0;
  }
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_21 .gfield_checkbox li input {
  margin: 0 5px 0 0;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_21 .gfield_checkbox li label {
  max-width: 100%;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_36 {
  width: 100%;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_36 .gfield_label {
  color: #b81a8a;
  margin: 0;
  font-weight: 500;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_36 .gfield_checkbox li {
  margin: 0 0 10px 0;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_36 .gfield_checkbox li input {
  margin: 0 5px 0 0;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_36 .gfield_checkbox li label {
  max-width: 100%;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_22 .gfield_label {
  color: #b81a8a;
  margin: 0;
  font-weight: 500;
}
.page-referral .content-block .gform_wrapper .gform_body .gform_fields .gfield#field_4_22 textarea {
  height: 100px;
  padding: 10px 15px;
  border: 1px solid #b2b2b2;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#post-not-found h1 {
  font-weight: 400;
  margin-bottom: 30px;
}
#post-not-found .cta-btn {
  margin: 30px 0 0 0;
}
.page-projects .header,
.page-blog .header {
  background: transparent;
}

@media (min-width: 992px) {
  .type-2.woocommerce-page .page-content,
  .type-2.woocommerce-page .archive-products,
  .type-2.woocommerce-page .content-area {
    margin: 200px 0 0 0;
  }
}


.page-contact .enquiry {
  padding: 0 0 30px 0;
}
@media (min-width: 992px) {
  .page-contact .enquiry {
    padding: 0 0 60px 0;
  }
}
.text .column-item {
  display: inline-block;
}
.text .column-item:hover,
.text .column-item:active,
.text .column-item:focus {
  text-decoration: none;
}


.text .column-content {
  background-color: transparent;
}

.text .col-md-12 .column-content img,
.text .col-lg-6 .column-content img {
  width:  auto;
}

@media (min-width: 992px) {
  .text .col-md-6 .column-content {
    padding: 0 10px 0 0px;
  }
}

/* .text .column-content > * {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif !important;
} */ 

.text .column-content > * a {
  color: #000000;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.text .column-content > * a:hover,
.text .column-content > * a:focus {
  opacity:  0.7;
}





@media (max-width: 992px) {
  .text .column-list {
    margin: 0 auto 0 0;
  }
}
.testimonials h2 {
  padding-bottom: 10px;
}
.testimonials.list-type {
  background-color: #fff;
  padding: 0;
}
.testimonials .testimonial-list-wrapper {
  padding: 80px 0;
}
@media (max-width: 992px) {
  .testimonials .testimonial-list-wrapper {
    padding: 30px 0;
  }
}
.testimonials .testimonial-list-wrapper:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.testimonials .testimonial-list-wrapper h3 {
  position: relative;
  color: #293347;
  padding: 30px 0;
  z-index: 9;
}
.testimonials .testimonial-list-wrapper .quote-ic {
  position: relative;
}
.testimonials .testimonial-list-wrapper .quote-ic:before {
  content: "";
  position: absolute;
  background: url('../../images/testimonials-quote.png') no-repeat left 10px;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
.testimonials .testimonial-list-wrapper .client {
  font-weight: 600;
}




/* ======== Contact Module ======== */

.contact {
  background: #59307D;
  background: -webkit-linear-gradient(0deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: -moz-linear-gradient(0deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: linear-gradient(0deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
}


.contact h2:before {
  display: none !important;
}

.contact h2 {
  display: inline-block;
  color: #fff !important;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 40px;
  margin-bottom: 35px;
}


.contact h2 em {
  font-style: unset;
  color: #e9aaff !important;
}


@media (min-width: 992px) {
  .contact h2 {
    margin-top: 70px;
    padding-right: 40px;
  }
}



@media (max-width: 992px) {

  .contact {
    padding: 90px 0 0px;
  }


}

#footer ul#menu-footer {
  display: flex !important;
  text-align: right;
}

@media (max-width: 768px) {
  #footer ul#menu-footer {
    display: block !important;
    text-align: center;
  }
}


#footer a.btn-login-portal,
#footer a.btn-sled-check {
  background: #000;
  border-radius: 5px;
  padding: 10px 15px;
  color: #fff;
  font-weight: 700;
  display: inline-block !important;
  margin: 0 10px 10px 0;
}

#footer .btn-login-portal img.btn-icn {
  max-height: 16px !important;
  width: auto;
  margin: -1px 5px 0 0;
  display: inline-block;
}

#footer .btn-sled-check img.btn-icn {
  max-height: 16px !important;
  width: auto;
  margin: -1px 5px 0 0;
  display: inline-block;
}

#footer .btn-column {
  text-align: right;
}



@media (max-width: 540px) {
  .contact .contact-title {
    padding-bottom: 10px;
  }
}

.contact .contact-title a.address-link {
  position: relative;
  text-decoration: unset !important;
  color: #000000 !important;
  display: block;
}


.contact .contact-title a.address-link strong {
  font-weight: 500 !important;
  color: #a19a8a !important;
}

.contact .contact-title a.address-link:before {
    content: "";
    position: absolute;
    background: url('../../images/icn_location.png') no-repeat left 10px;
    background-size: auto;
    top: -10px !important;
    left: -25px !important;
    z-index: 1;
    width: 15px;
    height: 30px;
    opacity: 1;
    display: inline-block !important;
    background-size: contain !important;
}


.contact .contact-title .address-link h4 {
  color: #000000 !important;
  font-weight: 400 !important;
  font-size: 18px !important;
}

@media (min-width: 992px) {
  .contact .contact-title a.address-link {
    position: absolute;
    right: 20px;
    top: 5px;
  }

  .contact .contact-title a.address-link#address-2 {
    top: 35px !important;
  }
}


.contact .detail-item img {
  max-width: 80px;
  height: auto;
  border-radius: 100%;
  box-shadow: 0px 5px 10px rgba(0,0,0,0.05);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}


.contact .detail-item img:hover {
  box-shadow: 0px 5px 20px rgba(0,0,0,0.15);  
}


.contact img.contact-logo {
  max-width: 180px !important;
  height: auto !important;
  margin: 10px 0 0 0;
}

@media (max-width: 992px) {
  .contact img.contact-logo {
    display: none;
  }
}

.contact .contact-additional-info {
  text-align: right;
}


@media (max-width: 992px) {
  .contact .detail-item img {
    max-width: 70px;
  }

  .contact .detail-item {
    min-height: 70px;
  }

  .contact .col-lg-2 {
    width: 33.33%;
    padding: 0 0 20px 0 !important;
  }

  .contact .detail-item h4 {
    font-size: 15px !important;
  }

  .contact .contact-additional-info {
    margin-top: 20px;
  }

  .contact .contact-title a.address-link {
    padding: 15px 0 0 25px;
  }

  .contact .contact-title a.address-link:before {
    top: 8px !important;
    left: 0 !important;
  }

  .contact {
    padding: 50px 0 0px;
    margin-top: 40px;
  }

  .contact .contact-first-row {
    padding: 0px !important;
    margin: 0 0 0px;
  }
}



.contact .contact-additional-info {
  margin: 0 0 30px 0;
}

.contact .detail-item h4,
.contact .contact-additional-info *:not(h3) {
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 24px;
  font-family: 'Poppins', sans-serif !important;
  text-decoration: none !important;
}

@media (max-width: 540px) {
  .contact .detail-item h4,
  .contact .contact-additional-info *:not(h3) {
    font-size: 15px !important;
  }
}


.contact .detail-item a {
  text-decoration: none !important;
}

.contact .detail-item h4 a {
  color: #5b92a6;
  font-size: 15px !important;
  text-decoration: underline !important;
}

.contact .contact-additional-info h3 {
  margin: 35px 0 15px;
}
.contact .contact-additional-info ul li {
  list-style: none;
  background: url('../../images/icn-tick.png') no-repeat left 4px;
  padding-left: 33px;
}
.contact .contact-additional-info li {
  padding-bottom: 7px;
}
.contact .gform_wrapper {
  margin: 0;
}
.contact .gform_wrapper h3.gform_title {
  color: #b2a692;
  font-weight: 500 !important;
  margin: 0 0 30px 0;
  font-size: 27px;
}

@media (max-width: 768px) {
  .contact .gform_wrapper h3.gform_title {
  font-size: 20px !important;
  }
}




@media (min-width: 992px) {
  .dropdown-menu {
    background: 0!important;
  }
}
nav .navbar {
  margin: 0 0 0 auto;
}


.header.is-sticky .navbar span.phone, 
.header.is-sticky .navbar span.mob-phone {
  color: #fff !important;
}

.header.is-sticky .navbar .header-social {
  margin-left: 30px !important;
}

@media (min-width: 992px) {
  nav .navbar .header-social {
    border-left: 1px solid #921b83;
    padding: 8px 0 8px 20px;
    margin-left: 30px;
  }
}

@media (max-width: 992px) {
  nav .navbar .mob-phone {
    margin: 0px 40px 0 0px;
    font-size: 16px !important;
  }
}
@media (max-width: 540px) {
  nav .navbar .mob-phone {
    margin: -6px 5px 0 0;
    font-size: 13px;
    right: 75px;
  }

  .navbar span {
    margin:  2px 15px 0 0 ;
  }
}
@media (max-width: 992px) {
  nav .navbar .navbar-brand {
    margin: 0 -15px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .navbar span.mob-phone {
    top: 17px !important;
  }

  .hamburger {
    margin: -18px 0 0 0 !important;
  }

  .hamburger.is-active {
    margin:-3px 0 0 0 !important;
  }
}

.hamburger-inner {
  height: 2px!important;
}
.hamburger-inner:before,
.hamburger-inner:after {
  height: 2px!important;
}
@media (max-width: 540px) {
  .hamburger-inner:before,
  .hamburger-inner:after,
  .hamburger-inner {
    width: 30px!important;
  }


}
@media (max-width: 500px) {
  .hamburger-inner {
    width: 30px!important;
    right: -30px !important;
  }
}

.header-social .fa {
  font-size: 17px;
}

@media (max-width: 992px) {
  #header-block .header-social {
    display: none !important;
  }

  #header-block .phone {
    margin: 0 0 0 10px !important;
  }
}
.is-sticky {
  transform: translateY(-100%);
}
.header.type2.is-fixed {
  position: fixed;
  transform: translateY(0);
  transition: all 0.5s ease-out;
  z-index: 1000;
  background: #fff; 
  border-bottom: hidden;
  box-shadow: 0px 1px 15px rgba(18, 56, 96, 0.08);
  padding: 20px 0px 20px !important;
}

@media (max-width: 992px) {
  .header.type2.is-fixed {
    padding: 3px 0 !important;
  }
}


@media (max-width: 540px) {
  .header.type2.is-fixed {
    padding: 1px 0 !important;
  }
}

.header.type2.is-fixed #header-block {
  display:  none;
}

@media (max-width: 992px) {

  .navbar .mobile-menu {
    padding: 60px 0 20px !important;
  }

  .header-cta.mobile-wrapper {
    display: block !important;
    border-radius: 0px;
    width: 100%;
    z-index: 999 !important;
    position: relative;
    text-align: center;
  }

  .header.type2.is-fixed .header-cta.mobile-wrapper {
    display: none !important;
  }

  .mobile-cta a {
    visibility: hidden;
  }

  .header.type2.is-fixed .mobile-cta a {
    visibility: hidden;
  }

  .navbar .navbar-brand img {
    z-index: 9999 !important;
    position: relative;
  }

  .header.type2.is-fixed .navbar .navbar-brand img {
    z-index: 9999 !important;
    position: relative;
  }

  .header.type2.is-fixed .navbar-brand img {
    max-width: 80px !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
}

@media (max-width: 540px) {
  .header.type2.is-fixed .navbar-brand img {
    max-width: 80px !important;
    margin-top: 0px !important;
  }  
}




.footer-social li {
  margin: 0 2px!important;
}
.footer-links {
  margin-bottom: 9px;
}
.footer-links * {
  font-size: 16px;
}
.footer-links .footer-phone {
  font-weight: 600;
}
#menu-footer li:not(:last-child) {
  margin-right: 30px;
}
#menu-footer a {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  font-family: 'Poppins', sans-serif !important;
  margin-top: 10px;
}
@media (max-width: 1240px) {
  #menu-footer a {
    font-size: 14px;
    margin-top: 0px;
  }

  #footer ul#menu-footer {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0px; /* adjust as needed */
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #menu-footer li:not(:last-child) { 
    margin-right: 0px;
  }
}


@media (max-width: 768px) {
  #footer ul#menu-footer {
    display: inline-block !important;
    gap: unset !important;
    list-style: none;
    padding: 0;
    margin: 0;
  }
}

@media (max-width: 768px) {
  #menu-footer li:not(:last-child) {
    margin-right: 0px !important;
  }

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

}
.copyright {
  font-size: 11px;
  padding: 3px 0;
  color: #fff;
  font-weight: 500 !important;
  font-family: 'Poppins', sans-serif !important;
  line-height: 16px !important;
}
#enquire-fixed {
  background-color: #000000;
  font-weight: 800;
  font-size: 13px !important;
  color: #fff;
  padding: 10px 15px 25px 15px;
  position: fixed;
  border-radius: 4px;
  border: 1px solid #0c6f37;
  right: -60px;
  top: 285px;
  z-index: 99999;
  text-transform: uppercase;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
#enquire-fixed:active,
#enquire-fixed:hover,
#enquire-fixed:focus {
  text-decoration: none;
  opacity: 0.8;
}
.default-select {
  max-width: 250px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .default-select {
    margin: 0 0 0px auto;
  }
}
.default-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 7px 10px;
  border: 1px solid #ddd;
  color: #333;
  background-color: #fff;
}
.default-select:after {
  content: '\f107';
  font: normal normal normal 15px/1 FontAwesome;
  color: #fff;
  right: 0px;
  top: 0;
  height: 36px;
  padding: 12px 10px 0px 10px;
  border-left: 1px solid #ddd;
  position: absolute;
  pointer-events: none;
  background: #921b83;
}
* {
  /*-webkit-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  transition: all 300ms ease-in;*/
  outline: none;
}
@media (max-width: 992px) {
  .desktop-wrapper {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .mobile-wrapper {
    display: none !important;
  }
}
.align-center {
  justify-content: start;
  align-items: center;
  align-content: start;
}
.rm-padding {
  padding: 0!important;
}
.content-block h4 {
  color: #a0adb2;
}
.supplier-container .column-item {
  margin-bottom: 30px;
}
.supplier-container .column-content {
  background-color: #fafafa;
}



.cta .cta-btn:focus,
.cta .cta-btn:active,
.cta .cta-btn:hover {
  color: #921b83 !important;
}

.single #light-thumbnails .gallery-thumbnail {
  margin: 0 0 30px 0;
}
.post-list-pagination > * {
  min-width: 35px;
  display: inline-block;
  text-align: center;
  background-color: #e0e0e0;
  padding: 8px 15px;
  color: #333333;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0 5px 0 0;
}
.post-list-pagination > *:hover {
  background-color: #921b83;
  border: 1px solid #921b83;
  color: #ffffff;
  text-decoration: none;
}

.page-numbers.current {
  background-color: #921b83;
  border: 1px solid #921b83;
  color: #fff;
}


/*
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
  /* 

EXAMPLE 
Let's say you have an image and you need to make sure it looks ok
on retina screens. Let's say we have an icon which dimension are
24px x 24px. In your regular stylesheets, it would look something
like this:

.icon {
  width: 24px;
  height: 24px;
  background: url(img/test.png) no-repeat;
}

For retina screens, we have to make some adjustments, so that image
doesn't look blurry. So, taking into account the image above and the
dimensions, this is what we would put in our retina stylesheet:

.icon {
  background: url(img/test@2x.png) no-repeat;
  background-size: 24px 24px;
}

So, you would create the same icon, but at double the resolution, meaning 
it would be 48px x 48px. You'd name it the same, but with a @2x at the end
(this is pretty standard practice). Set the background image so it matches
the original dimensions and you are good to go. 

*/
}
/*
iPHONE 5 MEDIA QUERY
Want to get fancy for no good reason? Knock yourself out.
*/
@media (device-height: 568px) and (-webkit-min-device-pixel-ratio: 2) {
}

/*!
 * Bootstrap Grid v4.5.0 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,::after,::before{box-sizing:inherit}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}
/*# sourceMappingURL=bootstrap-grid.min.css.map */
/*!
 * Bootstrap Reboot v4.5.0 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Poppins,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}
/*# sourceMappingURL=bootstrap-reboot.min.css.map */
/*!
 * Bootstrap v4.5.0 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Poppins,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Poppins,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img,.card-img-bottom,.card-img-top{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item{display:-ms-flexbox;display:flex}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#ffffff;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#ffffff;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#ffffff}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Poppins,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#ffffff}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#ffffff}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#ffffff}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#ffffff}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#ffffff;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Poppins,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;-ms-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #ffffff}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}
/*# sourceMappingURL=bootstrap.min.css.map */
@font-face{font-family:lg;src:url(../fonts/lg.eot?n1z373);src:url(../fonts/lg.eot?#iefixn1z373) format("embedded-opentype"),url(../fonts/lg.woff?n1z373) format("woff"),url(../fonts/lg.ttf?n1z373) format("truetype"),url(../fonts/lg.svg?n1z373#lg) format("svg");font-weight:400;font-style:normal}.lg-icon{font-family:lg;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.lg-actions .lg-next,.lg-actions .lg-prev{background-color:rgba(0,0,0,.45);border-radius:2px;color:#999;cursor:pointer;display:block;font-size:22px;margin-top:-10px;padding:8px 10px 9px;position:absolute;top:50%;z-index:1080;border:none;outline:0}.lg-actions .lg-next.disabled,.lg-actions .lg-prev.disabled{pointer-events:none;opacity:.5}.lg-actions .lg-next:hover,.lg-actions .lg-prev:hover{color:#FFF}.lg-actions .lg-next{right:20px}.lg-actions .lg-next:before{content:"\e095"}.lg-actions .lg-prev{left:20px}.lg-actions .lg-prev:after{content:"\e094"}@-webkit-keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@-moz-keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@-ms-keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@-webkit-keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}@-moz-keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}@-ms-keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}@keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}.lg-outer.lg-right-end .lg-object{-webkit-animation:lg-right-end .3s;-o-animation:lg-right-end .3s;animation:lg-right-end .3s;position:relative}.lg-outer.lg-left-end .lg-object{-webkit-animation:lg-left-end .3s;-o-animation:lg-left-end .3s;animation:lg-left-end .3s;position:relative}.lg-toolbar{z-index:1082;left:0;position:absolute;top:0;width:100%;background-color:rgba(0,0,0,.45)}.lg-toolbar .lg-icon{color:#999;cursor:pointer;float:right;font-size:24px;height:47px;line-height:27px;padding:10px 0;text-align:center;width:50px;text-decoration:none!important;outline:0;background:0 0;border:none;box-shadow:none;-webkit-transition:color .2s linear;-o-transition:color .2s linear;transition:color .2s linear}.lg-toolbar .lg-icon:hover{color:#FFF}.lg-toolbar .lg-close:after{content:"\e070"}.lg-toolbar .lg-download:after{content:"\e0f2"}.lg-sub-html{background-color:rgba(0,0,0,.45);bottom:0;color:#EEE;font-size:16px;left:0;padding:10px 40px;position:fixed;right:0;text-align:center;z-index:1080}.lg-sub-html h4{margin:0;font-size:13px;font-weight:700}.lg-sub-html p{font-size:12px;margin:5px 0 0}#lg-counter{color:#999;display:inline-block;font-size:16px;padding-left:20px;padding-top:12px;vertical-align:middle}.lg-next,.lg-prev,.lg-toolbar{opacity:1;-webkit-transition:-webkit-transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear;-moz-transition:-moz-transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear;-o-transition:-o-transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear;transition:transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear}.lg-hide-items .lg-prev{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}.lg-hide-items .lg-next{opacity:0;-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}.lg-hide-items .lg-toolbar{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object{-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5);opacity:0;-webkit-transition:-webkit-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-moz-transition:-moz-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-o-transition:-o-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;transition:transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-webkit-transform-origin:50% 50%;-moz-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);opacity:1}.lg-outer .lg-thumb-outer{background-color:#0D0A0A;bottom:0;position:absolute;width:100%;z-index:1080;max-height:350px;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .25s cubic-bezier(0,0,.25,1) 0s;transition:transform .25s cubic-bezier(0,0,.25,1) 0s}.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb{-webkit-transition-duration:0s!important;transition-duration:0s!important}.lg-outer.lg-thumb-open .lg-thumb-outer{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.lg-outer .lg-thumb{padding:10px 0;height:100%;margin-bottom:-5px}.lg-outer .lg-thumb-item{cursor:pointer;float:left;overflow:hidden;height:100%;border:2px solid #FFF;border-radius:4px;margin-bottom:5px}@media (min-width:1025px){.lg-outer .lg-thumb-item{-webkit-transition:border-color .25s ease;-o-transition:border-color .25s ease;transition:border-color .25s ease}}.lg-outer .lg-thumb-item.active,.lg-outer .lg-thumb-item:hover{border-color:#a90707}.lg-outer .lg-thumb-item img{width:100%;height:100%;object-fit:cover}.lg-outer.lg-has-thumb .lg-item{padding-bottom:120px}.lg-outer.lg-can-toggle .lg-item{padding-bottom:0}.lg-outer.lg-pull-caption-up .lg-sub-html{-webkit-transition:bottom .25s ease;-o-transition:bottom .25s ease;transition:bottom .25s ease}.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html{bottom:100px}.lg-outer .lg-toogle-thumb{background-color:#0D0A0A;border-radius:2px 2px 0 0;color:#999;cursor:pointer;font-size:24px;height:39px;line-height:27px;padding:5px 0;position:absolute;right:20px;text-align:center;top:-39px;width:50px;outline:0;border:none}.lg-outer .lg-toogle-thumb:hover,.lg-outer.lg-dropdown-active #lg-share{color:#FFF}.lg-outer .lg-toogle-thumb:after{content:"\e1ff"}.lg-outer .lg-video-cont{display:inline-block;vertical-align:middle;max-width:1140px;max-height:100%;width:100%;padding:0 5px}.lg-outer .lg-video{width:100%;height:0;padding-bottom:56.25%;overflow:hidden;position:relative}.lg-outer .lg-video .lg-object{display:inline-block;position:absolute;top:0;left:0;width:100%!important;height:100%!important}.lg-outer .lg-video .lg-video-play{width:84px;height:59px;position:absolute;left:50%;top:50%;margin-left:-42px;margin-top:-30px;z-index:1080;cursor:pointer}.lg-outer .lg-has-iframe .lg-video{-webkit-overflow-scrolling:touch;overflow:auto}.lg-outer .lg-has-vimeo .lg-video-play{background:url(../img/vimeo-play.png) no-repeat}.lg-outer .lg-has-vimeo:hover .lg-video-play{background:url(../img/vimeo-play.png) 0 -58px no-repeat}.lg-outer .lg-has-html5 .lg-video-play{background:url(../img/video-play.png) no-repeat;height:64px;margin-left:-32px;margin-top:-32px;width:64px;opacity:.8}.lg-outer .lg-has-html5:hover .lg-video-play{opacity:1}.lg-outer .lg-has-youtube .lg-video-play{background:url(../img/youtube-play.png) no-repeat}.lg-outer .lg-has-youtube:hover .lg-video-play{background:url(../img/youtube-play.png) 0 -60px no-repeat}.lg-outer .lg-video-object{width:100%!important;height:100%!important;position:absolute;top:0;left:0}.lg-outer .lg-has-video .lg-video-object{visibility:hidden}.lg-outer .lg-has-video.lg-video-playing .lg-object,.lg-outer .lg-has-video.lg-video-playing .lg-video-play{display:none}.lg-outer .lg-has-video.lg-video-playing .lg-video-object{visibility:visible}.lg-progress-bar{background-color:#333;height:5px;left:0;position:absolute;top:0;width:100%;z-index:1083;opacity:0;-webkit-transition:opacity 80ms ease 0s;-moz-transition:opacity 80ms ease 0s;-o-transition:opacity 80ms ease 0s;transition:opacity 80ms ease 0s}.lg-progress-bar .lg-progress{background-color:#a90707;height:5px;width:0}.lg-progress-bar.lg-start .lg-progress{width:100%}.lg-show-autoplay .lg-progress-bar{opacity:1}.lg-autoplay-button:after{content:"\e01d"}.lg-show-autoplay .lg-autoplay-button:after{content:"\e01a"}.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image,.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition-duration:0s;transition-duration:0s}.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition:-webkit-transform .3s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .3s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .3s cubic-bezier(0,0,.25,1) 0s;transition:transform .3s cubic-bezier(0,0,.25,1) 0s}.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s;-moz-transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s;-o-transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s;transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-webkit-transition:-webkit-transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;-moz-transition:-moz-transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;-o-transition:-o-transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;transition:transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;-webkit-transform-origin:0 0;-moz-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}#lg-zoom-in:after{content:"\e311"}#lg-actual-size{font-size:20px}#lg-actual-size:after{content:"\e033"}#lg-zoom-out{opacity:.5;pointer-events:none}#lg-zoom-out:after{content:"\e312"}.lg-zoomed #lg-zoom-out{opacity:1;pointer-events:auto}.lg-outer .lg-pager-outer{bottom:60px;left:0;position:absolute;right:0;text-align:center;z-index:1080;height:10px}.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont{overflow:visible}.lg-outer .lg-pager-cont{cursor:pointer;display:inline-block;overflow:hidden;position:relative;vertical-align:top;margin:0 5px}.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.lg-outer .lg-pager-cont.lg-pager-active .lg-pager{box-shadow:0 0 0 2px #fff inset}.lg-outer .lg-pager-thumb-cont{background-color:#fff;color:#FFF;bottom:100%;height:83px;left:0;margin-bottom:20px;margin-left:-60px;opacity:0;padding:5px;position:absolute;width:120px;border-radius:3px;-webkit-transition:opacity .15s ease 0s,-webkit-transform .15s ease 0s;-moz-transition:opacity .15s ease 0s,-moz-transform .15s ease 0s;-o-transition:opacity .15s ease 0s,-o-transform .15s ease 0s;transition:opacity .15s ease 0s,transform .15s ease 0s;-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}.lg-outer .lg-pager-thumb-cont img{width:100%;height:100%}.lg-outer .lg-pager{background-color:rgba(255,255,255,.5);border-radius:50%;box-shadow:0 0 0 8px rgba(255,255,255,.7) inset;display:block;height:12px;-webkit-transition:box-shadow .3s ease 0s;-o-transition:box-shadow .3s ease 0s;transition:box-shadow .3s ease 0s;width:12px}.lg-outer .lg-pager:focus,.lg-outer .lg-pager:hover{box-shadow:0 0 0 8px #fff inset}.lg-outer .lg-caret{border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px dashed;bottom:-10px;display:inline-block;height:0;left:50%;margin-left:-5px;position:absolute;vertical-align:middle;width:0}.lg-fullscreen:after{content:"\e20c"}.lg-fullscreen-on .lg-fullscreen:after{content:"\e20d"}.lg-outer #lg-dropdown-overlay{background-color:rgba(0,0,0,.25);bottom:0;cursor:default;left:0;position:fixed;right:0;top:0;z-index:1081;opacity:0;visibility:hidden;-webkit-transition:visibility 0s linear .18s,opacity .18s linear 0s;-o-transition:visibility 0s linear .18s,opacity .18s linear 0s;transition:visibility 0s linear .18s,opacity .18s linear 0s}.lg-outer.lg-dropdown-active #lg-dropdown-overlay,.lg-outer.lg-dropdown-active .lg-dropdown{-webkit-transition-delay:0s;transition-delay:0s;-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;visibility:visible}.lg-outer .lg-dropdown{background-color:#fff;border-radius:2px;font-size:14px;list-style-type:none;margin:0;padding:10px 0;position:absolute;right:0;text-align:left;top:50px;opacity:0;visibility:hidden;-moz-transform:translate3d(0,5px,0);-o-transform:translate3d(0,5px,0);-ms-transform:translate3d(0,5px,0);-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0);-webkit-transition:-webkit-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;-moz-transition:-moz-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;-o-transition:-o-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;transition:transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s}.lg-outer .lg-dropdown:after{content:"";display:block;height:0;width:0;position:absolute;border:8px solid transparent;border-bottom-color:#FFF;right:16px;top:-16px}.lg-outer .lg-dropdown>li:last-child{margin-bottom:0}.lg-outer .lg-dropdown>li:hover .lg-icon,.lg-outer .lg-dropdown>li:hover a{color:#333}.lg-outer .lg-dropdown a{color:#333;display:block;white-space:pre;padding:4px 12px;font-family:"Poppins","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px}.lg-outer .lg-dropdown a:hover{background-color:rgba(0,0,0,.07)}.lg-outer .lg-dropdown .lg-dropdown-text{display:inline-block;line-height:1;margin-top:-3px;vertical-align:middle}.lg-outer .lg-dropdown .lg-icon{color:#333;display:inline-block;float:none;font-size:20px;height:auto;line-height:1;margin-right:8px;padding:0;vertical-align:middle;width:auto}.lg-outer,.lg-outer .lg,.lg-outer .lg-inner{width:100%;height:100%}.lg-outer #lg-share{position:relative}.lg-outer #lg-share:after{content:"\e80d"}.lg-outer #lg-share-facebook .lg-icon{color:#3b5998}.lg-outer #lg-share-facebook .lg-icon:after{content:"\e901"}.lg-outer #lg-share-twitter .lg-icon{color:#00aced}.lg-outer #lg-share-twitter .lg-icon:after{content:"\e904"}.lg-outer #lg-share-googleplus .lg-icon{color:#dd4b39}.lg-outer #lg-share-googleplus .lg-icon:after{content:"\e902"}.lg-outer #lg-share-pinterest .lg-icon{color:#cb2027}.lg-outer #lg-share-pinterest .lg-icon:after{content:"\e903"}.lg-group:after{content:"";display:table;clear:both}.lg-outer{position:fixed;top:0;left:0;z-index:1050;text-align:left;opacity:0;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-outer *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.lg-outer.lg-visible{opacity:1}.lg-outer.lg-css3 .lg-item.lg-current,.lg-outer.lg-css3 .lg-item.lg-next-slide,.lg-outer.lg-css3 .lg-item.lg-prev-slide{-webkit-transition-duration:inherit!important;transition-duration:inherit!important;-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important}.lg-outer.lg-css3.lg-dragging .lg-item.lg-current,.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide{-webkit-transition-duration:0s!important;transition-duration:0s!important;opacity:1}.lg-outer.lg-grab img.lg-object{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer.lg-grabbing img.lg-object{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg{position:relative;overflow:hidden;margin-left:auto;margin-right:auto;max-width:100%;max-height:100%}.lg-outer .lg-inner{position:absolute;left:0;top:0;white-space:nowrap}.lg-outer .lg-item{background:url(../img/loading.gif) center center no-repeat;display:none!important}.lg-outer.lg-css .lg-current,.lg-outer.lg-css3 .lg-current,.lg-outer.lg-css3 .lg-next-slide,.lg-outer.lg-css3 .lg-prev-slide{display:inline-block!important}.lg-outer .lg-img-wrap,.lg-outer .lg-item{display:inline-block;text-align:center;position:absolute;width:100%;height:100%}.lg-outer .lg-img-wrap:before,.lg-outer .lg-item:before{content:"";display:inline-block;height:50%;width:1px;margin-right:-1px}.lg-outer .lg-img-wrap{position:absolute;padding:0 5px;left:0;right:0;top:0;bottom:0}.lg-outer .lg-item.lg-complete{background-image:none}.lg-outer .lg-item.lg-current{z-index:1060}.lg-outer .lg-image{display:inline-block;vertical-align:middle;max-width:100%;max-height:100%;width:auto!important;height:auto!important}.lg-outer.lg-show-after-load .lg-item .lg-object,.lg-outer.lg-show-after-load .lg-item .lg-video-play{opacity:0;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play{opacity:1}.lg-outer .lg-empty-html,.lg-outer.lg-hide-download #lg-download{display:none}.lg-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1040;background-color:#ffffff;opacity:0;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-backdrop.in{opacity:1}.lg-css3.lg-no-trans .lg-current,.lg-css3.lg-no-trans .lg-next-slide,.lg-css3.lg-no-trans .lg-prev-slide{-webkit-transition:none 0s ease 0s!important;-moz-transition:none 0s ease 0s!important;-o-transition:none 0s ease 0s!important;transition:none 0s ease 0s!important}.lg-css3.lg-use-css3 .lg-item,.lg-css3.lg-use-left .lg-item{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-css3.lg-fade .lg-item{opacity:0}.lg-css3.lg-fade .lg-item.lg-current{opacity:1}.lg-css3.lg-fade .lg-item.lg-current,.lg-css3.lg-fade .lg-item.lg-next-slide,.lg-css3.lg-fade .lg-item.lg-prev-slide{-webkit-transition:opacity .1s ease 0s;-moz-transition:opacity .1s ease 0s;-o-transition:opacity .1s ease 0s;transition:opacity .1s ease 0s}.lg-css3.lg-slide.lg-use-css3 .lg-item{opacity:0}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transition:-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-moz-transition:-moz-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-o-transition:-o-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s}.lg-css3.lg-slide.lg-use-left .lg-item{opacity:0;position:absolute;left:0}.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide{left:-100%}.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide{left:100%}.lg-css3.lg-slide.lg-use-left .lg-item.lg-current{left:0;opacity:1}.lg-css3.lg-slide.lg-use-left .lg-item.lg-current,.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide{-webkit-transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-moz-transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-o-transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */


@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
  max-width: 1040px;
  }
}

.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #ffffff; }


@media (max-width: 992px) {
  .hamburger {
    margin:  -14px 0 0 0;
    right: 25px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    margin:  -26px 0 0 0;
  }

  .hamburger.is-active {
    top: -1px;
  }
}

@media (max-width: 540px) {
  .hamburger {
    margin:  -30px 0 0 0;
  }

  .hamburger.is-active {
    margin: -11px 0 0 0;
  }
  .hamburger-inner {
    display: inline-block !important;
  }
}


.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; 
  top: 15px;
}

@media (max-width: 540px) {
  .hamburger-box {
    top: 15px;
  }
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 80px; }

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg); }
  .hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
  .hamburger--arrowturn.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg);
    transition-delay: 0.075s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -80px;
      top: -80px;
      transform: translate3d(80px, 80px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -80px;
      top: -80px;
      transform: translate3d(-80px, 80px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -80px;
      top: 80px;
      transform: translate3d(80px, -80px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -80px;
      top: 80px;
      transform: translate3d(-80px, -80px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; }

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; }

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0; }

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0; }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px; }
  .hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 20px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

  .hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); 
    background:  #921b83 !important;
  }

  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; 
    background: #921b83 !important; 
  }
  .hamburger--spin.is-active .hamburger-inner:after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); 
    background: #921b83 !important; 
  }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }



#menu-main-menu a {
    cursor:pointer;
}

#enquire-fixed {
  z-index: 1000; 
}



.contact .detail-item a {
  color: #ffffff;
}


.online-quote .form-wrap .gform_fields .gfield .ginput_container input, .online-quote .form-wrap .gform_fields .gfield .ginput_container textarea {
  color: #444;
}


.online-quote .form-wrap .gform_fields .gfield .ginput_container select {
  color: #777;
}


.page-hero strong {
  font-weight: 600;
}

.hero .hero-banner strong {
  font-weight: 600; 
}



@media (min-width: 768px) {
  .header.type2.is-fixed .navbar-brand {
    max-width: 240px !important;
  }

  .header.type2.is-fixed .navbar .navbar {
    margin-top: 0;
  }

}



.faq .panel .panel-body p {
  color: #ffffff;
}

.navbar .mobile-menu .d-flex li.menu-item-has-children .dropdown-menu li a {
    font-size: 15px;
    line-height: 1.4em !important;
}

.text-banner .col-md-12 {
    flex: 0 0 110%;
    max-width: 110%;
    margin-left: -15px !important;
    margin-bottom: -20px !important;
}

.text-banner .container {
  max-width: 100% !important;
}

/* Gallery pop up background opacity */

.lg-backdrop.in {
    opacity: 0.7 !important;
}




/* Gallery archive / single */


.single .entry-title,
.blog h2 {
  font-size: 3em;
  font-weight: 400;
}

@media (min-width: 768px) {
  .single .entry-title,
  .blog h2 {
    font-size: 3.214em;
  } 
}



/* Single Gallery */


div#gallery-intro.col-md-6,
div#gallery-intro.col-md-7,
div#gallery-intro.col-md-5 {
  float:  left;
}


@media (max-width: 768px) {
  div#gallery-intro.col-md-6,
  div#gallery-intro.col-md-7,
  div#gallery-intro.col-md-5 {
    width: 100%;
    flex: 0 0 100%;
  }  
}

.gallery-intro-bg {
  background: #f5f6f2;
  border-radius: 0px;
  padding: 30px 20px 10px 20px;
  display: inline-block;
  margin: 0 0 25px 0;
}

p.gallery-intro {
  font-size: 20px;
  font-weight: 500 !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  p.gallery-intro {
    margin: -10px 0 0 0;
  }  
}


.single-gallery .entry-title {
  color:  #fff;
  margin-bottom:  10px; 
  font-size: 40px;
  font-weight: 500 !important;
}

.single-gallery .post-image {
  display: block;

}


.single-gallery .project-banner-info {
    position: absolute;
    top: 270px;
    left: 50px;
    width: 100%;
}

@media (max-width: 768px) {
  .single-gallery .project-banner-info {
    top: 180px;
    left: 30px;
  }

  .single-gallery .entry-title {
    font-size: 30px;
  }
}


@media (max-width: 540px) {
  .single-gallery .project-banner-info {
    position: absolute;
    top: 100px;
    left: 30px;
  }
}


.single-gallery .project-banner-info .col-md-6 p {
  font-size: 13px;
  font-weight: 400;
  color: #fff !important;
  margin-bottom: 0px;
}

.single-gallery .project-banner-info .col-md-6 p.project-info {
  font-size: 13px;
  font-weight: 400;
  color: #fff !important;
  margin-bottom:  15px; 
}


.single-gallery .post-thumb .post-image {
  min-height: 600px;
  width: 100%;
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
}

.single-gallery .post-thumb .post-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  width: 97.5%;
  min-height: 600px;
  background: rgba(0, 0, 0, 0.15);
}


@media (max-width: 1200px) {

  .single-gallery .post-thumb .post-image:before {
    min-height: 600px;
    width: 96.7%;
    background: rgba(0, 0, 0, 0.15);
  }

}



@media (max-width: 768px) {

  .single-gallery .post-thumb .post-image {
    min-height: 450px;
    width: 104%;
  }

  .single-gallery .post-thumb .post-image:before {
    min-height: 450px;
    width: 98%;
    background: rgba(0, 0, 0, 0.15);
  }

}


@media (max-width: 375px) {

 .single-gallery .post-thumb .post-image {
    min-height: 250px;
    width: 100%;
  }


  .single-gallery .post-thumb .post-image:before {
    min-height: 250px;
    width: 91%;
    background: rgba(0, 0, 0, 0.2);
  }

}




.single-gallery div#light-thumbnails.row {
  width: 100%;
  margin-left: 30px;
  margin-top: 0px;
}

@media (max-width: 768px) {

  .single-gallery div#light-thumbnails.row {
    width: 100%;
    margin-left: 0%;
    text-align: center;
    margin: 20px 0 0 0;
  }

}







@media (max-width: 470px) {
  body.single .gallery-thumbnail .fullbg {
    min-height: 200px;
  }

  body.single .gallery-btn {
    float: right !important;
    margin: 0 !important;
  }
}

body.single .gallery-thumbnail .fullbg {
  min-height: 240px;  
  background-size: cover !important;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

body.single .gallery-thumbnail .fullbg:hover {
  opacity: 0.7;
}

body.single .gallery-thumbnail img {
  display: none;
}

body.single #content {
  display: block;
}


body.single .gallery-btn {
  float: right;
  background: #172b38;
  padding: 4.5px 20px;
  color: #fff;
  margin: 0px 20px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

body.single .gallery-btn:hover {
  opacity: 0.7;
  text-decoration: none;
}

@media (min-width: 768px) {
  body.single .gallery-btn {
    margin: 0px 20px; 
  }
}

@media (max-width: 768px) {
  .text .column-list {
    max-width: 100% !important;
  }
}



.recent .posts .swiper-wrapper .swiper-slide .swiper-image .post-info .published {
  color: transparent;
}

.single .single-content h2 {
  justify-content: left !important
}




.single .single-content a {
  color: #921b83;
  text-decoration: underline;
}

.single .single-content h3,
.single .single-content h4 {
  margin: 20px 0 15px !important;
}



body.single .article-content {
  padding: 0 0 20px 0;
}

@media (min-width: 992px) {

  .type-2.single #content {
      margin: 0px 0 0 0;
  }

  .faq .panel .panel-heading .panel-title {
    font-size: 1.15em;
  }


}

@media (max-width: 992px) {
    body.single .container {
        max-width: 100%;
    }
}



.blog .post-item .post-image {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.blog .post-item .post-image:hover {
  opacity: 0.7;
}

.single iframe {
  width: 100% !important;
  height: 230px;
  margin: 15px 0;
}


@media (min-width: 540px) {
  .single iframe {
    height: 330px;
  }
}

@media (min-width: 992px) {
  .single iframe {
    height: 500px;
  }
}


/* Testimonials  List */

.testimonial-list-wrapper .testimonial .testimonial-img img {
display: block;
min-height: 400px;
max-width: 100%;
background-size: contain;
}



/* Blog */


.single-post .article-content .single-title {
    font-weight: 500 !important;
} 

@media (min-width: 992px) {
  .single-post .article-content .single-title {
      font-size: 45px !important;
      line-height: 55px !important;
  } 
}




/* Header width */






.navbar span.mob-phone a {
  color: #000 !important;
}

.is-sticky .navbar span.mob-phone a {
  color: #fff !important;
}


/* Service Box */






.text.box-shadow .column-item {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}


.text.box-shadow .column-item:hover {
  box-shadow: 2px 10px 20px 0px rgba(0, 0, 0, 0.2);
}

.page-id-942 .text.box-shadow .column-item:hover {
  box-shadow: 2px 8px 8px 0px rgba(0, 0, 0, 0.2);
}

.content-block .btn a {
  text-decoration: none !important; 
}



/***** Gallery Module ******/


.gallery-thumbnail p {
  position: absolute;
  bottom: 20px;
  left: 30px; 
  padding-right: 20px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  font-weight: 500;
}



/* Header */

#header-block {
  color: #fff;
  text-align: right;
  padding: 5px 0 10px 0;
  margin: -20px 0 15px 0;
  display: block;
  text-align: center;
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 992px) {
   #header-block {
    margin: 0px 0 15px 0;
   } 
}

@media (max-width: 540px) {
   #header-block {
    margin: 0px 0 15px 0;
   } 
}


#header-block .phone {
  margin: 0 20px 0 10px;
  font-weight: 700;
  font-family:'Poppins', sans-serif !important;
  font-size: 13px;
}

#header-block .phone strong {
  font-weight: 700;  
}

#header-block .fa-phone {
  margin: 0 0 0 10px;
}

#header-block .col-lg-12 {
  max-width: 1200px;
  margin:  0 auto;
}



#header-block p,
#header-block p span,
#header-block a {
  color: #fff !important;
  font-size: 13px;
  font-weight: 500 !important;
  display: inline-block;
  margin: 0 10px 0 0;
 -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#header-block ul.header-location a {
  margin: 0 3px 0 0;
}

@media (max-width: 540px) {
  #header-block p,
  #header-block p span,
  #header-block a {
    font-size: 11px !important;
  }

  #header-block img {
    max-height: 15px !important;
  }

  #header-block .right-side img {
    max-height: 10px !important;
  }

  ul.header-location {
    padding: 0px !important;
  }

  ul.header-location li {
    margin: 0 auto !important;
  }
}

#header-block a.btn {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
  text-transform: uppercase;
}

#header-block a:hover {
  text-decoration: none;
  opacity: 0.7;
}


#header-block p span {
  padding: 0 0 0 16px;
  margin: 0 0 0 20px;
  background: url(../../images/icn-location-header.png) center left no-repeat;
  line-height: 33px;
}

@media (max-width:  540px) {
  #header-block p,
  #header-block p span {
    text-align: center;
  }  

}

@media (min-width: 992px) {
  #header-block .left-side {
    text-align: left;
  }

  #header-block .right-side {
    text-align: right;
  }

  ul.header-location {
    padding-left: 0px;
  }
}




/* ====== Image Slider Module ====== */

.image-slider {
    padding: 30px 0;
}
@media (min-width: 992px) {
    .image-slider {
        padding: 60px 0;
    }
}
.image-slider .image-slider-block {
    position: relative;
}
.image-slider .image-slider-wrapper {
    overflow: hidden;
}
.image-slider .image-slider-wrapper .swiper-button-prev {
    left: -50px;
    color: #ccc;
}
.image-slider .image-slider-wrapper .swiper-button-next {
    right: -50px;
    color: #ccc;
}
.image-slider .image-slider-wrapper .swiper-wrapper .swiper-slide {
    min-height: 250px;
    width: 100%;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    background-size: cover !important;
}
@media (min-width: 992px) {
    .image-slider .image-slider-wrapper .swiper-wrapper .swiper-slide {
        min-height: 600px;
    }
}



/*  ======  Homepage custom styles  ======  */

.box-element {
  padding: 40px 40px 75px 40px !important;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 12px;
}

.intro-section .cta-btn {
  bottom: 60px !important;
  position: absolute;
  left: 50px;
}



/*  ======  Service Box - Text Column  ======  */ 


.service-images img {
  box-shadow: 0 3px 10px rgba(0,0,0,0.14);
}

/* .service-box .column-item img {
  max-width: 60px !important;
  margin: 0 auto;
  display: block;
}

.service-box .column-item {
  margin: 30px 0 30px 0;
}

.service-box h2,
.service-box h3,
.service-box .block-description {
  text-align: center;
  color: #ffffff !important;
}

.service-box .column-content {
  text-align: center;
  padding:  0 15px;
  margin-top: 20px;
}

.service-box .column-content h3 {
  font-weight: 500 !important;
} */ 




/* How it works */



.how-it-works {
  background: #000000;
  padding: 80px 0 60px 0;
}

.how-it-works h2,
.how-it-works .block-description {
  color: #fff !important;
}

@media (max-width: 540px) {
  .how-it-works h2 {
    text-align: center;
  }
}

.how-it-works .column-content h3 {
  font-weight: 400 !important;
  color: #fff !important;
}

.how-it-works .column-item {
  border-radius: 12px;
  padding-top: 1px;
  box-shadow: none !important;
  text-align: left;
}

.how-it-works .column-item p {
  color: #fff !important;
}

.how-it-works .column-content {
    background-color: transparent;
    padding: 5px 0px !important;
    text-align: left;
}

@media (max-width: 768px) {
  .how-it-works .column-content {
    text-align: center;
  }
  
  .how-it-works .column-item {
    text-align: center;
  }  

  .how-it-works h2,
  .how-it-works .block-description,
  .how-it-works p, {
    text-align: center;
  }

}


.how-it-works .column-item img {
    max-height: 54px !important;
    width: auto;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    display: block;
    margin: 30px auto 5px;
}

@media (min-width: 768px) {
  .how-it-works .column-item img {
      margin: 30px 0 5px;
  }
  
  .how-it-works .column-content {
      padding: 5px 10px 5px 0 !important;
  }
}

@media (max-width: 992px) {
  .how-it-works .col-md-4 {
    flex: auto;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .text.box-shadow .column-item .column-content {
    min-height: 220px;
  }
}


/* ======  Boxes - Text Column ======  */

.boxes .column-item img {
  max-width: 100%;
  border-radius: 0px;
  width: auto;
}

@media (min-width: 768px) {
  .boxes .column-item img {
    width: 400px;
    max-width: none;
    max-width: 100%;
  }
}

.boxes .column-item {
  max-width: 100%;
  overflow-x: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;  
}

.boxes .column-item:hover {
  opacity: 0.7;
}


.boxes img {
  width: 100%;
}

.boxes .box-icn {
  max-width: 38px !important;
  position: absolute;
  top: 0;
  right: 15px;
}


.boxes {
  padding:  90px 0 70px;
}

@media (max-width: 580px) {
  .boxes .column-item,
  .boxes .column-list,
  .boxes h2 {
    text-align: center;
  }
}

.boxes .column-content {
  position: absolute;
  display: block;
  top: 50px;
  left: 50px;
}


.boxes .column-content h3, 
.boxes .column-content p {
  color: #fff !important;
  text-align: left !important;
  max-width: 100%;
  font-size: 17px;
}

.boxes .column-content p {
  font-weight: 400 !important;
}

@media (max-width: 1200px) {
  .boxes .column-content {
    top: 20px;
  }

  .boxes .column-content h3,
  .boxes .column-content p {
    max-width: 90%;
  }

  .boxes .column-content h3 {
    font-size: 20px;
  }
}


@media (max-width: 760px) {
  .boxes .column-content {
    top: 40px;
  }

  .boxes .column-content h3,
  .boxes .column-content p {
    max-width: 100% !important;
  }

  .boxes .column-content h3 {
    font-size: 23px;
  }  
}


/*  ======  Intro Section  ======  */


.intro-section .cta-btn {
  bottom: 60px !important;
  position: absolute;
  left: 50px;
  padding: 12px 40px !important;
}


.intro-section ul li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\f058";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 17px;
    color: #2b9252;
    margin: 2px 0 0 0;
    font-style: normal;
    font-weight: 4\500;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.intro-section ul li {
    color: #2b9252;
    padding: 0 0 0 27px;
}


@media (min-width: 992px) {

  .intro-section .cta-btn {
      position: absolute;
      left: 120px;
      padding: 12px 130px !important;
      z-index: 110;
  }

  .box-element {
      padding: 60px 40px 75px 60px !important;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      border-radius: 12px;
      margin-top: -200px;
      position: absolute;
      background: #fff;
      width: 500px;
      z-index: 100;
      height: 560px;
  }  

    .box-element .column-content h2 {
      font-size: 30px;
    }

  .intro-section ul li,
  .intro-section p {
      font-size:  16px;
  }

}


/* Team Section - about us */

.team-section .column-item img {
  margin: 0 0 20px 0;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .team-section .column-list {
    padding: 0 5% 0 0;
  }


}


.team .block-description img {
  border-radius: 25px;
}




/* Google Reviews - Rich Plugins */


.testimonials .rplg .rplg-box {
  background-color: #fcfdfc !important;
}

.rplg-grid .rplg-biz-name a,
.rplg .rplg-review-name {
    color:  #333275 !important;
}

.rplg .rplg-review-name {
  font-size: 90% !important;
}

.rplg-slider-review .rplg-box {
    box-shadow: 0px 3px 10px rgba(0,0,0,0.1);
    border: 0px !important;
    padding: 2px;
    /* background-color: #fff !important; */ 
}

.rplg-slider .rplg-box:before {
    display: none !important;
}

.testimonials .rplg-slider .rplg-slider-prev, 
.testimonials .rplg-slider .rplg-slider-next {
    top:  40% !important;
    background: #000000 !important;
}

.testimonials .rplg-slider .rplg-slider-prev span, 
.testimonials .rplg-slider .rplg-slider-next span {
  color: #fff !important;
  left: 35% !important;
}

.testimonials .rplg-slider .rplg-slider-prev span, 
.testimonials .rplg-slider .rplg-slider-next span {
  top: 40% !important;
}


.testimonials  .rplgsw-pagination-bullet-active {
  color: #000000 !important;
}

.testimonials .rplg .rplg-review-name {
  color: #000000 !important;
}

.google-review .column-content {
    padding: 0 0 0 0px;
}

.google-review .container {
  padding-right: 35px;
}


/* Custom Blog */

.post-bg {
  background: transparent;
  border-radius: 0 ;
  padding-top: 1px;
  box-shadow: none !important;
  margin-bottom: 30px;
}

.article-excerpt {
  padding: 0;
}



.article-excerpt a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 700;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.article-excerpt a:hover {
  opacity: 0.7;
  text-decoration: none;
}




/* Gallery Header */

.gallery-header {
  background-image: url('../../images/overlay-colour.png');
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 140px;
  position: relative;
}


@media (max-width: 992px) {
  .gallery-header {
    background-size: 100px;
    background-position: 100% 40%;
    margin: -70px 0 0 0;
  }
}

.gallery-header h1 {
  margin: 60px 0 0 0;
  font-family: 'Poppins', sans-serif !important;
  font-size: 50px;
  font-weight: 400 !important;
  color: #000000;
  line-height: 40px !important;
}

@media (max-width: 768px) {
  .gallery-header h1 {
  margin: 30px 0 20px 0 !important;
  font-size: 35px;
  line-height: 39px !important;
  }
}



/* ===== Quote Section ===== */


.home .quote-section {
  background: #fbfbed; 
}

.quote-section {
  padding: 100px 0 80px;
  background: #f1f6f8;
}

.quote-section h2 {
  padding-left: 130px;
  font-size: 34px !important;
  line-height: 40px !important;
  font-weight: 600 !important;
}

.quote-section .left {
 position: relative;
}

.quote-section .left:before {
  background: url("../../images/icn-quotes.png") center center / contain no-repeat;
  width: 90px;
  height: 90px;
  content: "";
  display: block;
  background-size: contain;
  margin: 0;
  left: 15px;
  top: 10px;
  position: absolute;
  transition: 0.3s;
}


@media (max-width: 768px) {
  .quote-section {
    padding: 60px 15px 20px !important;
  }

  .quote-section .left:before {
    position: relative;
    left: 0;
    width: 70px;
    height: 70px;
  }

  .quote-section h2 {
    padding: 30px 0 0 0;
    font-size: 24px !important;
    line-height: 34px !important;
  }
}

@media (min-width: 992px) {
  .quote-section h2 {
    font-size: 45px !important;
    line-height: 52px !important;
  }
}

/* ===== Quote Section With Text ===== */


.quote-section.with-text {
  padding: 80px 0;
}


.quote-section.with-text .right {
  text-align: right;
}

.quote-section .right .top-text {
  margin-top: 20px !important;
  border-bottom: 2px solid #dee12c;
  padding: 0 0 5px;
}

.quote-section .right h3 {
  font-weight: 600 !important;
  color: #000 !important;
}




/* Custom Form - Checkbox */

.gform_legacy_markup_wrapper ul.gfield_checkbox li {
  display:  inline !important;
  font-size: 15px !important;
}


.gform_legacy_markup_wrapper .gfield_checkbox li input, .gform_legacy_markup_wrapper .gfield_checkbox li input[type="checkbox"] {
  width: 20px !important;
  float: none !important;
  margin: 0px 0 0 0 !important;
}


.gform_legacy_markup_wrapper .gfield_checkbox li {
  width:  50% !important;
  float:  left !important;
  margin:  0 0 2px 0 !important;
}





/* ===== Footer Disclaimer ===== */

#footer-widgets {
  background-repeat: no-repeat;
  background: transparent;
  padding: 10px 0 5px 0;
  margin: 0 0 0px 0;
}

.footer-disclaimer em {
  font-size: 11px;
  line-height: 14px !important;
  display: block;
  margin-bottom: 30px;
}



/* ====== New Testimonials Slider ===== */


.testimonials.box-slider {
  padding: 100px 0 150px;
  position: relative;
}

.testimonials.box-slider:before {
  background: url("../../images/bg-waves-testimonial.png") center center / contain no-repeat;
  background-size: cover !important;
  background-position: left center !important;
  width: 70%;
  height: 70%;
  content: "";
  display: block;
  right: 0;
  top: 1%;
  position: absolute;
  transition: 0.3s;
}
.testimonials .testimonial-img {
  background-size: 70% !important;
  width: 96px;
  height: 96px;
  background-color: rgba(255,255,255,0.1) !important;
  border-radius: 100%;
  margin: 0 auto 25px;
}

.testimonials.box-slider i.fa-linkedin {
  background-color: #04c3de;
  color: #061235;
  border-radius: 1px;
  padding: 1px 3px;
  font-size: 12px;
}

.testimonials.box-slider a.linkedin {
  margin-top: 5px;
  font-weight: 600;
  color: #04c3de;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.testimonials.box-slider a.linkedin:hover {
  opacity: 0.7;
}

.testimonials.box-slider p {
  font-size: 16px !important;
  line-height: 24px !important;
  color: #fff !important;
}

.testimonials.box-slider p.client {
    font-weight: 500 !important;
    margin: 30px 0 0 0;
    color: #fff !important;
}

.testimonials.box-slider h2 {
  padding-bottom: 30px;
}


@media (max-width: 992px) {
  .box-slider .swiper-button-prev {
    background: #582f6c;
    font-size: 7px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    padding-right: 3px;
    color: #fff !important;
    left: -10px !important;
  }

  .box-slider .swiper-button-next {
    background: #582f6c;
    font-size: 7px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    padding-left: 3px;
    color: #fff !important;
    right: -10px !important;
  }
}

@media (max-width: 768px) {
  .testimonials.box-slider h2 {
    padding-bottom: 20px !important;
  }
}

.testimonials.box-slider h3 {
  text-transform: unset;
  letter-spacing: 0;
  color: #fff !important;
  font-weight: 500 !important;
  font-size: 24px !important;
  line-height: 30px !important;
  margin-bottom: 30px !important;
}

.testimonials.box-slider .column-item {
  border-radius: 20px;
  padding: 50px 60px;
  text-align: left;
  background: #59307D;
  background: -webkit-linear-gradient(45deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: -moz-linear-gradient(45deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: linear-gradient(45deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
}

.testimonials.box-slider img.testimonials-rating {
  width: 132px;
  height: auto;
  margin-bottom: 20px;
}


@media (max-width: 768px) {
  .testimonials.box-slider h3 {
    font-size: 21px !important;
    line-height: 27px !important;
  }

  .testimonials.box-slider p {
    font-size: 15px !important;
    line-height: 23px !important;
  }

  .testimonials.box-slider .column-item {
    padding: 30px 35px;
  }
}


@media (min-width: 1200px) {
  .testimonials.box-slider .column-item {
    min-height: 480px;
  }
}




/* ======= Header Location ====== */

span.phone .fa {
  margin-left: 5px;
}


ul.header-location {
  display: inline-block;
  margin: 0px;
}

@media (max-width: 992px) {
  ul.header-location {
    padding: 0;
  }
}

ul.header-location li {
  display: inline-block;
  margin: 0px 15px 0 0;
}


ul.header-location li a {
  color: #000 !important;
  text-decoration: none;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500;
  font-size: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

ul.header-location li .fa {
  color: #35945a !important;
}

ul.header-location li a:hover {
  opacity: 0.7;
}



/* ===== Services Box ====== */


.services {
  padding: 130px 0 150px;
  background-color: #000000;
  background-image: url('../../images/bg-curve.svg') !important;
  background-position: 52% 100.5% !important;
  background-repeat: no-repeat !important;
  background-size: 101% !important;
}

.services .column-item {
  display: inline-block;
  max-width: 49%;
  margin: 0 0 50px 0;
}

.services .column-item .column-content {
  width: 100%;
  padding: 20px 5px 0 5px;
  border-radius: 0px;
  min-height: 180px;
  background-size: 125% !important;
  position: relative;
  -webkit-transition: all 0.35s ease 0s;
  -moz-transition: all 0.35s ease 0s;
  transition: all 0.35s ease 0s;
  pointer-events: all !important;
}

.services .column-item .column-content:hover {
  background-size: 135% !important;
}

.services .column-item .column-content:before {
  content: "";
  position: absolute;
  border-radius: 0px;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
   background: rgb(255,255,255);
  background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.10686281348476889) 63%, rgba(0,0,0,0.20210090872286413) 100%);
  background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.10686281348476889) 63%, rgba(0,0,0,0.20210090872286413) 100%);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.10686281348476889) 63%, rgba(0,0,0,0.20210090872286413) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#000000",GradientType=1); 
}




.services h2,
.services p {
  color: #fff !important;
}




.services .column-item .column-content h3 {
  margin: 20px 0;
  position: absolute;
  bottom: 0;
  text-align: center;
  color: #fff !important;
  left: 0;
  right: 0;
}

.services .column-item .column-content a {
  font-size: 15px;
  font-weight: 500;
  margin-top: 0px;
  padding: 10px 20px;
  border-radius: 0px;
  border: 1px solid #000000;
  color: #000000 !important;
  text-decoration: none;
  display: inline-block !important;
    -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-family: 'Poppins', sans-serif !important;
}


.services .content-right {
  text-align: center;
}


.services .content-right a {
  font-size: 14px !important;
  color: #fff !important;
  border: 0px solid #fff;
  padding: 10px 20px 10px 20px;
  background: #000;
  text-align: center;
  display: inline-block;
  border-radius: 0px;
  position: relative;
  z-index: 99;
  pointer-events: all;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 20px 0px 10px 0;
  text-decoration: none;
}



.services .column-item .column-content a:hover {
  opacity: 0.7;
}


@media (min-width: 992px) {

  .services .column-item .column-content { 
    min-height: 250px;
  }

  .services .column-item .column-content {
    max-width: 90%;
  }  

}



@media (max-width: 992px) {
  .services .content-left h2 {
    font-size: 21px !important;
    line-height: 30px !important;
    display: inline-block;
  }

  .services .col-md-5 h3 {
    line-height: 30px !important;
    margin-top: 0px;
  }  

  .services .column-item {
    margin: 0 0 10px 0 !important;
  }

  .services .column-item .column-content {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .services .content-right {
    order: 1;
    margin-bottom: 40px;
  }

  .services .content-left {
    order: 2;
  }

  .services {
    padding: 80px 20px;
    background-position: 52% 100.1% !important;
    background-size: 101.5% !important;
  }

  .services .column-item {
    padding: 0 5px 0 5px;
    position: relative;
  }

  .services .content-left {
    min-height: 430px;
  }

}


@media (max-width: 540px) {

  .services .column-item .column-content {
    position: relative;
    padding: 0 0 0 30%;
  }

  .services .column-item {
    position: relative;
    max-width: 49% !important;
  }

  .services .column-item .column-content {
    background-size: 145% !important;
  }

  .services .column-item .column-content:hover {
    background-size: 155% !important;
  }
}







/* ===== Service Columns ====== */


.service-columns {
  margin: 0 auto;
  padding: 80px 0 40px 0;
}

.service-columns h2,
.service-columns p {
  color: #fff !important;
  padding: 0 10px 0 0;
}

.service-columns p {
  font-weight: 400 !important;
}



.service-columns .content-large-background,
.service-columns .content-small-background {
  border-radius: 25px;
  min-height: 250px;
  position: relative;
  background-size: cover !important;
  background-position: top center !important;
}


.service-columns .content-small {
  position: absolute;
    bottom: 50px;
    left: 50px;
    margin: 30px 0 auto 0;
}

@media (max-width: 768px) {
  .service-columns {
    padding: 70px 0 0px 0;
  }
}

@media (min-width: 992px) {

  .service-columns .col-md-6 h2 {
    font-size: 34px !important;
  }

  .service-columns p {
    max-width: 350px;
  }

  .service-columns .content-small-background {
    -ms-flex: 0 0 31.33333333;
    flex: 0 0 31.33333333%;
    max-width: 31.33333333;
    margin-left: 2%;
  }

  .service-columns .col-md-8 {
    padding-left: 0 !important;
  }

  .service-columns .col-md-4 {
    padding-right: 0 !important;
  }

  .service-columns .content-large-background,
  .service-columns .content-small-background {
    min-height: 426px !important;
  }

  .service-columns .content-large-background {
    background-size: cover !important;
    background-position: center center !important;
    background-color: transparent !important;
  }

  .service-columns .content-large {
    position: absolute;
    bottom: 50px;
    left: 50px;
    margin: 30px 0 auto 0;
  }

}


.service-columns a {
  text-decoration: none !important;
}

.service-columns a:hover {
  opacity: 0.7;
}


@media (max-width: 1200px) {
  .service-columns .content-small {
    position: absolute;
    top: 45%;
    left: 40px;
    bottom: unset;
    margin: 0 0 auto 0;
  }
}


@media (max-width: 992px) {

  .service-columns .content-large-background,
  .service-columns .content-small-background {
    background-size: cover !important;
    min-height: 340px !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    position: relative;
  }

  .service-columns .content-small,
  .service-columns .content-large {
    position: absolute;
    top: 40%;
    bottom: unset;
    margin: auto auto;
    left: 30px;
    right: unset;
    max-width: 90%;
  }

  .service-columns .content-large-background:before,
  .service-columns .content-small-background:before {
    border-radius: 25px !important;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 0px;
  }
}



@media (max-width: 768px) {

  .service-columns .content-large-background, 
  .service-columns .content-small-background {
    background-size: cover !important;
    min-height: 280px !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin: 0 0px 30px;
  }
}


@media (max-width: 540px) {
  .service-columns .content-large-background,
  .service-columns .content-small-background {
    min-height: 200px !important;
  }

  .service-columns .container {
    padding: 0 35px;
  }
}

/* ===== Expertise Box ====== */


.expertise-box {
  padding: 100px 0;
  position: relative;
  background-position: right top !important;
  overflow-x: hidden;
}

.expertise-box .first-row {
  margin-bottom: 80px;
}


.expertise-box .cta-btn {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .expertise-box .top-right-side {
    margin-top: 35px;
  }
}

.expertise-box .content-left .column-content {
  position: relative;
  padding: 0 0 0 0px;
}

.expertise-box h2.intro-title {
  margin: 0 auto -20px 0;
  text-align: left;
  display: block;

}


.expertise-box h2.intro-title:after {
  display: none;
}


.expertise-box h2 em {
  margin: 0px auto -10px 0;
  background: #532766;
  padding: 6px 20px;
  color: #e9aaff !important;
  font-size: 15px !important;
  font-style: unset !important;
  border-radius:25px;
}

.expertise-box h2 strong {
  font-weight: unset;
  color: #e9aaff !important;
  padding: 0 12px;
}


.expertise-box .content-left .column-item {
  display: inline-block;
  text-align: left;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 15px 0 7px;
}

.expertise-box .content-left h2 {
  margin-bottom: 30px;
}

.expertise-box .expertise-box-description h3 {
  margin-bottom: 30px !important;
}


.expertise-box .content-left img {
  max-height: 98px;
  width: auto;
  margin: 0 0 20px;
}




.expertise-box .content-right {
  vertical-align: middle;
  text-align: center;
  min-height: 100% !important;
  background-size: cover !important;
  background-position: center center !important;
  border-radius: 25px ;
}

@media (max-width: 768px) {
  .expertise-box h2 em {
    margin: 0px auto 10px 0 !important;
    display: inline-block;
    padding: 3px 20px;
  }

  .expertise-box h2 {
    display: block;
    text-align: left;
  }

}


@media (min-width: 768px) {
  .expertise-box .content-left .column-item {
    vertical-align: top;
  }

  .expertise-box .content-right {
    min-height: 100% !important;
  }
}

@media (min-width: 992px) {
  .expertise-box .col-md-7 {
    padding-right: 0px !important;
  }
}

.expertise-box .content-right img {
  max-width: 150px;
  margin: 0 0 30px 0;
}


.expertise-box .content-left h3 em {
  display: block;
  background: #e6dde5;
  padding: 0px 20px;
  color: #921b83 !important;
  font-size: 15px !important;
  font-style: unset !important;
  border-radius: 25px;
  width: 90px;
  text-align: center;
  margin: 10px 0 20px 0;
}

.expertise-box .content-right h2 {
  margin: 10px 0 20px;
}

.expertise-box .content-right a {
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 0px;
  background: #000000;
  color: #fff !important;
  text-decoration: none;
  display: inline-block !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-family: 'Poppins', sans-serif !important;
  display: inline-block;
}

.expertise-box .content-right a:hover {
  opacity: 0.7;
}


@media (max-width: 992px) {
  .expertise-box .right-side,
  .expertise-box .col-md-5 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

   .expertise-box .offset-md-1 {
    margin-left: 0 !important;
   }

  .expertise-box .content-right {
    min-height: 320px !important;
  }
}


@media (max-width: 768px) {


  .expertise-box { 
    padding: 70px 15px 30px;
  }

  .expertise-box .top-left-side {
    margin-bottom: 10px;
  }

  .expertise-box .first-row {
    margin-bottom: 40px;
  }

  .expertise-box .content-right {
    min-height: 300px !important;
    margin-bottom: 20px;
  }

  .expertise-box .content-right {
    min-height: 300px !important;
  }

  .expertise-box .content-left img {
    max-height: 60px;
    top: 20px;
    position: absolute;
  }

  .expertise-box .content-left .column-content {
    padding-left: 0px;
  }

  .expertise-box .content-left .column-item {
    padding: 25px 0 0;
  }

}


@media (max-width: 540px) {
  .expertise-box .content-right {
    min-height: 240px !important;
    margin-bottom: 30px;
  }
}



/* ======= Tabs Module ========== */


.tabs {
  background-color: transparent;
  padding: 30px 0px 30px 0px;
  margin: 0px 0 0px 0;
}


.tabs .block-description {
  text-align: center  ;
}

@media (min-width: 992px) {
  .tabs .block-description {
    max-width: 80%;
    margin: 0 auto;
  }  
}


.tabs h2.tabs-title {
  text-align: center;
  background: #deebf3;
  padding: 30px 20px;
  border-radius: 15px;
}

.tabs .tabs-button-link {
  text-align: center;
  margin-top: 40px;
} 

.tabs .row.tabs-content-area-row {
  margin: 0 auto;
  display: inline-block;
}

.tabs .col-md-12 {
  padding: 0px !important;
}

.tabs .tabs-content-area {
  text-align: center;
}

.tabs .package-price {
  font-size: 60px !important;
  font-weight: 500 !important;
  margin: 15px 0 0px !important;
}

.tabs .package-usage {
  background: #deebf3;
  color: #3e718d !important;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 400 !important;
  margin-top: 15px;
}

.tabs .package-info {
}

.tabs .package-additional-text {
  font-size: 14px !important;
  line-height: 18px !important;
  margin-top: 15px;
}

.tabs .tabs-content-area-row .col-md-4 {
  position: relative;
  padding: 20px 0;
  margin: 0 auto;
  display: inline-block;
}

@media (min-width: 768px) {
  .tabs .tabs-content-area-row .col-md-4 {
    max-width: 33% !important;
    height: 100%;
    vertical-align: top;
  }

  .tabs .row.tabs-content-area-row {
    height: fit-content;
  }
}
.tabs .content-area {
  margin-left: 15px;
}

.tabs .cta-btn {
  margin: 10px 0 0 0 !important;
}

/*
.tabs .tabs-content-area-row .col-md-4:nth-child(2),
.tabs .tabs-content-area-row .col-md-4:nth-child(3) {
  border-left: 1px solid #b8c7d0;
}
*/

.tabs .tabs-content-area-row .col-md-4:nth-child(2):before,
.tabs .tabs-content-area-row .col-md-4:nth-child(3):before {
  content: "";
  width: 1px;
  height: 260px;
  background: #b8c7d0;
  position: absolute;
  left: 0;
  top: 0;

}



/* Style the tab */
.tab {
  overflow: hidden;
  background-color: transparent;
  text-align: center;
  margin: 10px 0 50px 0;
  padding-top: 20px;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: #fff;
  color: #921b83 !important;
  border-bottom: 0px;
  border-left: 0px;
  border-right: 0px;
  border-top: 0px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  display: inline;
  min-width: 130px;
  position: relative;
  font-size: 14px !important;
  padding: 13px 30px !important;
  border-radius: 25px;
  text-align: center;
  margin: 0 12px 20px 0 !important;
  box-shadow: 0px 3px 10px rgba(18, 56, 96, 0.1);
}

@media (min-width: 768px) {
  .tab button {
    margin: 0 0px 0 0;
    font-size: 21px;
    max-width: 430px;
  }
}


@media (max-width: 992px) {
  .tabs .cta-btn {
    margin: 0 0 30px 0;
  }
}

/* Change background color of buttons on hover */
.tab button:hover {
  color: #fff !important;
  background: #921b83 !important;
  box-shadow: 0px 3px 10px rgba(18, 56, 96, 0.3);
}


@media (max-width: 992px) {
  .tab button {
    font-size: 13px !important;
    line-height: 24px !important;
    margin: 0 5px 10px 0 !important;
    display: inline-block;
  }

  .tabs .row.tabs-content-area-row {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .tabs .tabs-content-area-row .col-md-4:nth-child(2):before,
  .tabs .tabs-content-area-row .col-md-4:nth-child(3):before {
    display: none !important;
  }
  .tabs .tabs-content-area-row .col-md-4:nth-child(2),
  .tabs .tabs-content-area-row .col-md-4:nth-child(3) {
    border-top: 1px solid #b8c7d0;;
  }

  .tabs .tabs-content-area-row .col-md-4 {
    position: relative;
    padding: 30px 0 20px !important;
    margin: 0 auto;
    display: inline-block;
    max-width: 80%;
  }

  .tabs .content-area {
    margin-left: 0px !important;
  }

  .tabs .content-title {
    margin: 0px 0px 0px 0px !important;
  }

  .tabs .content-title.additional-package {
    margin: 50px 0px 0px 0px !important;
  }

  .tabs .cta-btn {
    margin-top: 0px;
  }
}


/* Create an active/current tablink class */
.tab button.active {
  color: #fff !important;
  background: #921b83 !important;
  box-shadow: 0px 3px 10px rgba(18, 56, 96, 0.3);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;

}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 0px 12px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}


.tabcontent h3 {
  margin: 40px 0 20px 0;
  color: #000;
}


.tabcontent h4 {
  font-family: 'Poppins', sans-serif !important;
  color: #adad9e;
  margin: 20px 0 30px 0;
}

.tabcontent .col-md-3 p {
  margin: 0 0 20px 0;
}

.tabcontent .col-md-3,
.tabcontent .col-md-8 {
  display: inline-block !important;
  max-width: 100%;
  text-align: center;
  margin: 0 0 30px 0;
}

.tabcontent .bg-image {
  border-radius: 25px !important;
}

@media (min-width: 992px) {

  .tabcontent .bg-image {
    min-height: 250px !important;
    max-height: 250px !important;
  }

  .tabcontent .col-md-3 {
    margin: 0 0 0 4%;
    max-width: 25%;
    text-align: left;
    vertical-align: middle;
  }

  .tabcontent .col-md-8 {
     max-width: 70%;
     text-align: left;
     vertical-align: top;
  }

}


@media (min-width: 1600px) {

  .tabcontent .col-md-8.bg-image {
    min-height: 640px !important;
  }

}


@media (max-width: 540px) {
  .tabcontent .bg-image {
    min-height: 260px !important;
  }  
}


.tabs .content-body ul {
  display: inline-block;
}

.tabs .content-body ul li {
  display: inline-block;
  padding: 0 20px 0 0;
  max-width: 49%;
  margin: 0 0 30px 0;
  position: relative;
}


.tabs .content-title h2 {
  color: #000000 !important;
}

.tabs .content-title {
  overflow: hidden;
  margin: 0px 0px 35px 17px;
}

.tabs .content-title.additional-package {
  margin: 100px 0px 35px 0px;
}

.tabs .content-title .title-sub {
  background: #4097c1;
  color: #fff !important;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 15px !important;
  font-weight: 400 !important;
  margin: 5px 0 15px 0 !important;
  border: 0px solid #bad6e5;
  min-width: 240px;
}

.tabs .content-title .title-sub span {
  display: block;
  font-size: 13px !important;
  margin: 3px 0 0;
  font-weight: 600;
}

.tabs .content-title h2:before {
  width: 100%;
  background-color: #000000;
  height: 1px;
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  margin-left: 10px;
}

@media (min-width: 992px) {

  .tabs .bg-image {
    margin-top: 25px;
  }

  .tabs .content-body {
    margin-top: 30px;
  }
}

@media (max-width: 1200px) {
  .tabs .content-title h2:before {
    position: relative;
    margin-left: 0px;
  }

  .tabs .bg-image{
    order: 1;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .tabs .content-area {
    order: 2;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .tabs .content-body {
    order: 3;
  }

  .tabs .offset-md-1 {
    margin-left: 0px !important;
  }
}

.tabs .content-body ul {
  padding: 0px;
}

.tabs .content-body ul li strong {
  display: block;
  position: absolute;
  top: 5px;
  padding: 0 0 0 45px;  
  font-size: 18px;
}

.tabs .content-body ul li:before {
  background-image: url('../../images/icn-logo-small.png');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 36px;
  position: relative;
  content: "";
  display: block;
  width: 35px;
  height: 30px;
  margin-bottom: 10px;
}


@media (max-width: 540px) {
  .tabs .container {
    padding: 0 30px;
  }

  .tabs .col-md-12,
  .tabs .col-md-4 {
    padding: 0px !important;
  }

  .tabs button {
    margin: 0px;
  }

}



/* ===== Banner Form ===== */ 

.gform_wrapper.gravity-theme .gsection {
  border-bottom: 3px solid #000000 !important;
  padding: 40px 0px 5px 0 !important;
  margin-bottom: 10px !important;
  text-transform: uppercase !important;
}


.gravity-theme input,
.gravity-theme textarea {
  border-bottom: 1px solid #000000;
  border-radius: 0px;
  border-left: 0;
  border-top: 0;
  border-right: 0;
  background: transparent;
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px;
  font-weight: 400 !important;
  color: #000000 !important;
}


@media (min-width: 992px) {

  .banner-form {
    margin-top: 50px;
  }

  .gravity-theme h2 {
    font-size: 27px;
    margin-bottom: 25px;
    display: block;
  }
}



.gravity-theme input,
.gravity-theme textarea,
.gravity-theme select {
  background: transparent;
  border: 1px solid #000000;
  border-radius: 15px;
  padding: 13px 20px !important;
}

@media (max-width: 768px) {
  .gravity-theme {
    margin-top: 30px !important;
  }
}



.gform_wrapper.gravity-theme .gform_validation_errors > h2 {
  padding: 0 0 0 50px !important;
  font-size: 16px !important;
}

.gform_wrapper.gravity-theme .gform_validation_errors {
  padding: 20px !important;
}

.gform_wrapper.gravity-theme .gfield_description {
  font-size: 12px !important;
  padding: 5px 10px !important;
}







/* ===== Container Padding for Mobile ===== */


@media (max-width: 540px) {
  .text .container,
  .faq .container,
  .contact .container {
    padding: 0 30px;
  }

}







/* ===== Text Image Customisations ====== */


.text-image h2 {
  margin-bottom: 15px;
}

.text-image .text-slider-single .swiper-wrapper .swiper-slide .swiper-image {
  background-size: cover !important;
  background-position: 50% 50% !important;
}


@media (min-width: 768px) {
  .text-image .left .text-slider-single .swiper-wrapper .swiper-slide .swiper-image {
    background-position: -10% 50% !important;
  }

  .text-image .right .text-slider-single .swiper-wrapper .swiper-slide .swiper-image {
    background-position: 110% 50% !important;
  }

  .text-image .text-slider-single .swiper-wrapper .swiper-slide .swiper-image {
    min-height: 500px;
  }
}




@media (min-width: 992px) {
  .text-image .left .text-slider-single .swiper-wrapper .swiper-slide .swiper-image {
    background-position: -15% 50% !important;
  }

  .text-image .right .text-slider-single .swiper-wrapper .swiper-slide .swiper-image {
    background-position: 120% 50% !important;
  }

  .text-image-wrap.right,
  .text-content-wrap.right {
    background: #fafafa !important;
  }

}


@media (min-width: 1400px) {

  .text-image .left .text-slider-single .swiper-wrapper .swiper-slide .swiper-image {
    background-position: -30% 50% !important;
  }

  .text-image .right .text-slider-single .swiper-wrapper .swiper-slide .swiper-image {
    background-position: 120% 50% !important;
  }

  .text-image .text-flex.right .text-content {
    padding-left: 10%;
  }

  .text-image .text-slider-single .swiper-wrapper .swiper-slide .swiper-image {
    min-height: 700px;
  }
}



@media (min-width: 1600px) {
  .text-image .text-flex.left .text-content {
    padding-right: 10%;
  }

  .text-image .text-flex.right .text-content {
    padding-left: 10%;
  }

}




/* ===== Page hero Customisations ==== */

.page-hero,
.hero .hero-banner .swiper-wrapper .swiper-slide {
  height: 70vh;
  min-height: 600px;
}

.page-hero.video-hero {
  height: 75vh !important;
  min-height: 700px !important;
}


@media (min-width: 992px) {
  .page-hero,
  .hero .hero-banner .swiper-wrapper .swiper-slide {
    height: 80vh;
    min-height: 900px;
  }

  .page-hero.video-hero {
    height: 75vh !important;
    min-height: 900px !important;
  }
}

@media (min-width: 1800px) {
  .page-hero,
  .hero .hero-banner .swiper-wrapper .swiper-slide {
    height: 75vh;
    min-height: 900px;
  }

  .page-hero.video-hero {
    height: 75vh !important;
    min-height: 1000px !important;
  }
}

.page-hero.video-hero {
  overflow: hidden;
}

.hero .hero-banner .swiper-wrapper .swiper-slide {
  background-position: 50% 30% !important;
}

@media (max-width: 540px) {
  .page-hero.video-hero,
  .hero .hero-banner .swiper-wrapper .swiper-slide {
    max-height: 600px !important
  }

  .video-placeholder {
    background-size: cover !important;
  }
}

/* .page-hero.video-hero .overlay {
  background: rgba(0,0,0,0.4) !important;
} */



.page-hero.video-hero .container {
  position: absolute;
}

.page-hero.video-hero  .video-wrap {
  width: 100%;
  height: 100%;
}

.page-hero.video-hero .video-wrap video {
  width: 100%;
}

@media (max-width: 1400px) {
  .page-hero.video-hero .video-wrap video {
    width: auto;
    height: 110%;
  }
}

@media (max-width: 992px) {
  .page-hero .page-hero-image {
    min-height: 440px !important;
  }

  .page-hero.video-hero .video-wrap video {
    width: auto;
    height: 125%;
    margin-left: -50px !important;
  }

  .page-hero .overlay {
    width: 110%;
  }

  .page-hero .overlay {
      margin-left: -5px !important;
  }
}

@media (max-width: 768px) {

  .page-hero.video-hero .video-wrap video {
    width: auto;
    height: 125%;
    margin-left: -180px !important;
  }

  .page-hero.video-hero .video-wrap video {
    margin-left: -120px !important;
  }

  .page-hero {
    height: fit-content !important;
    padding-bottom: 40px !important;
  }

  .page-hero .page-hero-image {
    min-height: 380px !important;
  }

  .page-hero .banner-content {
    order: 2;
    margin: 40px 0 0 0 !important;
  }

  .page-hero .page-hero-image {
    order: 1;
    margin: unset !important
  }

}

@media (max-width: 540px) {
  .page-hero .page-hero-image {
    min-height: 300px !important;
  }

  .page-hero.video-hero .video-wrap video {
    width: auto;
    height: 125%;
    margin-left: -230px !important;
  }
}






/* ===== Heading Icon - H1 & H2 ===== */


.service-columns h2,
.cta h2 {
  position: relative;
  padding: 0 10px 0 0;
  display: block;
}

.page-hero h1 {
  position: relative;
  display: block;
}




/* ===== Team Module ====== */


.team {
  position: relative;
  padding: 80px 0;
}

.team.reduced {
  position: relative;
  padding: 80px 0;
}


@media (min-width: 992px) {
.team.reduced:before {
    background: url(../../images/bg-swirls-1.png) center center no-repeat !important;
    background-size: contain !important;
    background-position: center center !important;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 450px !important;
    height: 100%;
    display: block;
  }
}

.home .team.reduced {
  padding: 80px 0 40px;
}


.team .column-bg {
  position: relative;
}

@media (min-width: 1700px) {
  .team.reduced .col-md-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
  }
}


.team.reduced .team-section {
  margin-top: 0px !important
}

.team .team-section {
  margin-top: 30px;
}

.team.reduced .block-description {
  margin-top: 25px;
}

.team .member-profile {
  min-height: 230px !important;
  border-radius: 25px !important;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}


.team.reduced .content h4,
.team.reduced .content p {
  padding: 0 0 0 15px;
}


@media (min-width: 1800px) {
  .team .member-profile {
    min-height: 260px !important;
    border-radius: 25px !important;
  }
}

@media (max-width: 768px) {
  .team {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .team.reduced .team-section {
    margin-top: 40px !important;
  }

  .team.reduced .col-md-4 {
    flex: 0 0 50% !important;
    max-width: 50% !important; 
  }

  .team .content {
    margin: 10px 0 0 0;
  }

  .team.reduced .content h4, .team.reduced .content p {
    padding: 0 0 0 0;
  }

  .team.full-profile .col-md-4 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .team .content {
    text-align: left !important;
  }
}


@media (max-width: 540px) {
  .team h2 {
    text-align: left !important;
  }

  .team.reduced .member-profile {
    min-height: 180px !important;
  }

  .team.full-profile .col-md-4 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }  

  .team.full-profile .member-profile {
    max-width: 100% !important;
    min-height: 230px !important;
    background-position: top center !important;
  }
}

.team #moreText {
  display:  none;
}


.team .content {
  text-align: center;
  margin: 10px 0 40px;
}

@media (min-width: 768px) {

  .team {
    margin-top: 0px;
  }

  .team .content {
    text-align: left;
    margin: 10px 0 40px;
  }  

}


@media (min-width: 992px) {
  .team .column-bg:after {
    display: block;
  }

}

.team .read-more {
  color: #000000 !important;
  display: block;
  margin-top: 20px;
  position: relative;
  font-weight: 400;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease-in-out 0.2s;
  border: none;
  border-radius: none;
  padding: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 14px;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
  z-index: 1;
}

.team .read-more:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #000000;
  position: relative;
  margin: 0;
  background-position: center right;
  display: inline-block;
  top: -4px;
  left: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.team .read-more:hover:after {
  right: -54px !important;
}

.team .read-more:hover,
.team .read-more:active {
  color: #000000;
}

.team .read-more:before {
  width: 100%;
  content: "";
  height: 50px;
  display: inline-block;
  position: absolute;
  z-index: -1;
  top: -40px;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
  background: linear-gradient(0deg, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}


@media (min-width: 768px) {
  .team .read-more:before {
      height: 50px;
      top: -45px;
  }
}

@media (min-width: 992px) {
  .team .read-more:before {
      height: 50px;
      top: -40px;
  }
}

@media (min-width: 1800px) {
  .team .read-more:before {
      height: 50px;
      top: -50px;
  }
}

.team .content-inner {
  max-height: 435px;
  overflow: hidden;
  transition: all 0.2s ease-in-out 0.2s;
}



.team p.member-title { 
  font-size: 17px !important;
  color: #036e9f !important;
  font-weight: 500 !important;
}

@media (max-width: 1800px) {
  .team.full-profile .member-profile {
    max-width: 90%;
  }
}

@media (max-width: 992px) {
  .team .content-inner {
    max-height: 390px;
  }

  .team p.member-title {
    min-height: 25px;
  }
}

@media (max-width: 540px) {
  .team .content-inner {
    max-height: 390px;
  }

  .team p.member-title {
    min-height: 25px;
  }

  .team .read-more {
    margin-left: 20px;
  }
}


@media (min-width: 1200px) {
  .team .content-inner {
    max-height: 435px;
  }
}

@media (min-width: 1800px) {
  .team .content-inner {
    max-height: 475px;
  }
}

.team .content-full {
  padding: 10px 0 20px;
}

.team .content-full a {
  color: #1855b5;
}


@media (min-width: 1700px) {
  .team .content-full {
    padding: 10px 15px 10px 0;
  }
}


.team .content-full h4 {
  color: #35945a;
  font-size: 21px !important;
  margin-top: 30px;
  font-weight: 500 !important;
}

@media (min-width: 992px) {
  .team .content-full h4,
  .team.reduced .content h4 {
    font-size: 24px !important;
  }
}

.team .content-full h5 {
  display: block;
  margin-top: 0px;
  font-size: 15px;
  font-weight: 600;
  color: #8bc53f;
}

.team .content-full p {
  font-size: 14px !important;
  padding: 0 0 0px 0;
}

.team .content-full p strong {
  margin-bottom: -10px !important;
}


@media (max-width: 540px) {
  .team .content-full {
    padding: 0 20px 20px 20px;
  }

}


.team .fa-linkedin:before {
  color: #fff;
  background: #bfbfbf;
  padding: 7px 9px 7px;
  border-radius: 3px;
  margin: 15px 0 10px 0;
  display: inline-block;
}

.team img.member-profile {
  max-height: 250px;
  border-radius: 25px;
}






@media (min-width: 768px) {
  .team .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }  
}


@media (min-width: 992px) {
  .team .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }  

  .team p.member-title {
    font-size: 15px !important;
    min-height: 30px;
  }
}


@media (min-width: 1140px) {
  .team.full-profile .col-md-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }  
}

.team .content-full p strong {
  font-weight: 500 !important;
  margin-top: 20px !important;
  display: block;
}

.team .content-full ul {
  padding: 0 0 0px 15px !important;
}

.team .content-full ul li {
  font-size: 14px;
  list-style: none;
  position: relative;
  padding: 0 0 0px 10px;
  margin-bottom: 5px;
}

.team .content-full ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\2014";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 16px;
  color: #dee12c;
  margin: 2px 0 0 -15px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 1;
  padding: 0 10px 0 0;
  font-weight: 400 !important;
}


/* ==== Module Background Colours ===== */

.extra-padding {
  padding-top: 100px !important;
}

.extra-padding-bottom {
  padding-bottom: 100px !important;
}

@media (max-width: 768px) {
  .extra-padding {
    padding-top: 50px !important;
  }

  .extra-padding-bottom {
    padding-bottom: 50px !important;
  }
}

.solid-blue {
  background: #e8f2f7;
}

.solid-white {
  background: #fff;
}

.white-blue {
  background: rgb(238,245,249);
  background: -moz-linear-gradient(0deg, rgba(238,245,249,1) 0%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(238,245,249,1) 0%, rgba(255,255,255,1) 100%);
  background: linear-gradient(0deg, rgba(238,245,249,1) 0%, rgba(255,255,255,1) 100%);
}

.blue-white {
  background: rgb(238,245,249);
  background: -moz-linear-gradient(180deg, rgba(238,245,249,1) 0%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(238,245,249,1) 0%, rgba(255,255,255,1) 100%);
  background: linear-gradient(180deg, rgba(238,245,249,1) 0%, rgba(255,255,255,1) 100%);
}




/* ==== Image Content Block Module  ===== */

.image-content-block {
  padding: 20px 0;
  overflow: hidden;
}

.image-content-block p strong {
  font-weight: 500 !important;
}

.image-content-block h2 {
  margin-bottom: 25px !important;
}

.image-content-block h2 em {
  display: block;
  font-size: 21px !important;
  font-style: normal;
  color: #000;
  font-weight: 300 !important;
  margin-top: 0;
}

.image-content-block blockquote {
  background: #deebf3;
  color: #3e718d !important;
  display: block;
  padding: 15px 25px 0px 25px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 400 !important;
  margin-top: 15px;
}

.image-content-block blockquote p {
  padding: 0 0 15px 0;
}


.image-content-block h3 {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
  position: relative;
}


.image-content-block h3:before {
  content: "";
  position: relative;
  display: block;
  width: 290px;
  height: 1px;
  background: #921b83;
  margin: 0px 0 30px;

}



.image-content-block h4 {
  color: #01562d;
  font-weight: 400 !important;
}

@media (min-width: 992px) {
  .image-content-block .right.content {
    margin: 0 0 0 auto !important;
  }
}

.image-content-block .image {
  background-size: cover !important;
  min-height: 600px !important;
  max-height: 800px !important;
}

.image-content-block.full-width-image .image {
  border-radius: 25px !important;
}

.image-content-block .image {
  border-radius: 25px;
  background-position: 50% 10% !important;
}

.image-content-block .right.image {
  border-radius: 25px;
}

.image-content-block .left.image {
  border-radius: 25px;
}



.image-content-block p {
  padding: 0 0 5px 0;
}


.image-content-block.two-images .column-right {
  padding: 0px 0 50px;
  margin: 0 auto !important;
}


.image-content-block .content {
  position: relative;
  margin: auto auto !important;
  padding: 0px 0;
}

}

.image-content-block .right.content,
.image-content-block .column-right.content {
  margin: auto 0 auto auto !important;
}

.image-content-block.full-width-image .column-right.content {
  margin: 0 0 auto auto !important;
}

@media (max-width: 768px) {
  .image-content-block.full-width-image .column-right.content {
    margin-bottom: 30px !important;
  }
}

.image-content-block.two-images .column-left {
  margin: 0 auto 0 0 !important;
  position: relative;
}


.image-content-block.full-width-image .image,
.image-content-block.two-images .image {
  margin-bottom: 70px;
  background-position: center top !important;
}

.image-content-block.two-images .image { 
  min-height: 400px !important;
}

.image-content-block.full-width-image .image { 
  min-height: 490px !important;
}


.image-content-block .slider-section {
  overflow: hidden !important;
}



.image-content-block .text-slider-single {
  overflow: hidden;
  border-radius: 25px !important;
  position: relative;
}


.image-content-block .swiper-button-next, 
.image-content-block .swiper-button-prev {
  color: #fff !important;
  background: rgba(0,0,0,0.3);
  height: 50px;
  width: 50px;
  margin: 0 -10px;
  top: var(--swiper-navigation-top-offset,45%) !important;
}

.image-content-block .swiper-button-prev:after, 
.image-content-block .swiper-button-next:after {
  font-size: 1.4em !important;
}

.image-content-block .slider-section {
  padding-left: 0 !important;
  padding-right: 0 !important;
}


.image-content-block.full-width-image .image:before {
  content: "";
  position: absolute;
  border-radius: 25px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background: rgb(26,61,89);
  background: -moz-linear-gradient(90deg, rgba(26,61,89,1) 20%, rgba(26,61,89,0) 90%);
  background: -webkit-linear-gradient(90deg, rgba(26,61,89,1) 20%, rgba(26,61,89,0) 90%);
  background: linear-gradient(90deg, rgba(26,61,89,1) 20%, rgba(26,61,89,0) 90%);
}

@media (max-width: 768px) {
  .image-content-block.full-width-image .image:before {
    background: rgb(26,61,89);
    background: -moz-linear-gradient(180deg, rgba(26,61,89,0.9) 50%, rgba(26,61,89,0.4) 90%);  
    background: -webkit-linear-gradient(180deg, rgba(26,61,89,0.9) 50%, rgba(26,61,89,0.4) 90%);  
    background: linear-gradient(180deg, rgba(26,61,89,0.9) 50%, rgba(26,61,89,0.4) 90%);  
  }
}

.image-content-block.full-width-image .image {
  position: relative;
}




.image-content-block.full-width-image .image .banner-info h2,
.image-content-block.full-width-image .image .banner-info h3,
.image-content-block.full-width-image .image .banner-info p {
  color: #fff !important;
}

.image-content-block .cta-btn:hover,
.image-content-block .cta-btn:active,
.image-content-block .cta-btn:focus {
  background: #fff !important;
  color: #921b83 !important;
  box-shadow: 0px 0px 8px rgba(146,27,131,0.3);
  text-decoration: none !important;
  opacity: 1 !important;
}

.image-content-block .cta-btn.outline:hover,
.image-content-block .cta-btn.outline:active,
.image-content-block .cta-btn.outline:focus {
  color: #fff !important;
  border: 1px solid #86a5b1 !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

.image-content-block a:hover {
  text-decoration: none !important;
  opacity: 1 !important;
}

.image-content-block.full-width-image .image .banner-info h2 {
  margin-bottom: 30px !important;
}

.image-content-block.full-width-image .image .banner-info {
  position: absolute;
  min-height: 300px;
  padding: 80px 30px 0 30px;
  min-height: 300px;
}

@media (min-width: 992px) {
  .image-content-block.full-width-image .image .banner-info {
    position: absolute;
    min-height: 300px;
    padding: 150px 0px 0 90px;
    min-height: 300px;
  }  
}

.image-content-block.full-width-image .column-right.content {

  margin-top: 0px;

}

.image-content-block.full-width-image .image .banner-info h3 {
  font-size: 18px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
}


.image-content-block .slider-section .swiper-image {
  border-radius: 15px !important;
}

@media (min-width: 1240px) {
  .image-content-block.full-width-image .image .banner-info {
    max-width: 50%;
  }

  .image-content-block.full-width-image .image .banner-info h3 {
    font-size: 21px !important;
    line-height: 27px !important;
    font-weight: 400 !important;
  }
}

.image-content-block .slider-section .swiper-image {
  background-size: cover !important;
}

@media (max-width: 992px) {
  .image-content-block .slider-section .swiper-image {
    min-height: 400px !important;
    max-height: 400px !important;
  }

}

@media (max-width: 768px) {
  .image-content-block .slider-section .swiper-image {
    min-height: 300px !important;
    max-height: 300px !important;
  }


  .image-content-block.full-width-image .image .banner-info {
    position: relative;
    padding: 80px 30px 40px 30px;
  }
}

@media (max-width: 540px) {

  .image-content-block.full-width-image .image .banner-info {
    position: relative;
    padding: 100px 10px 80px 10px;
  }

  .image-content-block .slider-section .swiper-image {
    min-height: 270px !important;
    max-height: 270px !important;
  }

  .image-content-block .swiper-button-next, 
  .image-content-block .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,43%) !important;
  }

  .image-content-block.full-width-image .image {
    min-height: 400px !important;
  }
}




@media (min-width: 992px) {
  .image-content-block .slider-section .swiper-image {
    min-height: 560px !important;
    max-height: 560px !important;
  }

}



@media (max-width: 992px) {
  .image-content-block .image,
  .image-content-block.two-images .image,
  .image-content-block.full-width-image .image {
    min-height: 400px !important;
  }  
}


@media (max-width: 768px) {
  .image-content-block .image,
  .image-content-block.two-images .image,
  .image-content-block.full-width-image .image {
    min-height: 370px !important;
    margin-bottom: 40px !important;
  }  

  .image-content-block .image {
    order: 1 !important;
  }

  .image-content-block .content,
  .image-content-block .column-left {
    order: 2 !important;
    padding: 0 0px !important; 
  }

  .image-content-block {
    padding: 40px 30px 40px 30px;
  }
}

@media (max-width: 540px) {
  .image-content-block .image,
  .image-content-block.two-images .image,
  .image-content-block.full-width-image .image {
    min-height: 300px !important;
  }  
}


@media (min-width: 768px) {
  .image-content-block.two-images .column-left {
    padding-left: 0px !important;
  }

  .image-content-block.two-images .column-right {
    padding-right: 0px !important;
  }
}


@media (min-width: 992px) {

  .image-content-block.one-image-right,
  .image-content-block.one-image-left {
    position: relative;
  }
}


/* ===== Image Content Block Read More ====== */


.image-content-block .content a {
  color: #000000;
  text-decoration: none !important;
  opacity: 1 !important;
}



.image-content-block .content-inner {
  max-height: 0px;
  transition: all 0.2s ease-in-out 0.2s;
  overflow: hidden;
}

.image-content-block .title-spacing .content-inner {
  max-height: 98px;
}

.image-content-block .additional-content.hide-more .content-inner {
  max-height: 100% !important;
}

.image-content-block .additional-content.hide-more .read-more {
  display: none !important;
}

.image-content-block .additional-content.hide-more {
  padding-bottom: 0px !important;
}

.image-content-block .additional-content {
  padding: 0px 0 20px !important;
}



.image-content-block .additional-content h3 {
 color: #000 !important;
 padding-bottom: 5px;
 padding-top: 20px !important;
}


@media (max-width: 992px) {
  .image-content-block .content-inner {
    max-height: 0px;
  }

  .image-content-block .title-spacing .content-inner {
    max-height: 111px;
  }
}

.image-content-block .read-more {
  color: #000000 !important;
  display: inline-block;
  margin-top: 20px;
  position: relative;
  font-weight: 400;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease-in-out 0.2s;
  border: none;
  border-radius: none;
  padding: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 14px;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
}

.image-content-block .read-more:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #000000;
  position: absolute;
  margin: 0;
  background-position: center right;
  display: inline-block;
  top: 10px;
  right: -44px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.image-content-block .read-more:hover:after {
  right: -54px !important;
}

.image-content-block  .read-more:hover,
.image-content-block  .read-more:active {
  color: #000000;
}



/* ===== Custom Bullets ===== */


.image-content-block ul {
  padding-left: 0px;
  list-style: none;
}

.image-content-block ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 4px;
  list-style: none;
  background: url('../../images/icn-tick.png') no-repeat left 4px;
  background-size: 20px;
  background-position: 0 20px;
  border-bottom: 1px solid #921b83;
  padding: 15px 0 15px 30px;
  margin: 0 0 0 0;
}


#service-quick-links.image-content-block ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 4px;
  list-style: none;
  background: none;
  background-position: 0 20px !important;
  border-bottom: 1px solid #921b83;
  padding: 16px 0 15px 0px;
  margin: 0 0 0 0;
}

#service-quick-links.image-content-block ul li a {
  font-weight: 500 !important;
  position: relative;
  padding-left: 15px;
  margin-bottom: 4px;
  list-style: none;
  background: url('../../images/icn-arrow.png') no-repeat left 4px !important;
  background-size: 18px !important;
  background-position: 0 24px !important;
  padding: 16px 0 15px 40px;
  margin: 0 0 0 0;
}

#service-quick-links.image-content-block ul li a:hover {
  padding-left: 50px;
  color: #921b83 !important;
}

@media (min-width: 768px) {
  #service-quick-links.image-content-block .column-right {
    margin-top: 60px !important;
  }
}

@media (min-width: 992px) {
  #service-quick-links.image-content-block .column-right {
    margin-top: 105px !important;
  }
}



.image-content-block.one-image-left ul,
.image-content-block.one-image-right ul {
  background: #fef9ff !important;
  border-radius: 12px !important;
  padding: 10px 30px !important;
}

.image-content-block.one-image-left ul li,
.image-content-block.one-image-right ul li {
  border-bottom: 1px solid #f0e3f2 !important;
  padding: 10px 0 10px 30px !important;
  background-size: 16px !important;
  background-position: 0 15px !important;
}



.image-content-block ul li:last-child {
  border-bottom: 0px !important;
}

/* ==== Menu Customisations ===== */


@media (max-width: 992px) {
  .navbar .d-flex .menu-item a,
  .navbar .mobile-menu .d-flex {
    background: transparent !important;
  }

  .navbar .mobile-menu {
  background: rgb(255,255,255);
  background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(243,243,243,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(243,243,243,1) 100%);
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(243,243,243,1) 100%);
  }

  .navbar .mobile-menu .d-flex li a {
    border-bottom: 1px solid rgba(218, 157, 210, 0.3);
  }

  .navbar .mobile-menu .d-flex li:last-child a {
    border-bottom: none !important;
  }

  .navbar .mobile-menu .header-social {
    margin: 10px 0 0 39px !important;
  }

  .navbar .mobile-menu .header-social p {
    font-weight: 500 !important;
    color: #921b83 !important;
  }

  .navbar .mobile-menu .d-flex li.menu-item-has-children .dropdown-menu {
    margin-top: -1px;
    box-shadow: none !important;
  }
}


/* ==== Header Customisations ===== */




.header.type2.is-fixed ul#menu-main-menu,
.header.type2.is-fixed .navbar .header-cta {
  margin-top: 0px;
}


#header-block ul.header-social,
#header-block ul.header-social li {
  display: inline;
  list-style: none;
}

@media (max-width: 1240px) {
  .header-cta {
    padding: 14px 20px;
  }
}

#header-block ul.header-social {
  padding-left: 20px;
}


#header-block img {
  max-height: 18px;
  width: auto;
  margin: -2px 5px 0 0;
  display: inline-block;
}

#header-block .right-side img {
  max-height: 10px;
}

#header-block .col-lg-6.left-side {
  text-align: left;
}

#header-block .col-lg-6.right-side {
  text-align: right;
}

.header .fa-phone:before {
  color: #921b83;
  margin: 7px 0 0 8px;
  display: block;
}


@media (max-width: 992px) {
  .header .fa-phone:before {
    color: #921b83;
    margin: 7px 0 0 8px;
    display: block;
  }

  #header-block .phone {
    display: none;
  }
}



@media (max-width: 992px) {

  #header-block .col-lg-6.left-side,
  #header-block .col-lg-6.right-side {
    text-align: center;
  }

  #header-block {
    margin: 0px 0 0px 0;
  }

}


@media (max-width: 540px) {
  .header .fa-phone {
    width: 25px;
    height: 25px;
  }

  .header .fa-phone::before {
    margin: 7px 0 0 12px;
  }
}


/* ===== Hero Banner Customisations ==== */

.hero-banner {
  padding: 30px 0 0px 0;
  position: relative;
  background: rgb(225,241,244);
  background: -moz-linear-gradient(180deg, rgba(225,241,244,1) 0%, rgba(242,247,247,1) 50%, rgba(249,247,243,1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(225,241,244,1) 0%, rgba(242,247,247,1) 50%, rgba(249,247,243,1) 100%);
  background: linear-gradient(180deg, rgba(225,241,244,1) 0%, rgba(242,247,247,1) 50%, rgba(249,247,243,1) 100%);
}


.hero-banner .overlay-curve {
  background-image: url('../../images/bg-curve-banner.svg') !important;
  background-position: 52% 100.5% !important;
  background-repeat: no-repeat !important;
  z-index: 3;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 101%;
}

@media (max-width: 540px) {
  .hero-banner .overlay-curve {
    background-position: 52% 100.1% !important;
    background-size: 110% !important;

  }
}

.hero-banner .overlay-top {
content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: rgb(232,242,247) !important;
  background: -moz-linear-gradient(180deg, rgba(232,242,247,1) 0%, rgba(236,244,248,1) 10%, rgba(237,245,249,0) 30%, rgba(255,255,255,0) 100%) !important;
  background: -webkit-linear-gradient(180deg, rgba(232,242,247,1) 0%, rgba(236,244,248,1) 10%, rgba(237,245,249,0) 30%, rgba(255,255,255,0) 100%) !important;
  background: linear-gradient(180deg, rgba(232,242,247,1) 0%, rgba(236,244,248,1) 10%, rgba(237,245,249,0) 30%, rgba(255,255,255,0) 100%) !important;
}

@media (max-width: 540px) {
  .hero-banner .overlay-top {
    background: rgb(232,242,247) !important;
    background: -moz-linear-gradient(180deg, rgba(232,242,247,1) 15%, rgba(236,244,248,0.5) 25%, rgba(237,245,249,0) 50%, rgba(255,255,255,0) 100%) !important;
    background: -webkit-linear-gradient(180deg, rgba(232,242,247,1) 15%, rgba(236,244,248,0.5) 25%, rgba(237,245,249,0) 50%, rgba(255,255,255,0) 100%) !important;
    background: linear-gradient(180deg, rgba(232,242,247,1) 15%, rgba(236,244,248,0.5) 25%, rgba(237,245,249,0) 50%, rgba(255,255,255,0) 100%) !important;
  }

}

.hero-banner .overlay-top-mobile {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: rgb(232,242,247) !important;
  background: -moz-linear-gradient(90deg, rgb(232, 242, 247) 0%, rgb(236, 244, 248) 30%, rgba(237,245,249,0.5) 80%, rgba(237,245,249,0) 100%) !important;
  background: -webkit-linear-gradient(90deg, rgb(232, 242, 247) 0%, rgb(236, 244, 248) 30%, rgba(237,245,249,0.5) 80%, rgba(237,245,249,0) 100%) !important;
  background: linear-gradient(90deg, rgb(232, 242, 247) 0%, rgb(236, 244, 248) 30%, rgba(237,245,249,0.5) 80%, rgba(237,245,249,0) 100%) !important;
}

@media (min-width: 768px) {
  .hero-banner .overlay-top-mobile {
    display: none !important;
  }
}



.hero h1,
.page-hero h1 {
  position: relative;
}




@media (max-width: 768px) {
  .hero .hero-banner .swiper-wrapper .swiper-slide {
    background-position: 70% 50% !important;
  }
}


/* ===== Page Hero Customisations ===== */



.page-hero {
  padding: 100px 0 80px 0;
  position: relative;
  background: #e8f2f7;
}


.page-hero .overlay-top {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #59307D;
  background: -webkit-linear-gradient(90deg, rgba(89, 48, 125, 1) 20%, rgba(136, 51, 136, 0.8) 55%, rgba(0, 0, 0, 0) 85%);
  background: -moz-linear-gradient(90deg, rgba(89, 48, 125, 1) 20%, rgba(136, 51, 136, 0.8) 55%, rgba(0, 0, 0, 0) 85%);
  background: linear-gradient(90deg, rgba(89, 48, 125, 1) 20%, rgba(136, 51, 136, 0.8) 55%, rgba(0, 0, 0, 0) 85%);
}


.page-hero.video-hero .overlay-top {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #59307D;
  background: -webkit-linear-gradient(90deg, rgba(89, 48, 125, 1) 20%, rgba(136, 51, 136, 0.8) 55%, rgba(0, 0, 0, 0) 85%);
  background: -moz-linear-gradient(90deg, rgba(89, 48, 125, 1) 20%, rgba(136, 51, 136, 0.8) 55%, rgba(0, 0, 0, 0) 85%);
  background: linear-gradient(90deg, rgba(89, 48, 125, 1) 20%, rgba(136, 51, 136, 0.8) 55%, rgba(0, 0, 0, 0) 85%);
}

@media (max-width: 768px) {
  .page-hero .overlay-top {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #59307D;
    background: -webkit-linear-gradient(0deg, rgba(89, 48, 125, 1) 46%, rgba(189, 55, 148, 1) 65%, rgba(136, 51, 136, 0.3) 100%);
    background: -moz-linear-gradient(0deg, rgba(89, 48, 125, 1) 46%, rgba(136, 51, 136, 0.8) 65%, rgba(136, 51, 136, 0.3) 100%);
    background: linear-gradient(0deg, rgba(89, 48, 125, 1) 46%, rgba(136, 51, 136, 0.8) 65%, rgba(136, 51, 136, 0.3) 100%);
  }


  .page-hero.video-hero .overlay-top {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #59307D;
    background: -webkit-linear-gradient(0deg, rgba(89, 48, 125, 1) 46%, rgba(136, 51, 136, 0.8) 65%, rgba(136, 51, 136, 0.3) 100%);
    background: -moz-linear-gradient(0deg, rgba(89, 48, 125, 1) 46%, rgba(136, 51, 136, 0.8) 65%, rgba(136, 51, 136, 0.3) 100%);
    background: linear-gradient(0deg, rgba(89, 48, 125, 1) 46%, rgba(136, 51, 136, 0.8) 65%, rgba(136, 51, 136, 0.3) 100%);
  }
}


@media (max-width: 410px) {
  .page-hero .overlay-top {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #59307D;
    background: -webkit-linear-gradient(0deg, rgba(89, 48, 125, 1) 55%, rgba(136, 51, 136, 0.8) 65%, rgba(136, 51, 136, 0.3) 100%);
    background: -moz-linear-gradient(0deg, rgba(89, 48, 125, 1) 55%, rgba(136, 51, 136, 0.8) 65%, rgba(136, 51, 136, 0.3) 100%);
    background: linear-gradient(0deg, rgba(89, 48, 125, 1) 55%, rgba(136, 51, 136, 0.8) 65%, rgba(136, 51, 136, 0.3) 100%);
  }


  .page-hero.video-hero .overlay-top {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #59307D;
    background: -webkit-linear-gradient(0deg, rgba(89, 48, 125, 1) 55%, rgba(136, 51, 136, 0.8) 65%, rgba(136, 51, 136, 0.3) 100%);
    background: -moz-linear-gradient(0deg, rgba(89, 48, 125, 1) 55%, rgba(136, 51, 136, 0.8) 65%, rgba(136, 51, 136, 0.3) 100%);
    background: linear-gradient(0deg, rgba(89, 48, 125, 1) 55%, rgba(136, 51, 136, 0.8) 65%, rgba(136, 51, 136, 0.3) 100%);
  }
}

.page-hero.container {
  border-radius: 15px;
  max-width: 94% !important;
}

@media (max-width: 768px) {
  .page-hero.container {
    max-width: 90% !important;
  }
}


@media (max-width: 540px) {
  .page-hero.container {
    max-width: 87% !important;
  }
}

.page-hero, .hero {
  margin-top: 100px;
}

@media (max-width: 992px) {
  .page-hero, .hero {
    margin-top: 120px;
  }

}


.page-hero a.page-hero-btn:hover,
.page-hero a.page-hero-btn:active,
.page-hero a.page-hero-btn:focus {
  background: #000;
  color: #921b83 !important;
  text-decoration: none;
  opacity: 1 !important;
}

.page-hero .page-hero-image {
  min-height: 600px;
  border-radius: 100px 0 100px 0;
  box-shadow: 0px 5px 25px rgba(0,0,0,0.05);
  margin-top: 100px;
  background-position: center center !important;
  background-size: cover !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}


@media (max-width: 768px) {
  .page-hero .page-hero-image {
    min-height: 400px;
  }
}




.page-hero .banner-content span {
  color: #921b83 !important;
}


.page-hero .banner-right {
  position: relative;
}


.page-hero .banner-content {
  margin: auto 0;
}

.page-hero img.hero-fg {
    max-width: 180px;
    height: auto;
    position: relative;
    margin-bottom: 0px;
    margin-top: 25px;
}

.page-hero img.hero-fg.second {
  max-width: 238px !important;
  margin: 22px 0 0 10px
}



@media (max-width: 1600px) {
  .page-hero {
    padding: 0 0 0px 0;
    min-height: 800px;
    height: 70vh;

  }

  .page-hero .container {
    margin-top: 0px;
  }
}

@media (max-width: 1200px) {
  .page-hero {
    background-position: 80% 50% !important;
  }
}




@media (max-width: 992px) {
  .page-hero,
  .hero .hero-banner .swiper-wrapper .swiper-slide {
    height: 75vh;
    min-height: 650px;
  }  

  .page-hero {
    padding: 80px 0 80px 0;
  }


  .page-hero img.hero-fg {
    max-width: 160px !important;
    margin-bottom: 10px !important;
  }

  .page-hero img.hero-fg.second {
    max-width: 160px !important;
  }

}

@media (max-width: 768px) {

  .page-hero .container { 
    margin-bottom: -30px;
  }

  .page-hero img.hero-fg {
    max-width: 150px !important;
  }

  .page-hero img.hero-fg.second {
    max-width: 212px !important;
    margin: 19px 0 0 10px;
  }

  .page-hero {
    padding: 100px 0 0px 0;
    background-size: 120% !important;
    background-position: 80% 0% !important;
  }
}

@media (max-width: 540px) {
  .page-hero img.hero-fg {
    max-width: 130px !important;
  }

  .page-hero img.hero-fg.second {
    max-width: 162px !important;
    margin: 17px 0 0 5px;
  }
  
  .page-hero {
    padding: 90px 0 0px 0;
    background-size: 200% !important;
    background-position: 80% 0% !important;
  }

  .page-hero a.page-hero-btn,
  .page-hero .hero-btn-2 {
    font-size: 12px !important;
    padding: 14px 18px !important;
  }

  .page-hero .container {
    margin-top: 20px !important;
  }
}



@media (max-width: 540px) {
  .page-hero .banner-content p {
    font-size: 16px !important;
    margin: 30px 0 30px !important
  }
}



@media (min-width: 992px) {
  .page-hero .banner-content {
    position: relative;
  }

  .page-hero .banner-content p {
    max-width: 600px;
  }

  .page-hero h1 {
    margin-top: 20px;
    max-width: 80%;
  }

  .page-hero .container {
    padding-left: 40px;
  }

}

@media (min-width: 1400px) {
  .page-hero .container {
    padding-left: 0px;
  }
}

@media (min-width: 1800px) {
  .page-hero .page-hero-image {
    min-height: 650px;
    margin-top: 120px;
  }

  .page-hero {
    min-height: 85vh;
    height: 800px;
  }

  .page-hero h1 {
    margin-top: 20px;
    max-width: 75%;
  }
}




/* ===== Hero Banner Customisations ====== */

.hero .banner-info-top {
  position: relative;
  top: 40%;
  left: 0;
}

.hero .banner-info-bottom {
  position: absolute;
  bottom: 60px;
  left: 0;
}

.hero .banner-info-bottom p {
  color: #fff !important;
}

.hero h1 {
  position: relative;
  display: block;
  color: #000000;
  margin-bottom: 10px;
}

.hero h1 span {
  color: #fff !important;
  display: block;
}

.hero .hero-banner .banner-icons .icon-column,
.page-hero .banner-icons .icon-column {
  padding: 10px 10px 10px 0;
  display: block;
}


.hero .hero-banner .banner-icons,
.page-hero .banner-icons {
  display: inline-flex;
  margin: 30px auto;
  margin-top: 5%;
}

.hero .hero-banner .banner-icons p {
  color: #fff;
  font-size: 12px !important;
  font-weight: 500 !important;
  margin-top: 0px !important;
  text-align: center !important;
  line-height: 20px !important;
}

.hero .hero-banner .banner-icons img,
.page-hero .banner-icons img {
    max-height: 35px !important;
    max-width: 100% !important;
}


.page-hero .banner-icons p {
  margin: auto 0 auto 15px !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  line-height: 24px !important;
}


@media (min-width: 992px) {
  .hero .banner-info-bottom .col-lg-5 {
    border-left: 1px solid rgba(255,255,255, 0.2);
    margin-left: 25px;
    padding-left: 40px;
  }
}


@media (max-width: 1200px) {
  .hero .hero-banner .swiper-wrapper .swiper-slide .hero-content {
    width: 80%;
  }
}


@media (max-width: 992px) {

  .hero .swiper-pagination {
    left: 30px;
  }

  .hero .hero-banner .swiper-wrapper .swiper-slide .hero-content {
    width: 100%;
  }

  .hero .banner-info-bottom {
    position: relative;
    max-width: 90%;
    margin-top: 20px;
    bottom: unset;
  }

  .hero img.hero-fg {
    max-width: 120px !important;
    margin: 10px 0 20px !important;
  }

  .hero .hero-banner .swiper-wrapper .swiper-slide .container {
    padding: 0 30px;
  }
}



  .hero .hero-banner .banner-icons .icon-column:nth-child(2), 
  .hero .hero-banner .banner-icons .icon-column:nth-child(3),
  .page-hero .banner-icons .icon-column:nth-child(2),
  .page-hero .banner-icons .icon-column:nth-child(3) {
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 30px;
  }


@media (max-width: 540px) {
  .hero .hero-banner .banner-icons p,
  .page-hero .banner-icons p {
    font-size: 11px !important;
    max-width: 150px;
    text-align: left !important;
    margin: auto 0 auto 15px !important;
    line-height: 15px !important;
  }

  .hero .hero-banner .banner-icons .icon-column,
  .page-hero .banner-icons .icon-column {
    padding: 10px 10px 10px 0 !important;
    display: block !important;
  }

  .hero .hero-banner .banner-icons img,
  .page-hero .banner-icons img {
    max-height: 40px !important;
    margin: 0 0 10px 15px;
  }
}

@media (min-width: 540px) {
  .hero .hero-banner .banner-icons,
  .page-hero .banner-icons {
    max-width: 100%;
  }

  .hero .hero-banner .banner-icons img,
  .page-hero .banner-icons img {
    max-height: 40px !important;
  }

  .hero .hero-banner .banner-icons p,
  .page-hero .banner-icons p {
    font-size: 11px !important;
    max-width: 150px;
    text-align: left !important;
    margin: auto 0 auto 15px !important;
    line-height: 15px !important;
  }

  .hero .hero-banner .banner-icons .icon-column,
  .page-hero .banner-icons .icon-column {
    padding: 10px 20px 10px 0;
    display: inline-flex;
  }
}


@media (min-width: 768px) {
  .hero .hero-banner .banner-icons,
  .page-hero .banner-icons {
    max-width: 100%;
  }

 .hero .hero-banner .banner-icons img, 
 .page-hero .banner-icons img {
    max-height: 54px !important;
  }

  .hero .hero-banner .banner-icons p, 
  .page-hero .banner-icons p {
    font-size: 15px !important;
    max-width: 150px;
    text-align: left !important;
    margin: auto 0 auto 15px !important;
    line-height: 20px !important;
  }
}



@media (min-width: 992px) {
  .hero .hero-banner .banner-icons,
  .page-hero .banner-icons {
    max-width: 70%;
  }

  .hero .hero-banner .banner-icons p, 
  .page-hero .banner-icons p {
    font-size: 18px !important;
  }
}



.page-hero .arrow-wrapper {
  display: flex;
  margin-top: 20px;
}

.page-hero .arrow-wrapper .arrow-icon {
  align-content: center;
}

.page-hero .arrow-wrapper .arrow-icon img {
  max-height: 50px;
  width: auto !important;
}

.page-hero .arrow-wrapper .arrow-text {
  align-content: center;
}

.page-hero .arrow-wrapper .arrow-text p {
  font-weight: 500 !important;
  font-size: 13px !important;
  margin: -5px 0 0 10px !important;
}


@media (max-width: 768px) {
  .page-hero .arrow-wrapper { 
    margin-bottom: 20px; 
  }
}

@media (max-width: 540px) {
  .page-hero .arrow-wrapper { 
    margin-top: 10px;
    margin-bottom: 20px; 
  }

  .page-hero .arrow-wrapper .arrow-icon img {
    max-height: 40px;
  }  

  .page-hero .arrow-wrapper .arrow-text p {
    margin: -4 0 0 10px !important;
  }
}


@keyframes bounceWithPause {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(0px); }  /* bounce down */
  80%  { transform: translateY(8px); }    /* bounce up */
  100% { transform: translateY(0); }    /* stay still for 80% of the cycle */
}

.page-hero .arrow-icon img {
  animation: bounceWithPause 2s infinite ease-in-out;
  will-change: transform;
  animation-delay: 1s;
}

/* ===== Contact Map ====== */


.map-box .column-item {
  width: 100%;
}

.map-box iframe {
  width: 100% !important;
  border-radius: 50px;
}

.map-box .first-column img {
  border-radius: 0 40px 0 0;
}

@media (max-width: 768px) {
  .map-box .first-column img {
    display: block;
    width: 100vw;
    height: 280px;
    object-fit: cover;
    margin: 0 0 30px;
  }

  .map-box .third-column {
    border-top: 1px solid #b8c7d0;
    padding-top: 30px;
  }
}

@media (min-width: 768px) {
  .map-box .first-column {
    padding-right: 60px;
  }
  .map-box .second-column {
    border-right: 1px solid #b8c7d0;
    padding-right: 50px;
  }

  .map-box .third-column {
    padding-left: 60px;
  }
}

.iframe-map {
  padding-top: 100px;
}

.iframe-map iframe {
  width: 100%;
  height: 430px;
  margin-bottom: -6px;
}


@media (max-width: 768px) {
  .iframe-map iframe {
    height: 340px;
    margin-bottom: -25px;
  }
}



/* ===== What Sets Us Apart ===== */

.what-sets-us-apart img {
  max-height: 80px !important;
  width: auto !important;
}

.what-sets-us-apart h4 {
  font-size: 17px !important;
  line-height: 23px !important;
  color: #c1a989 !important;
  margin: 10px 0 15px !important;
}


@media (min-width: 992px) {
  .what-sets-us-apart .column-section {
    padding: 0 15px !important;
  }

  .what-sets-us-apart .column-item .column-content {
    padding: 10px 10px 30px 0px;
  }
}



/* ===== Service CTA ===== */

.service-cta {
  margin-top: 30px;
  padding: 100px 0 80px;
  background: #59307D;
  background: -webkit-linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);  
}

@media (max-width: 540px) {
  .service-cta {
    padding: 80px 15px 70px !important;
  }
}

.service-cta h2,
.service-cta h3,
.service-cta p {
  color: #fff !important;
}

.service-cta p {
  margin: 30px 0 20px 0 !important;
  display: block;
}

.service-cta h2 {
  margin: 0 auto 20px 0;
  text-align: left;
  display: block;
  padding: 0px;
}

.service-cta h2 em {
  font-weight: unset;
  color: #e9aaff !important;
  font-style: unset;
}

.service-cta h2:after {
  display: none;
}

.service-cta .column-section {
  position: relative;
}

.service-cta .column-list img {
  max-height: 110px;
  width: auto;
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .service-cta .column-list img {
    max-height: 140px;
    width: auto;
    margin-bottom: 0px;
    position: absolute;
    right: 0;
    top: 0;
  }  

  .service-cta .column-content {
    max-width: 80%;
  }
}



/* ===== Services Overview ===== */

.services-overview {
  padding: 60px 0 120px;
  background: #59307D;
  background: -webkit-linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
}

@media (max-width: 540px) {
  .services-overview {
    padding: 60px 0 60px 0 !important;
  }
}

.services-overview .block-description {
  position: relative;
}

.services-overview h2 {
  color: #fff !important;
}

.services-overview h2.intro-title {
  margin: 0 auto -20px 0;
  text-align: left;
  display: block;

}


.services-overview h2:after {
  background-color: rgba(255,255,255,0.3) !important;
}


.services-overview h2.intro-title:after {
  display: none;
}


.services-overview .block-description p {
  color: #fff !important;
}

.services-overview .block-description .cta-btn {
  background: #fff !important;
  color: #921b83 !important;
}

.services-overview .block-description .cta-btn:hover {
  color: #fff !important;
  background: #921b83 !important;
}


.services-overview .column-item img {
  max-height: 80px;
  width: auto;
  margin-bottom: 25px;
}

.services-overview .column-list {
  background: #fff;
  border-radius: 12px;
  padding: 30px 30px;
  margin: 0 0 30px 0;
}


@media (max-width: 540px) {
  .services-overview h2 em {
    margin: 0px auto 10px 0 !important;
    display: inline-block;
    padding: 3px 20px;
  }

  .services-overview h2 {
    display: block;
    text-align: left;
    margin-bottom: 20px !important;
  }

  .services-overview h2.intro-title {
    margin-bottom: -20px !important;
  }

  .services-overview h2 strong {
    padding: 0px !important;
  }

  .services-overview .column-section {
    margin-top: 30px;
  }

  .services-overview .column-list {
    margin: 0 30px 30px;
  }

  .services-overview .column-item img {
    margin-bottom: 0px;
  }

}


@media (min-width: 768px) {
  .services-overview .column-list {
    padding: 30px 20px 20px;
    flex: 0 0 46%;
    margin: 0 3.333% 3.33% 0;
  }

  .services-overview .container {
    padding: 0px !important;
    margin: 0 auto !important;
  }

}


@media (min-width: 992px) {

  .services-overview .column-list {
    padding: 50px 50px;
  }

  .services-overview .block-description p {
    max-width: 60%;
  }  

  .services-overview .block-description .cta-btn {
    position: absolute;
    right: -10px;
    top: 105px;
  }

  .services-overview .container .row {
    width: 100%;
    margin: 20px auto 0 15px;
  }
}

.services-overview h2 em {
  margin: 0px auto -10px 0;
  background: #532766;
  padding: 6px 20px;
  color: #e9aaff !important;
  font-size: 15px !important;
  font-style: unset !important;
  border-radius:25px;
}

.services-overview h2 strong {
  font-weight: unset;
  color: #e9aaff !important;
  padding: 0 12px;
}

.services-overview h4:after {
  background: url(../../images/icn-arrow.png) center center no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  content: "";
  display: inline-block;
  background-size: contain;
  margin: 9px 0 0 0px;
  left: 11px;
  top: 1px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}


.services-overview h4 a:hover {
  color: #921b83 !important;
  opacity: 1 !important;
}

.services-overview h4:hover:after {
  left: 17px;
}



/* ===== Why Choose Us ===== */



.why-choose-us .column-list {
  background: #fff;
  border-radius: 12px;
  padding: 30px 30px;
  margin: 0 0 30px 0;
  box-shadow: 0px 5px 20px rgba(80, 37, 111, 0.2);
}

.why-choose-us .container .row {
  margin-top: 20px;
}

.why-choose-us .column-item img {
  max-height: 50px;
  width: auto;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .why-choose-us .column-list.column-list {
    margin: 0 20px 30px 20px;
    padding: 30px 30px 20px;
  }

  .why-choose-us h2 {
    margin: 0 0 20px -10px !important;
  }
}


@media (min-width: 768px) {
  .why-choose-us .column-list {
    padding: 30px 20px 20px;
    flex: 0 0 30%;
    margin: 0 3.333% 30px 0;
  }

  .why-choose-us .container {
    padding: 0px !important;
    margin: 0 auto !important;
  }
}


@media (min-width: 992px) {
  .why-choose-us .column-list {
    padding: 40px 40px;
    flex: 0 0 30%;
    margin: 0 3.333% 3% 0;
  }

  .why-choose-us .container .row {
    width: 100%;
    margin: 0 auto 0 15px;
  }
}






/*==== CTA Customisations ===== */

.cta .cta-btn {
  margin: 0 10px 10px 0;
}

.cta .cta-bg-image {
  position: absolute;
  width: 110%;
  right: 20px;
  margin: auto 0;
  top: 30%;
  z-index: 1;
}

.cta .cta-bg-image img {
  max-width: 100%;
}

.cta .form-wrap h2 {
  font-size: 18px !important;
  text-align: center;
}

.cta h2 {
  text-align: left;
}

.cta .gravity-theme {
  padding: 30px 40px 10px !important;
}

@media (max-width: 992px) {
  .cta .cta-bg-image {
    position: relative;
    width: 80%;
    right: unset;
    margin: 0 auto;
    top: -30px;
  }

  .cta .form-wrap {
    margin-top: -40px;
  }
}


@media (max-width: 768px) {
  .cta .form-wrap { 
    max-width: 100%;
    margin: 0 auto;
  }

  .cta .container {
    padding: 40px 30px;
  }

  .cta {
    background-position: 50% 20% !important;
    background-size: contain !important;
    padding: 0px 0 100px 0;
  }

  .cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(247,244,239);
    background: -moz-linear-gradient(180deg, rgba(247,244,239,0) 0%, rgba(247,244,239,1) 60%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(247,244,239,0) 0%, rgba(247,244,239,1) 60%, rgba(255,255,255,1) 100%);
    background: linear-gradient(180deg, rgba(247,244,239,0) 0%, rgba(247,244,239,1) 60%, rgba(255,255,255,1) 100%);
  }

}


@media (max-width: 540px) { 

  .cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(247,244,239);
    background: -moz-linear-gradient(180deg, rgba(247,244,239,0) 0%, rgba(247,244,239,1) 40%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(247,244,239,0) 0%, rgba(247,244,239,1) 40%, rgba(255,255,255,1) 100%);
    background: linear-gradient(180deg, rgba(247,244,239,0) 0%, rgba(247,244,239,1) 40%, rgba(255,255,255,1) 100%);
  }

  .cta {
    padding: 0px 0 50px 0 !important;
  }

  .cta .cta-bg-image {
    position: absolute;
    width: 60%;
    right: unset;
    margin: 0 auto;
    top: -75px;
    left: 0;
    right: 0;
  }

  .cta .form-wrap {
    margin: -30px auto 0;
  }

  .cta h3 {
    text-align: left;
  }

  .cta .cta-content p {
    text-align: left;
  }
}

@media (min-width: 540px) {
  .single-project .cta {
    margin: 100px 0 0 0 !important;
  }
}


@media (min-width: 768px) {

  .cta .form-wrap h2 {
    font-size: 27px !important;
  }

  .cta {
    min-height: 500px;
    overflow: visible;
  }

  .cta .container {
    min-height: 500px;
  }

  .cta .gravity-theme {
    border-radius: 25px !important;
  }

}


@media (min-width: 992px) {

  .cta .form-wrap {
    max-width: 85%;
    position: absolute;
    z-index: 2;
    top: 30px;
  }

}


/* ====== Recent Post Customisations ====== */


.recent.blog-recent {
  padding: 80px 0;
}

.single-project .recent.blog-recent {
  padding: 0 20px 0px !important;
}

.recent.blog-recent .cta-btn:hover,
.recent.blog-recent .cta-btn:focus,
.recent.blog-recent .cta-btn:active {
  color: #921b83 !important;
  background: #fff !important;
  opacity: 1 !important;
}

@media (max-width: 540px) {
  .recent.blog-recent {
    padding: 20px 15px 0;
  }
}

.recent.blog-recent .cta-btn {
  float: unset;
  margin: -20px 0 40px 0;
}

@media (min-width: 992px) {
  .recent.blog-recent .cta-btn {
    float: right !important;
    margin: 20px 0 0 0 !important;
  }
}

.row.project-items {
  margin-top: 30px;
}

.row.project-items .row {
  margin: 0px !important;
}


.single-recent-projects {
  padding: 0px !important;
}

.post-item .post-image {
  display: block;
  width: 100%;
  height: 320px;
  margin-bottom: 30px;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}


@media (max-width: 992px) {
  .post-item .post-image {
     height: 280px;
  }
}


@media (max-width: 768px) {
  .post-item .post-image {
     height: 280px;
  }
}


@media (max-width: 540px) {
  .post-item .post-image {
     height: 320px;
  }
}

@media (min-width: 1800px) {
  .post-item .post-image {
     height: 300px;
  }
}

.post-item .post-info {
  background-color: transparent;
  margin: 0 0 40px 0;
  padding: 0px 0 0 0px;
  border-radius: 0;
  display: block;
  z-index: 2;
  position: relative;
}

.blog .post-info {
  margin: 30px 0 40px 0;
}


.post-item a {
  text-decoration: none !important;
}




.post-item .post-image:hover h3:after {
  left: 24px;
}

.post-item .post-info p {
  color: #333333 !important;
  font-weight: 300;
  font-size: 15px !important;
}

.post-item .post-info a {
  font-size: 16px;
  border-radius: 0px;
  border: 0px;
  font-weight: 500;
  background: transparent;
  padding: 0;
  position: relative;
  color: #921b83 !important;
  font-family: 'Poppins', sans-serif !important;
}

.post-item .post-info a:after {
  background: url(../../images/icn-arrow.png) center center no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  content: "";
  display: inline-block;
  background-size: contain;
  margin: 10px 0 0 0px;
  left: 11px;
  top: 2px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.post-item .post-info a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.post-item .post-info a:hover:after {
  left: 15px;
}



@media (min-width: 768px) {
  .recent.blog-recent .cta-btn {
    position: absolute;
    top: -12px;
    right: -15px;
  }

  .single .recent.blog-recent .cta-btn {
    position: absolute;
    top: -12px;
    right: 15px;
  }
}

/* ====== Archive Customisations ==== */

.archive h1 {
  color: #921b83 !important;
}

.archive .blog .row.align-center {
  padding-bottom: 40px;
  margin-bottom: 70px;
  border-bottom: 1px solid #eee;
}

.archive .default-select select {
  background-color: #fafafa;
  border-radius: 6px 0 0 6px !important;
}

@media (max-width: 992px) {
  .archive .blog .row.align-center {
    margin-top: 60px;
    padding-bottom: 20px;
    margin-bottom: 50px;
  }

  .default-select {
    margin-top: 10px;
    max-width: 100%;
  }
}


@media (max-width: 540px) {
  .archive .blog .row.align-center {
    margin-top: 40px;
    padding-bottom: 0px;
    margin-bottom: 30px;
  }
}


/* ====== Single Post Customisations ====== */

.single-post .article-disclaimer {
  margin-top: 50px;
  background: #f7f5f7;
  border-radius: 20px;
  padding: 30px 40px;
}

.single-post .article-disclaimer p strong {
  font-weight: 600 !important;
}

.single-post .article-disclaimer p {
  font-size: 13px;
  line-height: 18px;
  font-style: italic;
}

.single-post .blog-intro-section {
  text-align: center;
  margin: 100px auto 0 !important;
  padding: 70px 0 200px;
  border-radius: 15px;
  max-width: 94% !important;
  max-height: 640px;
  background: #59307D;
  background: -webkit-linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
  background: linear-gradient(90deg, rgba(89, 48, 125, 1) 0%, rgba(193, 55, 149, 1) 100%);
}

.single-post .blog-intro-section p {
  color: #fff !important;
  font-weight: 400 !important;
}

.single-post .blog-intro-section p.post-date {
  margin: 0px auto -10px 0;
  background: #532766;
  padding: 8px 20px;
  color: #e9aaff !important;
  font-size: 15px !important;
  font-style: unset !important;
  border-radius: 25px;
  display: inline-block;
  font-weight: 500 !important;
}

.single-post .single-title {
  color: #fff !important;
}

.single-post .excerpt {
  margin-bottom: 30px;
}

.single-post .single-content h2 {
  display: inline-block;
  text-align: left !important;
  margin-top: 20px;
}

.single-post .single-content h2:after {
  display: none;
}

.single-post p.post-category a {
  color: #fff;
  font-weight: 500 !important;
  margin: 10px 0 40px;
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 5px 15px;
  border-radius: 25px;
}

.single-post p.post-category a:hover {
  text-decoration: none !important;
}

.single .post-thumb .post-image {
  margin-top: -170px;
}

.single .single-content ul li:before {
  position: absolute;
  left: 15px;
  color: #921b83;
  content: "\f054";
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  margin: 4px 0 0 0;
  font-size: 12px;
}

@media (max-width: 992px) {
  .single-post .blog-intro-section {
    margin-top: 120px !important;
  }
}

@media (max-width: 768px) {
  .single-post .blog-intro-section {
    max-width: 90% !important;
  }

  .single-post .main-content-area {
    margin: 0 !important;
  }

  .single .post-thumb .post-image {
    margin-top: -120px
  }

  .single .post-thumb {
    max-width: 90%;
    margin: 0 auto 40px;
  }

  .single-post .single-content {
    padding: 0 5px;
  }

  .single-post .blog-intro-section .row {
    margin: 0px;
  }
}




/* ====== Testimonials Customisations ===== */

.testimonials {
  text-align: center;
  padding: 50px 0px 40px !important
}


@media (max-width: 768px) {
  .testimonials {
    padding: 30px 0px 0px !important;
  }  
}

.testimonials h2 span {
  left: 0;
  right: 0;
}


.testimonials .swiper-pagination {
  left: 0;
  right: 0;
  margin: 10px 0 0 11px;
}

.testimonials .container .row {
  border-radius: unset;
  width: 100% !important;
}

.testimonials .testimonials-slider .swiper-wrapper .swiper-slide .testimonial .testimonial-img {
  float: unset;
  display: block;
  margin: 45px auto 20px;
  border-radius: unset;
  background-size: contain !important;
  height: 90px;
  width: 200px;
}

.testimonials .testimonials-slider .swiper-pagination .swiper-pagination-bullet {
  background: #addeeb !important;
}

.testimonials .testimonials-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #18a8dc !important;
}

.testimonials .testimonials-slider .swiper-wrapper .swiper-slide .testimonial p {
  color: #000000 !important;
  font-weight: 500 !important;
  line-height: 42px !important;
  font-size: 28px !important;
}

.testimonials .testimonials-slider .swiper-wrapper .swiper-slide .testimonial p.client {
  font-size: 18px !important;
  color: #5b92a6 !important;
  font-weight: 400 !important;
  line-height: 24px !important;
}

@media (max-width: 1200px) {
  .testimonials .testimonials-slider .swiper-wrapper .swiper-slide .testimonial p {
    line-height: 28px !important;
    font-size: 21px !important;
  }
}

@media (max-width: 768px) {
  .testimonials .testimonials-slider .swiper-wrapper .swiper-slide .testimonial p {
    line-height: 25px !important;
    font-size: 17px !important;
  }
}



/* ==== Contact customisations ==== */

.contact .contact-first-row {
  padding: 0 0 40px 0;
  margin: 0 0 0px;
}

.contact #contact-us {
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .contact #contact-us {
    padding-bottom: 0px;
  }
}

.contact .detail-item {
  margin: 15px 0 15px 0;
}

.contact .contact-logo img {
  max-width: 200px;
  height: auto;
}

.contact .detail-item h4 strong {
  font-weight: 600 !important;
}

.contact .form-wrap h3,
.contact .form-wrap p,
.contact .form-wrap ul li {
  color: #color !important;
  text-align: left;
}

.contact .form-wrap p {
  padding-bottom: 10px;
  font-size: 15px !important;
  font-weight: 400 !important;
}


  .contact .form-wrap p {
    margin: -40px 0 0px 95px;
  }

@media (min-width: 992px) {
  .contact .form-wrap h3 {
    padding: 0 0 0 15px;
  }
}


.contact .form-wrap h3 {
  display: inline-block;
}

@media (max-width: 992px) {
  .contact .form-wrap h3 {
    font-size: 24px !important;
    margin: 0 0 0 15px !important;
  }
}

@media (max-width: 540px) {
  .contact .form-wrap p {
    margin: 0 70px 0 0;
    font-size: 14px !important;
    line-height: 19px !important;
  }

  .contact .form-wrap h3 {
    padding: 30px 0 10px 0;
    margin: 0 !important;
  }

  .contact .form-wrap img {
    position: absolute;
    right: 40px;
  }

}

.contact .form-wrap img {
  display: inline-block;
  max-width: 75px;
  height: auto;
  margin: 30px 0 15px 0;
}

.contact .form-wrap .contact-additional-info {
  margin: 30px 0 0 0;
}

.contact .form-wrap .contact-additional-info p strong {
  font-weight: 600 !important;
}

.contact .form-wrap .contact-additional-info ul {
  padding: 15px 0 0 0;
}

.contact .form-wrap .contact-additional-info ul li {
  padding: 10px 0 10px 30px;
}


.contact .contact-additional-info ul li {
  background-size: 20px;
  background-position: left center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact .contact-additional-info ul li:last-child {
  border-bottom: 0px !important;
}


.contact .form-wrap {
  padding: 5px 40px 10px;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0px 5px 25px rgba(165,136,100,0.2);
}


@media (min-width: 992px) {
  .contact .form-wrap {
    display: flex;
  }
}



@media (min-width: 992px) {

  .contact .contact-second-row {
    overflow: visible;
  }

  .contact .form-wrap .col-lg-4 {
    position: relative;
  }

  .contact .form-wrap .col-lg-4:after {
    height: 125%;
    width: 1px;
    background: rgba(255,255,255,0.1);
    position: absolute;
    right: -13%;
    top: -10%;
    content: "";
  }

}


/* ====== Custom H2 line ====== */


h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 0;
}

h2:after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: #921b83; /* Adjust color as needed */
    margin-left: 20px; /* Adjust spacing */
}

.single-project .project-title h2:after {
  display: none !important;
}

.image-content-block h2 {
  display: inline-block;
  text-align: left !important;
}

.image-content-block h2:after {
  display: none;
}


@media (min-width: 768px) {
  .offset-image img {
    margin-top: 70px;
  }
}

.offset-content {
  margin-top: 40px;
}

.clearfix {
  clear: both;
  width: 100%;
}



/* ==== Brands Customisations ===== */

.brands {
  padding: 60px 0;
  text-align: center;
}

.brands .section-head {
  margin-bottom: 20px;
}


/* ==== Gallery lightbox customisations ==== */


.lg-group .lg-autoplay-button,
.lg-group .lg-fullscreen,
.lg-group #lg-zoom-in,
.lg-group #lg-zoom-out,
.lg-group #lg-actual-size,
.lg-group #lg-share,
.lg-group .lg-download {
  display: none !important;
}

.lg-backdrop {
  background-color: #000 !important;
}



/* ===== Module Container Widths ===== */ 


.navbar .container {
  max-width: 95% !important;
}

@media (max-width: 768px) {
  .page-hero .page-hero-image {
    max-width: 93%;
    margin: 50px auto 30px !important;
  }
}


@media (max-width: 540px) {
  .text {
    padding: 30px 15px;
  }

  .page-hero .page-hero-image {
    max-width: 93%;
    margin: 40px auto 30px !important;
  }

  .testimonials .container {
    padding-left: 30px;
    padding-right: 0px;
  }
}


@media (min-width: 1700px) {
  .recent .container {
    max-width: 70% !important;
  }

  .image-content-block .container,
  .hero .container, 
  .services .container,
  .text .container,
  .testimonials .container,
  .contact .container,
  .page-hero .container,
  .faq .container,
  .single .article-content .container.main,
  .faq .container,
  .tabs .container,
  #footer .container,
  .team .container,
  .brands .container,
  .service-list .container,
  .instagram .container,
  .service-columns .container,
  .expertise-box .container,
  .tabs .container,
  .cta .container,
  .google-review-slider .container,
  .quote-section .container,
  .blog .container,
  .gallery .container {
    max-width: 70% !important;
  }


}




/* 
@media (min-width: 1600px) {
  .container.box-slider-content {
    max-width: 85% !important;
    margin-right: 6%;
  }
}
*/







/* ==== General CSS ===== */


.gform_confirmation_message {
  padding: 15px 20px 18px !important;
  font-size: 15px !important;
  color: #921b83 !important;
  background: #fff2fd !important;
  margin: 20px 0 30px !important;
  border: 1px solid #921b83 !important;
  border-radius: 12px !important;
}

@media (max-width: 1200px) {
  #profile-bio .image {
    max-height: 500px !important;
  }
}

@media (max-width: 992px) {
  #profile-bio .image {
    max-height: 450px !important;
  }
}

@media (max-width: 540px) {
  #profile-bio .image {
    max-height: 400px !important;
    min-height: 400px !important;
  }
}



#footer img.footer-logos {
  max-width: 110px !important;
  height: auto !important;
  margin: 20px auto !important;
  display: block;
}

@media (min-width: 992px) {
  .footer-disclaimer {
    display: flex;
  }

  #footer img.footer-logos {
    max-width: 150px !important;
    height: auto !important;
    margin: 0px 0 10px auto !important;
  }
}


@media (min-width: 1700px) {
  .page-id-4682 .page-hero h1,
  .page-id-4691 .page-hero h1{
    margin-left: -35px !important;
  }
}

.page-id-4682 h3,
.page-id-4691 h3 {
  margin: 30px 0 15px 0 !important;  
}

.page-id-4682 .page-hero,
.page-id-4691 .page-hero {
  height: 650px !important;
  min-height: 650px !important;
}

.page-id-4682 .banner-icons,
.page-id-4691 .banner-icons {
  display: none !important;
}


@media (max-width: 1070px) {
  .navbar .menu-item-4642 {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-id-4682 .page-hero
  .page-id-4691 .page-hero {
    height: 480px !important;
    min-height: 480px !important;
  }  
}


@media (max-width: 540px) {

  .image-content-block.full-width-image .image {
    min-height: 400px !important;
  }
}


.text a.cta-btn:hover,
.text a.h6:hover {
  opacity: 1 !important;
}

@media (min-width: 768px) {
.space-above {
  margin-top: 40px;
}
}



@media (max-width: 992px) {
  .contact img.form-icon {
    max-width: 50px;
  }
}

@media (max-width: 768px) {
  .contact img.form-icon {
    max-width: 35px;
  }

  .contact .form-wrap h2 {
    margin: 30px 0 30px 0;
  }
}


.mobile-menu ul p {
  display: inline-block;
  margin: 0 0 0 10px;
  font-weight: 400 !important;
  color: #921b83 !important;
}


@media (max-width: 768px) {

  .classes-nav {
    margin-top: -20px;
  }

  .classes-nav p {
    display: block;
  }

  .classes-nav a {
    display: block;
  }

  .classes-nav .block-description h3 {
    text-align: center;
    display: block;
    padding: 0 0 30px 0;
    border: unset;
    margin-right: 12px !important;
  }

  .classes-nav .block-description {
    margin: 0 0 0px 0;
    padding: 0 10px;
  }
}


.instagram {
  text-align: center;
  padding: 70px 0 0;
}

@media (max-width: 768px) {
  .instagram {
    text-align: center;
    padding: 70px 0 50px;
  }
}


.instagram a.instagram-handle {
  color: #0079c1 !important;
  text-decoration: none !important;
}

#sb_instagram .sbi_photo img {
  border-radius: 20px !important;
}


.google-review-slider {
  padding: 80px 0;
}

.rplg .rplg-biz-name a {
  color: #921b83;
}


.rplg .grw-slider .wp-google-wr a {
  background: #921b83 !important;
  font-size: 14px !important;
  box-shadow: unset !important;
  text-shadow: unset !important;
}

.rplg .grw-slider .wp-google-wr a:hover {
  background: #921b83 !important;
  opacity: 0.7;
}

.rplg .grw-slider .grw-slider-reviews {
  overflow-x: hidden !important;
}

/* ==== Borrowing Claculator ===== */


#borrowing-calculator .container,
.faq .panel-body {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}


#borrowing-calculator iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #f5f5f5;
  border-radius: 25px;
  padding: 60px 20px;
  margin-bottom: 30px;
  min-height: 880px !important;
}


iframe#Home_Loan_Offset_Calculator {
  width: 100%;
  height: 100%;
  border: none;
  background: #f5f5f5;
  border-radius: 25px;
  padding: 60px 0px;
  margin-bottom: 30px;
  min-height: 740px !important;
}

iframe#Loan_Comparison_Calculator {
  width: 100%;
  height: 100%;
  border: none;
  background: #f5f5f5;
  border-radius: 25px;
  padding: 60px 0px;
  margin-bottom: 30px;
  min-height: 960px !important;
}

iframe#Income_Annualisation_Calculator {
  width: 100%;
  height: 100%;
  border: none;
  background: #f5f5f5;
  border-radius: 25px;
  padding: 60px 0px;
  margin-bottom: 30px;
  min-height: 840px !important;
}

iframe#Stamp_Duty_Calculator {
  width: 100%;
  height: 100%;
  border: none;
  background: #f5f5f5;
  border-radius: 25px;
  padding: 60px 0px;
  margin-bottom: 30px;
  min-height: 880px !important;
}

iframe#RentVsBuyCalculator {
  width: 100%;
  height: 100%;
  border: none;
  background: #f5f5f5;
  border-radius: 25px;
  padding: 60px 0px;
  margin-bottom: 30px;
  min-height: 960px !important;
}



#borrowing-calculator #visiAbacus_Calc_Container {
  max-width: 90% !important;
  margin: 0 auto !important;
}

@media (max-width: 768px) {
  #borrowing-calculator iframe {
    min-height: 900px !important;
    padding: 60px 20px;
  }

  iframe#Home_Loan_Offset_Calculator {
    padding: 60px 20px;
    min-height: 760px !important;
  }

  iframe#Loan_Comparison_Calculator {
    padding: 60px 20px;
    min-height: 980px !important;
  }

  iframe#Income_Annualisation_Calculator {
    padding: 60px 20px;
    min-height: 860px !important;
  }

  iframe#Stamp_Duty_Calculator {
    padding: 60px 20px;
    min-height: 900px !important;
  }

  iframe#RentVsBuyCalculator {
    padding: 60px 20px;
    min-height: 980px !important;
  }
}

@media (max-width: 540px) {
  #borrowing-calculator iframe {
    min-height: 1800px !important;
  }

  iframe#Home_Loan_Offset_Calculator {
    min-height: 1430px !important;
  }

  iframe#Loan_Comparison_Calculator {
    min-height: 1950px !important;
  }

  iframe#Income_Annualisation_Calculator {
    min-height: 1090px !important;
  }

  iframe#Stamp_Duty_Calculator {
    min-height: 1430px !important;
  }

  iframe#RentVsBuyCalculator {
    min-height: 2050px !important;
  }
}


@media (min-width: 992px) {
  #borrowing-calculator .col-md-12,
  #borrowing-calculator .container {
    padding-right: 0px !important;
  }
}


/* ==== Fade in effect - apply class fade-in to enable this ==== */

.fade-in {
  animation: fadeIn ease 2s;
  -webkit-animation: fadeIn ease 2s;
  -moz-animation: fadeIn ease 2s;
  -o-animation: fadeIn ease 2s;
  -ms-animation: fadeIn ease 2s;
  }

@keyframes fadeIn {
  0% {
    opacity:0;
    display: block;
  }
  20% {
    opacity:0;
    display: block;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
}



/* === End fade effect === */



