/*Sola Normalize*/

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {    
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
}

/*===============================
			Font Icon
		===============================*/
	
    @font-face {
      font-family: 'sjg-icons';
      src:  url('../fonts/sjg-icons.eot?y1n224');
      src:  url('../fonts/sjg-icons.eot?y1n224#iefix') format('embedded-opentype'),
        url('../fonts/sjg-icons.ttf?y1n224') format('truetype'),
        url('../fonts/sjg-icons.woff?y1n224') format('woff'),
        url('../fonts/sjg-icons.svg?y1n224#sjg-icons') format('svg');
      font-weight: normal;
      font-style: normal;
    }
    
    [class^="icon-"], [class*=" icon-"] {
      /* use !important to prevent issues with browser extensions that change fonts */
      font-family: 'sjg-icons' !important;
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
    
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    .icon-arrow-right:before {
      content: "\e900";
    }
    .icon-close:before {
      content: "\e901";
    }
    .icon-minus:before {
      content: "\e902";
    }
    .icon-play-circle:before {
      content: "\e903";
    }
    .icon-plus:before {
      content: "\e904";
    }
    .icon-twitter:before {
      content: "\e905";
    }
    .icon-facebook:before {
      content: "\e906";
    }
    .icon-email:before {
      content: "\e907";
    }
    .icon-link:before {
      content: "\e908";
    }

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

button,
[role="button"] {
  cursor: pointer;
}

button {
  background-color: transparent;
  padding: 0;
  border-width: 0;
  border-style: 0;
  border-color: transparent;
}

button:focus {
  outline: 0;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*Sola Utility Classes*/

a.cover-link {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
}

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

.color-overlay {
	top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(40, 40, 40, .7); /*Change this line if project requires different color or gradient*/
  content: '';
  position: absolute;
  z-index: -1;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.background-image-wrapper {
	/*The element containing this class also needs a height set. You can target the element or add a sibling class. Height can be set by padding, min-height, or height, depending upon specific case. The element containing this class needs an <img> with the class .background-image.*/
  position: relative;
  overflow: hidden;
}

img.background-image {
	/*The parent of the <img> needs to have the .background-image-wrapper class as well as a height set (can be set by padding, min-height, or height, depending upon specific case*/
	-webkit-transform: scale(1);
	        transform: scale(1);
  -webkit-transition: -webkit-transform 1.5s;
  transition: -webkit-transform 1.5s;
  transition: transform 1.5s;
  transition: transform 1.5s, -webkit-transform 1.5s;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.scale:hover .background-image,
.scale:focus .background-image,
.scale:active .background-image,
.scale.js-touch .background-image  {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

/* Must Style */

*::selection /*Can adjust values as needed. This changes highlighte text. */ {
	background-color: #222222; /*Change to Primary Color*/
	color: #ffffff; /*Change if necessary*/
}

@media (prefers-color-scheme: dark) {
  .icon {
    filter: contrast(0%) brightness(0%);
    -webkit-filter: contrast(0%) brightness(0%);
  }
}

/*=============================
    Utility Class
  =============================*/

/*=== Utility-Class - Mobile+ ===*/

.container {
  padding: 20px;
}

.primary-btn {
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 700;
  color: #17547C;
  text-align: center;
  letter-spacing: .7px;
  text-transform: uppercase;
  border: 2px solid #17547C;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  transition: color .25s, background-color .25s;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  -webkit-transition: color .25s, background-color .25s;
  -moz-transition: color .25s, background-color .25s;
  -ms-transition: color .25s, background-color .25s;
  -o-transition: color .25s, background-color .25s;
}

.primary-btn:hover,
.primary-btn:focus,
.primary-btn:active {
  color: #ffffff;
  background-color: #17547c;
}

.primary-btn svg {
  width: 10px;
}

.primary-btn svg path {
  transition: fill .25s;
  -webkit-transition: fill .25s;
  -moz-transition: fill .25s;
  -ms-transition: fill .25s;
  -o-transition: fill .25s;
}

.primary-btn:hover svg path,
.primary-btn:focus svg path,
.primary-btn:active svg path {
  fill: #ffffff;
}

.primary-btn span:nth-child(1) {
  margin-right: 10px;
}

.primary-btn span:nth-child(2) {
  margin-left: 10px;
}

.secondary-btn {
  font-size: 14px;
  font-weight: 700;
  color: #43423E;
  text-align: center;
  letter-spacing: .7px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .25s;
  -webkit-transition: color .25s;
  -moz-transition: color .25s;
  -ms-transition: color .25s;
  -o-transition: color .25s;
}

.secondary-btn:hover,
.secondary-btn:focus,
.secondary-btn:active {
  color: #17547C;
}

.gradient {
  position: relative;
}

.gradient::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  position: absolute;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#282828+0,282828+100&1+0,0.5+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear,  left top, right top,  from(rgba(40,40,40,1)),to(rgba(40,40,40,0.5)));
  background: linear-gradient(to right,  rgba(40,40,40,1) 0%,rgba(40,40,40,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#282828', endColorstr='#80282828',GradientType=1 ); /* IE6-9 */
}

.blue-bar {
  position: relative;
}

.blue-bar::before {
  content: "";
  position: absolute;
  width: 45%;
  height: 6px;
  right: 0;
  left: 0;
  top: -20px;
  background-color: #17547C;
}

.blue-label {
  padding-top: 16px;
  margin: 0;
}

.label {
  font-size: 12px;
  font-weight: 700;
  color: #43423E;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.main-title {
  margin: 0;
  color: #43423E;
  font-size: 34px;
  line-height: 1.5;
  font-family: 'Lora', serif;
}

.desc {
  margin: 0;
  color: #43423E;
  font-size: 16px;
  line-height: 1.8;
  font-family: 'Lora', serif;
}

.readmore-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #17547C;
  text-align: center;
  letter-spacing: .7px;
  text-transform: uppercase;
  border: 2px solid #17547C;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.readmore[data-readmore],
.findmore[data-readmore] {
  overflow: hidden;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.readmore[data-readmore],
.findmore[data-readmore] {
  display: block;
  width: 100%;
}

.readmore-btn svg {
  width: 15px;
}

.readmore-btn > div {
  position: relative;
  width: 15px;
  height: 15px;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.readmore-line > .bar-1,
.readmore-line > .bar-2 {
  width: 15px;
  height: 5px;
  position: absolute;
  background-color: #17547C;
  transition: background-color .25s;
  -webkit-transition: background-color .25s;
  -moz-transition: background-color .25s;
  -ms-transition: background-color .25s;
  -o-transition: background-color .25s;
}

.bar-1 {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.bar-2 {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}

.js-noscroll {
  overflow: hidden; 
}

/* ======= Utility-Class - Desktop+ ======= */

@media (min-width: 480px) {

  .primary-btn {
    padding: 8px 20px;
  }
  
  .primary-btn svg {
    width: 12px;
  }

  .primary-btn span:nth-child(1) {
    margin-right: 15px;
  }
  
  .primary-btn span:nth-child(2) {
    margin-left: 15px;
  }

}

/* ======= Utility-Class - Tablet+ ======= */

@media (min-width: 768px) {

  .container {
    padding: 30px;
  }

  .primary-btn {
    padding: 12px 20px;
    font-size: 16px;
  }
  
  .primary-btn svg {
    width: 15px;
  }

  .secondary-btn {
    font-size: 16px;
  }

  .blue-bar::before {
    height: 10px;
    top: -17px;
    width: 55%;
  }
  
  .blue-label {
    padding-top: 20px;
  }

  .label {
    font-size: 14px;
  }

  .main-title {
    font-size: 40px;
  }

  .desc {
    font-size: 18px;
  }

}

/* ======= Utility-Class - Desktop+ ======= */

@media (min-width: 992px) {

  .container {
    padding: 50px;
  }

  .secondary-btn {
    font-size: 20px;
  }

  .blue-bar::before {
    height: 12px;
    top: -22px;
    width: 60%;
  }
  
  .blue-label {
    padding-top: 26px;
  }

  .label {
    font-size: 18px;
  }

  .main-title {
    font-size: 46px;
  }

  .desc {
    font-size: 20px;
  }

}

/* ======= Utility-Class - Desktop+ ======= */

@media (min-width: 1400px) {

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

}

/*===============================
  ===============================
  ========== Homepage ===========
  ===============================
  ===============================*/

/*===============================
    Primary Header
  ===============================*/

/* ======= Primary Header - Mobile+ ======= */

.navigation {
  position: absolute;
  height: 50px;
  z-index: 15;
  width: 100%;
  right: 0;
  left: 0;
  background-color: #f8f8f8;
}

.navigation.js-active {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9999;
}

.primary-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 15;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.js-noscroll {
  overflow: hidden; 
}

/*Logo*/

.logo {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  text-align: center;
}

.logo img {
  max-width: 240px;
  max-height: 30px;
  /* width: 170px;
  height: 30px; */
}

/* Primary-Nav */

.featured-nav {
  display: none;
  height: 100%;
}

.featured-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.featured-nav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.featured-nav ul > li > a {
  font-size: 16px;
  position: relative;
  font-weight: 600;
  padding: 0 20px;
  color: #2c2c2c;
  letter-spacing: .8px;
  white-space: nowrap;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color .25s;
  transition: color .25s;
}

.featured-nav a:hover,
.featured-nav a:active {
  color: #17547C;
}

.primary-header .primary-btn {
  display: none;
}

/* ======= Primary Header - Large Mobile+ ======= */
@media (min-width: 480px) {}
/* ======= Primary Header - Tablet+ ======= */
@media (min-width: 768px) {

  .navigation {
    height: 80px;
  }

  .primary-header {
    height: 80px;
  }

  /*Logo*/

  .logo {
    padding: 15px 0;
  }

  .logo img {
    max-width: 280px;
    max-height: 40px;
  }

  .logo-placeholder {
    /*If user does not provide logo, then the text of the  title of their site will go in the <a> element in place of the <img>, so be sure to style to a plain text (non-image) logo*/
    font-size: 30px;
  }

  /* End Logo */

}
/* ======= Primary Header - Desktop+ ======= */
@media (min-width: 992px) {

  .featured-nav {
    display: block;
    height: 100%;
    margin-left: auto;
  }

  .primary-header .primary-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 20px;
  }

  .logo {
    margin-right: auto;
  }

}

/* ======= Primary Header - Large Desktop+ ======= */
@media (min-width: 1200px) {}

/*===============================
		Form Popover
	===============================*/
	
/* ======= Form Popover - Mobile+ ======= */

.form-popup {
  position: fixed;    
  overflow-y: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
  z-index: 210;
  width: 100%;
  height: 100vh;
  background-image: url("../jpg/marble.jpg");
  background-repeat: repeat-y;
  background-size: 100%;
	opacity: 0;
	visibility: hidden;
}

.form-popup.js-active {
	opacity: 1;
	visibility: visible;
}

.form-close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
}

.signature-form {
  padding: 130px 20px;
  font-family: 'IM Fell DW Pica SC', serif;
}

.signature-form .gform_wrapper {
  margin-top: 30px;
}

.signature-form .gform_wrapper input,
.signature-form .gform_wrapper select {
  line-height: 1.5 !important;
  border: 2px solid #43423E;
  background-color: #ffffff;
  margin: 0 !important;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.signature-form .gform_wrapper input::-webkit-input-placeholder,
.signature-form .gform_wrapper input:-ms-input-placeholder,
.signature-form .gform_wrapper input::-webkit-input-placeholder {
  color: #43423E80;
  font-size: 16px;
  height: 40px;
  padding: 5px 12px !important; 
  text-transform: uppercase;
}

.signature-form .gform_wrapper input[type=text],
.signature-form .gform_wrapper select {
  color: #43423E;
  font-size: 16px;
  height: 40px;
  padding: 5px 12px !important; 
  text-transform: uppercase;
}

.signature-form .gform_wrapper select {
  color: #43423E80;
}

.signature-form .gform_wrapper select:focus,
.signature-form .gform_wrapper select:visited {
  color: #43423E;
}

.signature-form .gform_wrapper select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1.5 !important;
  margin-top: 0 !important;
  padding-right: 36px !important;
}

.signature-form .gform_wrapper .address_state {
  position: relative;
}

.signature-form .gform_wrapper .address_state::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 28px;
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #43423E80;
}

.signature-form .gfield_description {
  font-size: 14px !important;
  color: #43423E;
  padding-right: 0;
  text-transform: lowercase;
}

.signature-form .gfield_checkbox label {
  font-size: 18px !important;
  line-height: 1.3 !important;
  color: #43423E;
  padding-left: 24px !important;
  text-transform: lowercase;
  position: relative;
  width: 100% !important;
}

.signature-form .gfield_checkbox .gchoice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.signature-form .gfield_checkbox .gfield-choice-input[type=checkbox] {
  display: none;
}
 
.signature-form .gfield_checkbox .gfield-choice-input[type=checkbox] + label::before {
  content: '';
  position: absolute;
  background-color: transparent;
  border: transparent solid 2px;
  -webkit-box-shadow: 0px 0px 0px 2px #43423E;
  box-shadow: 0px 0px 0px 2px #43423E;
  height: 10px;
  width: 10px;
  left: 2px;
  top: 6px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.signature-form .gfield_checkbox .gfield-choice-input[type=checkbox]:checked + label::before {
  content: '';
  position: absolute;
  background-color: #17547C;
  border: #fff solid 2px;
  -webkit-box-shadow: 0px 0px 0px 2px #17547C;
  box-shadow: 0px 0px 0px 2px #17547C;
  height: 10px;
  width: 10px;
  left: 2px;
  top: 6px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.signature-form .gform_footer .gform_button {
  position: relative;
  padding: 8px 15px 8px 42px;
  font-size: 16px;
  font-weight: 700;
  color: #43423E;
  cursor: pointer;
  text-align: center;
  letter-spacing: .7px;
  text-transform: uppercase;
  border: 2px solid #43423E;
  background-color: initial;
  white-space: nowrap;
  line-height: 1.2 !important;
  display: table !important;
  width: initial !important;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.signature-form .gform_wrapper .gform_footer {
  position: relative;
  margin: 0;
}

.signature-form .gform_wrapper .gform_footer::before {
  content: "";
  position: absolute;
  left: 22px;
  background-image: url("../svg/Inkpen.svg");
  background-size: 12px;
  background-repeat: no-repeat;
  width: 14px;
  height: 20px;
  top: 26px;
}

/* Errors */

.signature-form .gform_wrapper .gform_validation_errors {
  border: 0px;
  background-color: initial;
  -webkit-box-shadow: initial;
          box-shadow: initial;
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 0;
}

.signature-form .gform_wrapper .gform_validation_errors>h2 {
  font-size: 20px;
  color: #bf2e1a;
}

.signature-form .gform_wrapper .gform_validation_errors>h2:before {
  margin-bottom: -1px;
  background-size: 12px;
  background-image: url(../svg/Inkpenred.svg);
}

.signature-form .gform_wrapper .gfield_validation_message, 
.signature-form .gform_wrapper .validation_message {
  background: initial;
  border: 0px;
  font-size: 16px !important;
  padding-top: 5px !important;
  margin-top: 0px;
  color: #bf2e1a !important;
}

.signature-form .gform_legacy_markup_wrapper li.gfield.gfield_error {
  background-color: initial;
  margin-bottom: 0px!important;
  border-top: 0px;
  border-bottom: 0px;
  padding-bottom: 0;
  padding-top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.signature-form .gform_legacy_markup_wrapper li.gfield_error input, 
.signature-form .gform_legacy_markup_wrapper li.gfield_error textarea {
  border: 2px solid #bf2e1a !important;
}

div#gform_confirmation_message_3 {
  font-family: 'Lora';
  color: #43423E;
  line-height: 1.75
}

div#gform_confirmation_message_3 h2 {
  text-align: center;
  margin-top: 30px;
}

.confirmation-styles .highlight {
  border-bottom: #4583AC solid 3px;
  line-height: 0;
  display: inline;
}

/* ======= Form Popover - Large Mobile+ ======= */
@media (min-width: 640px) {

  .form-popup {
    background-repeat: repeat repeat;
    background-size: 400px;
  }

  .signature-form {
    max-width: 450px;
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }

  .signature-form-header .logo img {
    max-width: 320px;
    max-height: 40px;
  }

  .form-close-btn {
    top: 20px;
    right: 50px;
  }

}

/* ======= Form Popover - Tablet+ ======= */
@media (min-width: 768px) {

}

/* ======= Form Popover - Desktop+ ======= */
@media (min-width: 992px) {

}

/* ======= Form Popover - Large Desktop+ ======= */
@media (min-width: 1200px) {

}

/*===============================
    Banner
  ===============================*/

/* ======= Banner - Mobile+ ======= */

.featured-banner {
  background-color: #F9f9f9;
  position: relative;
  z-index: 0;
}

.banner-content {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  z-index: 1;
}

.featured-banner img {
  margin-top: -50%;
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
}

.banner-content .main-title {
  font-size: 24px;
  color: #17547C;
  margin: 24px 0;
}

.banner-content .desc {
  font-style: italic;
}

.featured-banner-btn {
  margin-top: 15px;
}

.featured-banner-btn .secondary-btn {
  margin-top: 15px;
  display: inline-block;
}

/* ======= Banner - Large Mobile+ ======= */
@media (min-width: 480px) {

  .featured-banner-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }

  .featured-banner-btn .secondary-btn {
    margin-left: 20px;
    margin-top: 0;
  }

}

/* ======= Banner - Tablet+ ======= */
@media (min-width: 768px) {

  .featured-banner .blue-bar::before {
    height: 10px;
    top: -27px;
    width: 55%;
  }
  
  .featured-banner .blue-label {
    padding-top: 28px;
  }

  .banner-content {
    padding-top: 140px;
  }

  .banner-content .main-title {
    font-size: 35px;
    margin: 20px 35% 10px 0;
  }

  .banner-content .desc {
    margin-right: 30%;
  }

  .featured-banner-btn .secondary-btn {
    margin-left: 35px;
  }

}
/* ======= Banner - Desktop+ ======= */
@media (min-width: 992px) {

  .featured-banner .blue-bar::before {
    height: 12px;
    top: -35px;
    width: 60%;
  }
  
  .featured-banner .blue-label {
    padding-top: 36px;
  }

  .banner-content {
    padding-top: 200px;
    padding-bottom: 20px;
  }

  .banner-content .main-title {
    font-size: 45px;
    margin: 20px 35% 15px 0;
  }

  .banner-content .desc {
    margin-right: 36%;
  }

  .featured-banner-btn {
    margin-top: 24px;
  }

  .featured-banner-btn .secondary-btn {
    margin-left: 55px;
  }

}

/* ======= Banner - Large Desktop+ ======= */
@media (min-width: 1200px) {

  .banner-content .desc {
    margin-right: 48%;
  }

}

/*===============================
    Featured-Introduction
  ===============================*/

/* ======= Featured-Action - Mobile+ ======= */

.featured-introduction {
  padding-top: 40px;
  padding-bottom: 40px;
}

.featured-introduction > article {
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #17547C1a;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.featured-introduction > article:last-child {
  margin-bottom: 0px;
}

.featured-statement-content,
.featured-action-content {
  padding: 30px;
}

.featured-statement .desc {
  margin: 20px 0;
}

.featured-statement .background-image-wrapper,
.featured-action .background-image-wrapper {
  display: none;
}

.list-of-action {
  margin-top: 20px;
}

.list-of-action article {
  padding-left: 40px;
  position: relative;
  margin-bottom: 20px;
}

.list-of-action article:last-child {
  margin-bottom: 0;
}

.list-of-action > article::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  font-size: 14px;
  color: #17547C;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid #17547C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.list-of-action > article:nth-child(1)::before {
  content: "1";
}

.list-of-action > article:nth-child(2)::before {
  content: "2";
}

.list-of-action > article:nth-child(3)::before {
  content: "3";
}

.list-of-action .main-title {
  color: #17547C;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
}

.list-of-action .desc {
  font-size: 16px;
  font-style: italic;
  margin: 5px 0 15px;
}

.questions {
  padding: 20px;
  margin-bottom: 15px;
  background-color: #17547C1a;
}

.questions h1 {
  font-size: 13px;
  line-height: 1.8;
  color: #43423E;
  font-weight: 700;
  margin: 0;
}

.questions p {
  font-size: 13px;
  line-height: 1.8;
  color: #43423E;
  line-height: 1.6;
  margin: 5px 0 15px;
}

.questions p:last-child {
  margin-bottom: 0;
}

.questions p a {
  color: #17547C;
  position: relative;
  padding-bottom: 2px;
  text-decoration: underline;
}

.list-of-action .findmore p:first-child {
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  margin: 5px 0 15px;
  font-family: 'Lora', serif;
}

.list-of-action .readmore-btn {
  margin-top: 15px;
}

.share-statement {
  position: relative;
  display: table;
  padding-top: 10px;
  margin-top: -10px;
}

.social-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  visibility: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f8f8f8;
  padding: 10px;
  position: absolute;
  top: -42px;
  left: -44px;
  border: 2px solid #17547C;
  transition: opacity .25s, visibility .25s;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  -webkit-transition: opacity .25s, visibility .25s;
  -moz-transition: opacity .25s, visibility .25s;
  -ms-transition: opacity .25s, visibility .25s;
  -o-transition: opacity .25s, visibility .25s;
}

.share-statement:hover .social-share {
  opacity: 1;
  visibility: visible;
}

.social-share::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #17547C;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.social-share button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 42px;
  height: 22px;
  padding: 0 10px;
}

.social-share button.email {
  width: 38px;
}

.social-share button svg {
  height: 18px;
}

.social-share button.copy-link svg {
  height: 16px;
}

.social-share button path {
  fill: #17547C;
  transition: fill .25s;
  -webkit-transition: fill .25s;
  -moz-transition: fill .25s;
  -ms-transition: fill .25s;
  -o-transition: fill .25s;
}

.social-share button:hover path,
.social-share button:focus path,
.social-share button:active path,
.social-share button.js-touch path {
  fill: #17547Ccc;
}

.copied {
  position: fixed;
  left: 20px;
  bottom: 20px;
  padding: 12px 20px;
  font-size: 14px;
  color: #17547C;
  border-radius: 100px;
  z-index: 500;
  background-color: #f8f8f8;
  border: 2px solid #17547C;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  text-transform: uppercase;
}

/* ======= Featured-Action - Large Mobile+ ======= */
@media (min-width: 480px) {

  .social-share {
    left: -34px;
  }

}

/* ======= Featured-Action - Tablet+ ======= */
@media (min-width: 768px) {

  .featured-introduction {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .featured-introduction > article {
    margin-bottom: 50px;
  }

  .featured-statement-content,
  .featured-action-content {
    padding: 40px;
  }

  .list-of-action article {
    margin-bottom: 25px;
  }

  .social-share {
    left: -28px;
  }

}

/* ======= Featured-Action - Desktop+ ======= */
@media (min-width: 992px) {

  .featured-introduction {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .featured-statement,
  .featured-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .featured-statement div,
  .featured-action > nav,
  .featured-action > div {
    display: block;
    width: 50%;
  }

  .featured-introduction > article {
    margin-bottom: 80px;
  }

  .featured-statement-content,
  .featured-action-content {
    padding: 50px;
  }

  .featured-statement .background-image-wrapper,
  .featured-action .background-image-wrapper {
    display: block;
  }

}

/* ======= Featured-Action - Large Desktop+ ======= */
@media (min-width: 1200px) {}

/*===============================
    Statement
  ===============================*/

/* ======= Statement - Mobile+ ======= */

.featured-acts {
  position: relative;
  padding-bottom: 20px;
}

.featured-acts::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 50%;
  background-color: #17547C1a;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

.acts-statement {
  position: relative;
  padding: 30px 15px;
  margin: 20px 20px 0;
  background-image: url("../jpg/marble.jpg");
  background-repeat: repeat-y;
  background-size: 100%;
  font-family: 'IM Fell DW Pica SC', serif;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.3);
  box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.3);
}

.acts-statement header > h1 {
  font-size: 24px;
  margin: 0;
  line-height: 34px;
  text-align: center;
  color: #43423E;
  -webkit-text-fill-color: #43423E;
  -webkit-text-stroke-width: .1px;
  -webkit-text-stroke-color: #43423E;
}

.acts-statement header > h3 {
  font-size: 20px;
  margin: 15px 0;
  text-align: center;
  line-height: 26px;
  color: #43423E;
}

.acts-statement div > blockquote {
  font-size: 18px;
  margin: 0;
  padding-left: 25px;
  line-height: 1.3;
  position: relative;
  color: #43423E;
}

.acts-statement div > blockquote::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background-color: #17547C;
  top: -2px;
  left: 0;
}

.acts-statement div > p {
  font-size: 20px;
  margin: 15px 0;
  line-height: 1.5;
  color: #43423E;
}

.acts-statement .primary-btn {
  margin: 30px auto 0;
}

/* ======= Statement - Large Mobile+ ======= */
@media (min-width: 480px) {

  .acts-statement {
    padding: 30px;
  }

}

/* ======= Statement - Tablet+ ======= */
@media (min-width: 768px) {

  .acts-statement {
    padding: 40px;
    margin: 3px 30px 0;
    background-repeat: repeat repeat;
    background-size: 400px;
  }

  .acts-statement header {
    width: 75%;
    margin: auto;
  }

  .acts-statement header > h1 {
    font-size: 35px;
  }
  
  .acts-statement header > h3 {
    font-size: 25px;
    margin: 30px 0;
  }

  .acts-statement div > blockquote {
    font-size: 20px;
  }

  .acts-statement div > p {
    font-size: 22px;
    margin: 20px 0;
  }

  .acts-statement .primary-btn {
    margin-top: 40px;
  }

}
/* ======= Statement - Desktop+ ======= */
@media (min-width: 992px) {

  .acts-statement {
    padding: 50px;
    max-width: 800px;
    margin: 50px auto 0;
  }

  .acts-statement header > h1 {
    font-size: 50px;
  }
  
  .acts-statement header > h3 {
    font-size: 30px;
    margin: 50px 0;
  }

  .acts-statement div > blockquote {
    font-size: 22px;
  }

  .acts-statement div > p {
    font-size: 24px;
  }

  .acts-statement .primary-btn {
    margin-top: 50px;
  }

}
/* ======= Statement - Large Desktop+ ======= */
@media (min-width: 1200px) {}

/*===============================
    Signers
  ===============================*/

/* ======= Signers - Mobile+ ======= */

.signers {
  background-color: #17547C1a;
}

.signers-list {
  margin-top: 40px;
  margin-bottom: 20px;
}

.all-signers {
  grid-gap: 30px;
}

.all-signers.slick-slider {
  margin-right: -30px;
  display: block;
}

.all-signers > .slick-list {
  padding: 0 30% 0 0;
}

.all-signers .slick-slide {
  margin-right: 30px;
}

.all-signers .slick-slide > div:last-child .signers-name {
  margin-bottom: 0;
}

.featured-dots {
  top: -80px;
  right: 30px;
  height: 30px;
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.signers-name {
  margin-bottom: 30px;
}

.signers-name h1 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: #43423E;
  font-family: 'Lora', serif;
  text-transform: uppercase;
}

.signers-name p {
  font-size: 14px;
  margin: 8px 0 0;
  line-height: 1.5;
  font-weight: 700;
  color: #43423E80;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-family: 'Lato', serif;
}

.signers-header .primary-btn {
  display: none;
}

.bottom-button {
	display: table;
  margin: 30px auto 15px;
}

/* ======= Signers - Large Mobile+ ======= */
@media (min-width: 520px) {

  .all-signers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -30px;
  }

  .all-signers > article {
    width: calc(50% - 30px);
  }

  .all-signers > .slick-list {
    padding: 0 20% 0 0;
  }

  .featured-dots {
    top: -80px;
    right: 20px;
    height: 30px;
    width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .all-signers.slick-slider .signers-name {
    margin-bottom: 30px;
  }

  .signers-name {
    margin-bottom: 0;
  }

}

/* ======= Signers - Tablet+ ======= */
@media (min-width: 768px) {

  .all-signers > article {
    width: calc(33.33% - 30px);
  }

  .signers-name h1 {
    font-size: 20px;
  }

  .signers-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .signers-header .primary-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .bottom-button {
    display: none;
  }
}

/* ======= Signers - Desktop+ ======= */
@media (min-width: 992px) {

  .all-signers > article {
    width: calc(25% - 30px);
  }

  .signers-name h1 {
    font-size: 22px;
  }

}
/* ======= Signers - Large Desktop+ ======= */
@media (min-width: 1200px) {}

/*===============================
    Ministry Partner
  ===============================*/

/* ======= Ministry Partner - Mobile+ ======= */

.ministry-partner {
  padding-top: 30px;
  padding-bottom: 50px;
}

.ministry-partner .header-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.ministry-partner .header-title h1 {
  color: #282828;
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  line-height: 1.3;
  font-weight: 500;
}

.featured-ministry-partner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 35px;
  margin-bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.partner-logo {
  position: relative;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.partner-logo img {
  max-width: 130px;
  max-height: 70px;
  -o-object-fit: contain;
  object-fit: contain;
}

.partner-logo:hover img  {
	opacity: 1;
	-webkit-filter: none;
	        filter: none;
}

/* ======= Ministry Partner - Large Mobile+ ======= */
@media (min-width: 480px) {


}
/* ======= Ministry Partner - Tablet+ ======= */
@media (min-width: 768px) {

  .ministry-partner {
    margin-top: 50px;
  }

  .partner-logo {
    height: 100px;
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
  }

  .partner-logo img {
    max-width: 160px;
    max-height: 80px;
  }

}
/* ======= Ministry Partner - Desktop+ ======= */
@media (min-width: 992px) {

  .partner-logo {
    height: 120px;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
  }

  .partner-logo img {
    max-width: 200px;
    max-height: 95px;
  }

}
/* ======= Ministry Partner - Large Desktop+ ======= */
@media (min-width: 1200px) {}

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

/* =======  - Mobile+ ======= */

.footer {
  background-color: #43423E;
}

.footer > div {
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-header h1 {
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  margin: 0;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
}

.footer-header h1 span,
.footer-header p span {
  color: #4583AC;
}

.footer-header p {
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  font-style: italic;
  line-height: 1.5;
  margin-top: 30px;
  font-family: 'Lora', serif;
}

.footer-nav {
  margin: 15px 0;
}

.footer-nav a {
  display: block;
  width: 100%;
  color: #4583AC;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 0;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Lato', serif;
  transition: opacity .25s;
  -webkit-transition: opacity .25s;
  -moz-transition: opacity .25s;
  -ms-transition: opacity .25s;
  -o-transition: opacity .25s;
}

.footer-nav a:hover,
.footer-nav a:focus,
.footer-nav a:active {
  opacity: .75;
}

.footer-nav .primary-btn {
  margin: 12px auto;
  color: #4583AC;
  border-color: #4583AC;
}

.footer-nav .primary-btn:hover,
.footer-nav .primary-btn:focus,
.footer-nav .primary-btn:active {
  color: #ffffff;
  background-color: #4583AC;
}

.footer-nav .primary-btn svg path {
  fill: #4583AC;
}

.footer-nav .primary-btn:hover svg path,
.footer-nav .primary-btn:focus svg path,
.footer-nav .primary-btn:active svg path {
  fill: #ffffff;
}

.footer-credit {
  color: #ffffff80;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  font-family: 'Lato', serif;
}

/* =======  - Large Mobile+ ======= */
@media (min-width: 480px) {}
/* =======  - Tablet+ ======= */
@media (min-width: 768px) {

  .footer > div {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .footer-header p {
    font-size: 18px;
    margin-top: 35px;
  }
  
  .footer-nav {
    margin: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .footer-nav a {
    width: initial;
    padding: 0 20px;
  }
  
  .footer-nav .primary-btn {
    margin: 0 20px;
  }

}
/* =======  - Desktop+ ======= */
@media (min-width: 992px) {

  .footer > div {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .footer-header p {
    font-size: 20px;
  }

  .footer-nav {
    margin: 35px 0;
  }

}
/* =======  - Large Desktop+ ======= */
@media (min-width: 1200px) {}

/*===============================
  ===============================
  ===============================
  ===============================
  ===============================*/

/*===============================
    
  ===============================*/

/* =======  - Mobile+ ======= */

.signers-page {
  padding-top: 90px;
}

.signers-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.signers-head .primary-btn {
  margin-left: 20px;
  white-space: initial;
}

.signers-content-list {
  margin: 80px 0;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 60px auto 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.pagination a.current {
  border: 2px #F7F7F7 solid;
  color: #fff;
  -webkit-box-shadow: 0px 0px 0px 3px #17547C;
  box-shadow: 0px 0px 0px 3px #17547C;
  background: #17547C;
}

.pagination a {
  padding: 3px 5px 0;
  margin: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50px;
  min-width: 25px;
  height: 25px;
  position: relative;
  /* border: 2px rgb(160, 138, 138) solid; */
  color: #434343;
  -webkit-box-shadow: 0px 0px 0px 3px #434343;
  box-shadow: 0px 0px 0px 3px #434343;
  font-family: 'Josefin Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 11px;
  opacity: 1;
  background-position: center;
  transition: background-color 0.8s, color 0.25s, box-shadow .25s, -webkit-box-shadow .25s, opacity .25s;
  -webkit-transition: background-color 0.8s, color 0.25s, box-shadow .25s, -webkit-box-shadow .25s, opacity .25s;
  -moz-transition: background-color 0.8s, color 0.25s, box-shadow .25s, -webkit-box-shadow .25s, opacity .25s;
  -ms-transition: background-color 0.8s, color 0.25s, box-shadow .25s, -webkit-box-shadow .25s, opacity .25s;
  -o-transition: background-color 0.8s, color 0.25s, box-shadow .25s, -webkit-box-shadow .25s, opacity .25s;
}

.pagination .next.page-numbers {
  font-size: 24px;
  padding: 1px 10px 0;
}

.pagination .prev.page-numbers {
  font-size: 24px;
  padding: 0 10px 1px;
}

.pagination .prev i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* =======  - Large Mobile+ ======= */
@media (min-width: 480px) {

  .pagination a {
    margin: 0 10px;
  }
}
/* =======  - Tablet+ ======= */
@media (min-width: 768px) {

  .signers-page {
    padding-top: 120px;
  }

  .signers-head .primary-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 20px;
    margin-top: 20px;
  }

}
/* =======  - Desktop+ ======= */
@media (min-width: 992px) {

  .signers-page {
    padding-top: 140px;
  }

  .pagination a {
    margin: 0 15px;
    font-size: 16px;
    padding: 3px 3px 0;
  }

}
/* =======  - Large Desktop+ ======= */
@media (min-width: 1200px) {}

/*===============================
  ===============================
  ===============================
  ===============================
  ===============================*/

/*===============================
    
  ===============================*/

/* =======  - Mobile+ ======= */

/* =======  - Large Mobile+ ======= */
@media (min-width: 480px) {}
/* =======  - Tablet+ ======= */
@media (min-width: 768px) {}
/* =======  - Desktop+ ======= */
@media (min-width: 992px) {}
/* =======  - Large Desktop+ ======= */
@media (min-width: 1200px) {}

/*===============================
  ===============================
  ===============================
  ===============================
  ===============================*/

/*===============================
    
  ===============================*/

/* =======  - Mobile+ ======= */
/* =======  - Large Mobile+ ======= */
@media (min-width: 480px) {}
/* =======  - Tablet+ ======= */
@media (min-width: 768px) {}
/* =======  - Desktop+ ======= */
@media (min-width: 992px) {}
/* =======  - Large Desktop+ ======= */
@media (min-width: 1200px) {}

/*===============================
  ===============================
  ===============================
  ===============================
  ===============================*/

/*===============================
    
  ===============================*/

/* =======  - Mobile+ ======= */
/* =======  - Large Mobile+ ======= */
@media (min-width: 480px) {}
/* =======  - Tablet+ ======= */
@media (min-width: 768px) {}
/* =======  - Desktop+ ======= */
@media (min-width: 992px) {}
/* =======  - Large Desktop+ ======= */
@media (min-width: 1200px) {}


