/*Sola Normalize*/

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

:root {
	--primary-color: #333A44;
	--bg-color: #1B1E25;
	--light-bg-color: #262C34;
  --primary-font: 'Playfair Display', serif;
  --secondary-font: 'EB Garamond', serif;
  --para-font: 'Poppins', sans-serif;
}

html,
body {  
  /* scroll-behavior: smooth; */
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
}

body {
  background-color: var(--bg-color);
}

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;
  -webkit-appearance: button;
}

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

.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(27, 30, 37, .6); /*Change this line if project requires different color or gradient*/
  content: '';
  position: absolute;
}

.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;
  z-index: 0;
}

.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 .6s;
  transition: -webkit-transform .6s;
  transition: transform .6s;
  transition: transform .6s, -webkit-transform .6s;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.background-image-wrapper.scale:hover>img.background-image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* Must Style */

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


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

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

.js-noscroll {
  overflow: hidden; 
}

.js-hide {
  display:none;
}

.meta-tag {
  color: #E61D25;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
}

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

@media (min-width: 768px) {

}

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

@media (min-width: 992px) {

}

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

@media (min-width: 1200px) {

  .container {
    max-width: 1160px;
    margin: 0 auto !important;
    padding-right: 30px !important;
    padding-left: 30px !important;
  }

}

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

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

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

.main-header {
  position: fixed;
  height: 66px;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
  transition: background-color .25s;
  -webkit-transition: background-color .25s;
  -moz-transition: background-color .25s;
  -ms-transition: background-color .25s;
  -o-transition: background-color .25s;
}

/* #wpadminbar {
  position: fixed !important;
}

.admin-bar .main-header {
  top: 46px;
} */

.primary-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 15;
  width: 100%;
  height: 100%;
  padding: 0 15px;
}

/*Logo*/

.logo {
  max-height: 35px;
  margin: 0 auto;
}

.logo img {
  max-width: 120px;
  max-height: 35px;
}

.logo a {
  /*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: 16px;
  color: #fff;
}

/* End Logo */

/* Nav Icon */

.menu-icon {
  cursor: pointer;
  height: 100%;
  padding: 20px;
  -ms-flex-item-align: center;
      align-self: center;
  margin-right: -15px;
  margin-left: -47px;
}

.icon-bar-1,
.icon-bar-2 {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.icon-bar-1 {
  width: 20px;
}

.icon-bar-2 {
  width: 20px;
  margin-top: 7px;
}

/* End Nav Icon */

/* Navigation */

.navigation {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 200;
  width: 100%;
  height: 100vh;
  position: fixed;
  padding: 0px 15px 80px;
  background-color: var(--primary-color);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
  -webkit-transition: opacity .3s;
  -moz-transition: opacity .3s;
  -ms-transition: opacity .3s;
  -o-transition: opacity .3s;
}

/* .admin-bar .navigation {
  top: 46px;
} */

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

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

.close {
  cursor: pointer;
  padding: 20px;
  -ms-flex-item-align: center;
      align-self: center;
  margin-right: -15px;
  margin-left: -47px;
  width: 60px;
}

.mob-nav {
  min-height: 400px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mob-nav ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
  justify-content: center;
  margin: 10px 0;
}

.mob-nav ul > li:first-child {
  margin-top: 0;
}

.mob-nav ul > li:last-child {
  margin-bottom: 0;
}

.mob-nav ul > li > a,
.mob-nav ul > li > button {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
  padding: 10px 40px;
  line-height: 1;
  letter-spacing: .125em;
  font-size: 20px;
  text-transform: uppercase;
  font-family: var(--para-font);
  transition: color .25s;
  -webkit-transition: color .25s;
  -moz-transition: color .25s;
  -ms-transition: color .25s;
  -o-transition: color .25s;
  background-color: transparent
}

.mob-nav ul > li > a:hover,
.mob-nav ul > li > button:hover,
.mob-nav ul > li > a:focus,
.mob-nav ul > li > a:active {
  color: rgba(255,255,255,0.5);
}

.desktop-navigation {
  display: none;
}

/* End Navigation */

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

/* ======= Primary-Header - Large Mobile+ ======= */
@media (max-height: 540px) {

  .navigation {
    overflow-y: auto;
  }

}

/* ======= Primary-Header - Tablet+ ======= */

@media (min-width: 768px) {

  .main-header {
    top: 30px;
    height: 80px;
    width: initial;
    margin: 0 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

  /* .admin-bar .main-header {
    top: 32px;
  } */

  .primary-header {
    padding: 0 30px;
  }

  /*Logo*/

  .logo {
    max-height: 40px;
    margin: 0;
  }
  
  .logo img {
    max-width: 150px;
    max-height: 45px;
  }

  .logo a {
    /*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: 24px;
  }

  .menu-icon {
    padding: 30px;
    margin-right: -30px;
    margin-left: 0px;
  }

  /* End Logo */

  /* Navigation */

  .navigation {
    padding: 37px 60px 80px;
  }

  .admin-bar .navigation {
    /* top: 107px; */
  }

  .mob-nav ul > li {
    margin: 20px 0;
  }

  .mob-nav ul > li > a {
    padding: 20px 60px;
  }

  .close {
    margin-right: -20px;
  }

  /* End Navigation */

}

/* ======= Primary-Header - Desktop+ ======= */

@media (min-width: 992px) {

  .main-header {
    top: 40px;
  }
  /* Nav Icon */

  .menu-icon,
  .navigation {
    display: none;
  }

  /* End Nav Icon */

  /* Navigation */

  .desktop-navigation {
    display: block;
  }

  .desktop-navigation > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    padding-bottom: 0;
  }

  .desktop-navigation > ul > li:last-child {
    margin-right: -22px;
  }

  .desktop-navigation > ul > li > a,
  .desktop-navigation > ul > li > button {
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--para-font);
    transition: color .25s;
    -webkit-transition: color .25s;
    -moz-transition: color .25s;
    -ms-transition: color .25s;
    -o-transition: color .25s;
    height: 100%;
    white-space: nowrap;
    background-color: transparent;
  }

  .desktop-navigation ul > li > a:hover,
  .desktop-navigation ul > li > button:hover,
  .desktop-navigation ul > li > a:focus,
  .desktop-navigation ul > li > a:active {
    color: rgba(255,255,255,0.5);
  }

}

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

  .main-header {
    padding: 0 !important;
  }

}


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

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

.banner {
  position: relative;
  height: 100vh;
  min-height: 500px;
  padding: 66px 0 0;
}

.banner::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1b1e25+0,1b1e25+50,1b1e25+57&0+0,1+50 */
  background: -moz-linear-gradient(top,  rgba(27,30,37,0) 0%, rgba(27,30,37,1) 50%, rgba(27,30,37,1) 57%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(27,30,37,0) 0%,rgba(27,30,37,1) 50%,rgba(27,30,37,1) 57%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(27,30,37,0) 0%,rgba(27,30,37,1) 50%,rgba(27,30,37,1) 57%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001b1e25', endColorstr='#1b1e25',GradientType=0 ); /* IE6-9 */
}

.banner .color-overlay {
  z-index: -1;
}

.featured-banner {
  height: 100%;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner-content > h1 {
  font-size: 30px;
  color: #fff;
  text-align: center;
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
  font-family: var(--primary-font);
}

.banner-content > p {
  line-height: 1.8;
  color: #fff;
  margin: 20px 0 0;
  font-size: 16px;
  text-align: center;
  font-family: var(--para-font);
}

.featured-banner-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-banner-btn > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--para-font);
  font-size: 14px;
  letter-spacing: 2.8px;
  padding: 8px 15px;
  margin: 12px 0;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid #ffffff;
  opacity: .5;
  transition: opacity .25s;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: opacity .25s;
  -moz-transition: opacity .25s;
  -ms-transition: opacity .25s;
  -o-transition: opacity .25s;
}

.featured-banner-btn > a > svg {
  margin-right: 10px;
}

.featured-banner-btn > a:first-child {
  margin-top: 0;
}

.featured-banner-btn > a:last-child {
  margin-bottom: 0;
}

.featured-banner-btn > a:hover {
  opacity: 1;
}

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

  em.become {
    display: block;
  }

  br.mobile-hide {
    display: none;
  }

}


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

}
/* ======= Banner - Tablet+ ======= */

@media (min-width: 768px) {

  .banner {
    min-height: 700px;
    padding: 110px 0 0;
  }
  
  .featured-banner {
    padding: 0 50px;
  }
  
  .banner-content > h1 {
    font-size: 50px;
    line-height: 1.5;
  }
  
  .banner-content > p {
    margin: 40px 0 0;
    font-size: 20px;
  }
  
  .featured-banner-btn {
    flex-direction: row;
    align-items: center;
  }
  
  .featured-banner-btn > a {
    margin: 0 15px;
  }
  
  .featured-banner-btn > a:first-child {
    margin-left: 0;
  }
  
  .featured-banner-btn > a:last-child {
    margin-right: 0;
  }

}

/* ======= Banner - Desktop+ ======= */

@media (min-width: 992px) {

  .banner {
    padding: 120px 0 0;
  }
  
  .featured-banner {
    padding: 0 100px;
  }

}

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

}

/*===============================
	Video
===============================*/


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

.video {
  padding: 40px 15px;
}

/* ======= Video - Large Mobile+ ======= */

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


/* ======= Video - Tablet+ ======= */

@media (min-width: 768px) {

  .video {
    padding: 50px 0;
    margin: 0 auto;
    max-width: 560px;
  }

}


/* ======= Video - Desktop+ ======= */

@media (min-width: 992px) {

  .video {
    padding: 70px 0;
    margin: 0 auto;
    max-width: 680px;
  }

}


/* ======= Video - Large Desktop+ ======= */

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



/*===============================
	 Beleifs
===============================*/


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

.homepage-belief {
  padding: 40px 30px;
}

.featured-header-title {
  margin-bottom: 20px;
}

.header-title {
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
  font-family: var(--primary-font);
}

.blue-bar {
  position: relative;
  z-index: 0;
}

.blue-bar::after {
  content: "";
  position: absolute;
  width: calc(100% + 18px);
  height: 13px;
  left: -8px;
  bottom: 4px;
  background: url('../png/highlight-beliefs.png') no-repeat;
  background-size: 100%;
  z-index: -1;
}

.heading {
  font-size: 24px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
  font-weight: 500;
  font-family: var(--secondary-font);
}

.para {
  font-size: 16px;
  line-height: 2;
  color: #ffffff;
  margin: 0;
  font-family: var(--para-font);
}

.featured-belief-content .para {
  margin: 25px 0 40px;
}

.para a {
  text-decoration: underline;
}

.para.small {
  font-size: 13px !important;
  opacity: .5;
  font-style: italic;
}

.featured-img {
  margin: 0 -15px;
}

.image {
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/* Beleives */

.believe > article {
  margin: 40px 0;
}

.believe > article:last-child {
  margin-bottom: 0;
}

.believe article .heading {
  font-size: 22px;
}

.believe article .para {
  line-height: 1.5;
  margin: 15px 0;
}

.tagline {
  font-size: 13px;
  line-height: 1.2;
  margin: 0;
  color: rgba(255,255,255,0.3);
  font-family: var(--para-font);
  text-transform: uppercase;
}

.tagline.give-button {
  font-size: 11px;
  color: rgba(255,255,255,.4);
	margin: 0;
  line-height: 1.2;
  letter-spacing: unset;
  font-family: var(--para-font);
  background-color: transparent;
	text-decoration: underline;
	font-weight: 800;
}

/* End Beleives */

/* ======= Beleifs - Large Mobile+ ======= */

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


/* ======= Beleifs - Tablet+ ======= */

@media (min-width: 768px) {

  .homepage-belief {
    padding: 50px;
  }

  .featured-belief {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .belief-content,
  .featured-belief .featured-img {
    width: 50%;
  }

  .homepage-belief .belief-content {
    padding-left: 50px;
    order: 1;
  }

  .homepage-belief .featured-img {
    order: 0;
  }
  
  .featured-header-title {
    margin-bottom: 40px;
  }
  
  .header-title {
    font-size: 50px;
  }
  
  .blue-bar::after {
    width: calc(100% + 34px);
    height: 22px;
    left: -20px;
  }
  
  .heading {
    font-size: 30px;
  }
  
  .para {
    font-size: 20px;
  }

  .featured-belief-content .para {
    margin: 40px 0 0;
  }
  
  .featured-img {
    margin: 0;
  }

  .image {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
  
  /* Beleives */
  
  .believe {
    padding-top: 70px;
    display: flex;
    flex-grow: 1;
    
  }

  .believe > article {
    margin: 0;
    width: 33.33%;
    padding: 0 25px;
  }

  .believe > article:first-child {
    padding-left: 0;
  }

  .believe > article:last-child {
    padding-right: 0;
  }
  
  .believe article .heading {
    font-size: 26px;
  }

  .believe article .para {
    margin: 18px 0;
    font-size: 18px;
  }
  
  .tagline {
    line-height: 2;
  }
  
  /* End Beleives */

}


/* ======= Beleifs - Desktop+ ======= */

@media (min-width: 992px) {

  .homepage-belief {
    padding: 70px 50px;
  }

}


/* ======= Beleifs - Large Desktop+ ======= */

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

/*===============================
  Blacksburg
===============================*/


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

.blacksburg {
  padding: 40px 30px 80px;
}

.blacksburg .blue-bar::after {
  background: url('../png/highlight-blacksburg.png') no-repeat;
  background-size: 100%;
}

.blacksburg-today article {
  padding: 40px 0;
}

.blacksburg-today .para {
  margin-top: 25px;
}

/* ======= Blacksburg - Large Mobile+ ======= */

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


/* ======= Blacksburg - Tablet+ ======= */

@media (min-width: 768px) {

  .blacksburg {
    padding: 50px;
  }

  .blacksburg .belief-content {
    padding-right: 25px;
  }

  .blacksburg .featured-belief .featured-img {
    padding-left: 25px;
  }

  .blacksburg-today article {
    padding: 70px 15px;
    max-width: 700px;
    margin: 0 auto;
  }

  .blacksburg-today .heading,
  .blacksburg-today .para {
    text-align: center;
  }

  .blacksburg-today .para {
    margin-top: 30px;
  }
}


/* ======= Blacksburg - Desktop+ ======= */

@media (min-width: 992px) {

  .blacksburg {
    padding: 70px 50px;
  }
}


/* ======= Blacksburg - Large Desktop+ ======= */

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

/*===============================
    Leadership
===============================*/


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

.leadership {
  padding: 70px 30px 50px;
  background-color: var(--light-bg-color);
}

.leadership .blue-bar::after {
  background: url('../png/highlight-leadership.png') no-repeat;
  background-size: 100%;
}

.leadership .featured-belief > .featured-img {
  display: none;
}

.leadership .belief-content .featured-belief-content > .featured-img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.leadership .featured-belief-content .para {
  margin: 25px 0;
  line-height: 1.8;
}

.leadership-today {
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ======= Leadership - Large Mobile+ ======= */

@media (min-width: 480px) {

  .leadership .belief-content .featured-belief-content > .featured-img {
    float: left;
    margin: 30px 30px 20px 0;
    width: 200px;
  }

}


/* ======= Leadership - Tablet+ ======= */

@media (min-width: 768px) {

  .leadership {
    padding: 50px;
    background-color: initial;
  }

  .leadership .featured-header-title {
    margin-bottom: 50px
  }

  .leadership .header-title {
    display: flex;
    justify-content: center;
  }

  .leadership .featured-belief {
    padding: 30px;
    background-color: var(--light-bg-color);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
  
  .leadership .featured-belief > .featured-img {
    display: block;
    width: 30%;
  }

  .leadership .featured-belief > .featured-img > .image {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
  
  .leadership .belief-content .featured-belief-content > .featured-img {
    display: none;
  }
  
  .leadership .belief-content {
    width: 70%;
    padding-left: 50px;
  }

  .leadership .featured-belief-content .heading {
    font-size: 26px;
  } 

  .leadership .featured-belief-content .para {
    font-size: 18px;
    margin: 20px 0;
  }
  
  .leadership-today {
    padding: 50px 100px 30px;
    border-top: 0;
  }

}


/* ======= Leadership - Desktop+ ======= */

@media (min-width: 992px) {

  .leadership {
    padding: 70px 50px;
  }

  .leadership-today {
    padding: 50px 250px 30px;
  }

}


/* ======= Leadership - Large Desktop+ ======= */

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

/*===============================
    Sermons
===============================*/

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

.sermons {
  margin-top: 70px;
  background-color: var(--light-bg-color);
}

.sermons .container {
  padding: 70px 30px 50px;
}

.sermons .blue-bar::after {
  background: url('../png/highlight-beliefs.png') no-repeat;
  background-size: 100%;
}

.sermons .heading {
  margin-top: 15px;
}

.featured-sermon-img {
  display: table;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.featured-sermon-img img {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

/* ======= Sermons - Large Mobile+ ======= */

@media (min-width: 480px) {

}


/* ======= Sermons - Tablet+ ======= */

@media (min-width: 768px) {

  .sermons {
    margin-top: 0px;
    margin-bottom: 30px
  }
  .sermons .container {
    padding: 50px;
  }

  .sermons .featured-header-title {
    margin-bottom: 50px
  }

  .sermons .header-title {
    display: flex;
    justify-content: center;
  }

  .sermons .heading {
    margin-top: 20px;
    text-align: center;
  }

  .featured-sermons {
    display: flex;
    margin: 10px -10px;
  }
  
  .featured-sermon-img {
    width: calc(33.33% - 20px);
    margin: 0 10px;
  }

}


/* ======= Sermons - Desktop+ ======= */

@media (min-width: 992px) {

  .sermons .container {
    padding: 70px 50px;
  }

  .featured-sermons {
    margin: 25px -20px;
  }

  .featured-sermon-img {
    width: calc(33.33% - 40px);
    margin: 0 20px;
  }

}


/* ======= Sermons - Large Desktop+ ======= */

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


/*===============================
    FAQ
===============================*/

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

.featured-faq {
  padding: 70px 30px 50px;
}

.featured-faq .header-title > .blue-bar::after {
  content: initial;
}

.featured-faq .header-title > .blue-bar > .blue-bar:nth-child(1)::after {
  background: url('../png/highlight-faq-mobile-01.png') no-repeat;
  background-size: 100%;
}

.featured-faq .header-title > .blue-bar > .blue-bar:nth-child(2)::after {
  background: url('../png/highlight-faq-mobile-02.png') no-repeat;
  background-size: 100%;
}

.faq-accordian {
  margin: 30px -15px;
  background-color: #20252C;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.accordian-tiles {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.accordian-tiles:last-child {
  border-bottom: 0px;
}

.accordian-tiles.js-open {
  background-color: var(--light-bg-color);
}

.accordian-tiles > h3 {
  position: relative;
  cursor: pointer;
  font-weight: 600;
  padding: 30px 50px 30px 15px;
}

.accordian-content p.para {
  padding: 0 50px 30px 15px;
  line-height: 1.8;
}

.accordian-content {
  display: none;
}

.accordian-tiles:first-child .accordian-content {
  display: block;
}

.accordian-btn {
  position: absolute;
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  right: 10px;
}

.bar-1,
.bar-2 {
  width: 10px;
  height: 2px;
  position: absolute;
  background-color: #93959a;
  -webkit-transition: background-color .25s, -webkit-transform .25s .3s;
  transition: background-color .25s, -webkit-transform .25s .3s;
  transition: background-color .25s, transform .25s .3s;
  transition: background-color .25s, transform .25s .3s, -webkit-transform .25s .3s;
}

.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);
}

.accordian-tiles.js-open div > .bar-2 {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  -webkit-transition: background-color .25s, -webkit-transform .25s 0s;
  transition: background-color .25s, -webkit-transform .25s 0s;
  transition: background-color .25s, transform .25s 0s;
  transition: background-color .25s, transform .25s 0s, -webkit-transform .25s 0s;
}


/* ======= FAQ - Large Mobile+ ======= */

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


/* ======= FAQ - Tablet+ ======= */

@media (min-width: 768px) {

  .featured-faq {
    padding: 50px;
  }

  .featured-faq .header-title,
  .featured-faq .header-title > .blue-bar {
    display: flex;
    justify-content: center;
  }

  .featured-faq .header-title > .blue-bar::after {
    content: "";
    background: url('../png/highlight-faq-tablet+.png') no-repeat;
    background-size: 100%;
  }
  
  .featured-faq .header-title > .blue-bar > .blue-bar::after {
    content: initial;
  }

  .faq-accordian {
    margin: 50px auto;
    max-width: 730px;
  }

  .accordian-tiles > h3 {
    font-size: 18px;
    padding: 30px 60px 30px 30px;
  }

  .accordian-content p.para {
    padding: 0 60px 30px 30px;
    font-size: 16px;
  }

  .accordian-btn {
    right: 24px;
  }

}


/* ======= FAQ - Desktop+ ======= */

@media (min-width: 992px) {

  .featured-faq {
    padding: 70px 50px;
  }

}

/* ======= FAQ - Large Desktop+ ======= */

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

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

.partner {
  padding: 70px 30px 50px;
}

.featured-partner {
  margin: 0 -15px;
}

.featured-partner.believe > article > div {
  padding: 30px;
  background-color: var(--light-bg-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.give-button {
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 2.8px;
  font-family: var(--para-font);
  background-color: #4D7EAA80;
  border: 0;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

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


/* ======= Partner - Large Mobile+ ======= */

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


/* ======= Partner - Tablet+ ======= */

@media (min-width: 768px) {

  .partner {
    padding: 50px;
  }

  .partner .featured-header-title > .header-title,
  .partner .featured-belief-content > .heading {
    text-align: center;
  }

  .featured-partner {
    margin: 0;
  }

  .featured-partner.believe > article {
    margin: 0 25px;
    padding: 0;
  }

  .featured-partner.believe > article:first-child {
    margin-left: 0;
  }

  .featured-partner.believe > article:last-child {
    margin-right: 0;
  }
}


/* ======= Partner - Desktop+ ======= */

@media (min-width: 992px) {

  .partner {
    padding: 70px 50px;
  }

}


/* ======= Partner - Large Desktop+ ======= */

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


/*===============================
	Newsletter
===============================*/


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

.newsletter {
  padding: 70px 30px 50px;
}

.newsletter .blue-bar::after {
  background: url(../png/highlight-newsletter.png) no-repeat;
  background-size: 100%;
}

.newsletter-form {
  margin: 30px -15px;
  padding: 30px;
  background-color: #262C34;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.form-field .gform_wrapper .gfield {
  margin-bottom: 12px;
}

.form-field .gform_wrapper .gfield:last-child {
  margin-bottom: 0;
}

.form-field .gform_wrapper label.gfield_label, 
.form-field .gform_wrapper legend.gfield_label {
  color: #ffffff;
  font-weight: 600;
  font-family: var(--para-font);
  margin-bottom: 10px;
}

.form-field .gform_wrapper .gform_heading .gform_required_legend {
  display: none;
}

.form-field .gform_wrapper .gfield_required {
  color: #c16c6c !important;
}

.form-field .gform_wrapper input {
  color: #ffffff;
  font-size: 14px;
  font-family: var(--para-font);
}

.form-field .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 400;
  background-color: var(--light-bg-color);
  font-family: var(--para-font);
  border-radius: 5px;
}

.form-field .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 10px;
}

.form-field .gform_wrapper textarea {
  border: 2px solid #ffffff40;
  font-size: 14px !important;
  letter-spacing: 1px;
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
  background-color: var(--light-bg-color);
  font-family: var(--para-font);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px
}

.form-field .gform_wrapper textarea:focus {
  outline: 0;
  border: 2px solid #ffffff;
}

.form-field .gform_wrapper .gfield_error textarea:focus {
  border: 2px solid #ffffff;
}

.form-field .gform_wrapper input[type=text],
.form-field .gform_wrapper input[type=email] {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  height: 40px;
  border: 2px solid #ffffff40;
}

.form-field .gform_wrapper input[type=text]:focus,
.form-field .gform_wrapper input[type=email]:focus,
.form-field .gform_wrapper select:focus {
  outline: 0;
  border: 2px solid #ffffff;
}

.form-field .gform_wrapper .gfield_error input[type=text]:focus,
.form-field .gform_wrapper .gfield_error input[type=email]:focus,
.form-field .gform_wrapper .gfield_error select:focus {
  border: 2px solid #ffffff;
}

.form-field .gform_wrapper.gravity-theme .gchoice {
  margin-bottom: 15px;
}
 
.form-field .gform_wrapper .gchoice input[type=checkbox] {
  display: none !important;
}

.form-field .gform_wrapper.gravity-theme .gfield-choice-input+label {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
  font-family: var(--para-font);
}

.form-field .gform_wrapper .gchoice input[type=checkbox] + label {
  padding-left: 28px;
  position: relative;
  z-index: 0;
}

.form-field .gform_wrapper .gchoice input[type=checkbox] + label::after {
  content: '';
  background-color: transparent;
  border: 1px solid #ffffff80;
  height: 18px;
  width: 18px;
  position: absolute;
  left: 0px;
  top: 0px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
} 

.form-field .gform_wrapper .gchoice input[type=checkbox]:checked + label::after {
  background-color: #FFFFFF;
}

.form-field .gform_wrapper .gchoice input[type=checkbox] + label::before {
  content: '';
  background-color: transparent;
  height: 18px;
  width: 18px;
  position: absolute;
  left: 3px;
  top: 4px;
} 

.form-field .gform_wrapper .gchoice input[type=checkbox]:checked + label::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  z-index: 1;
  border: 1px solid #262C34;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.form-field .gform_footer input {
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 2.8px;
  font-family: var(--para-font);
  background-color: #4D7EAA;
  border: 0;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

/* ======= Newsletter - Large Mobile+ ======= */

@media (min-width: 480px) {

}


/* ======= Newsletter - Tablet+ ======= */

@media (min-width: 768px) {

  .newsletter {
    padding: 50px;
  }

  .newsletter .featured-header-title > .header-title,
  .newsletter .featured-belief-content > .heading {
    text-align: center;
  }

  .newsletter-form {
    margin: 50px auto;
    max-width: 600px;
  }

}


/* ======= Newsletter - Desktop+ ======= */

@media (min-width: 992px) {

  .newsletter {
    padding: 70px 50px;
  }

}

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

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

.footer {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--light-bg-color);
}

.footer-img {
  width: 100px;
}

.footer .tagline {
  font-size: 11px;
  text-transform: initial;
}

.phone a {
  text-decoration: underline;
  color: rgba(255,255,255,.4) !important;
}

/* ======= Footer - Mobile ONLY ======= */

@media (max-width: 580px) {

  .footer {
    flex-direction: column;
  }

  .footer > * {
    margin-bottom: 15px;
  }

  .footer > *:last-child {
      margin-bottom: 0px;
  }

}

/* ======= Footer - Large Mobile+ ======= */

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


/* ======= Footer - Tablet+ ======= */

@media (min-width: 768px) {

  .footer {
    margin: 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

  .footer-img {
    width: 140px;
  }
}


/* ======= Footer - Desktop+ ======= */

@media (min-width: 992px) {

  .footer {
    padding: 30px 50px;
  }
}


/* ======= Footer - Large Desktop+ ======= */

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

/* ======= Newsletter - Large Desktop+ ======= */

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

/*===============================
    Donate
===============================*/


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

.donate {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 200;
  width: 100%;
  height: 100vh;
  position: fixed;
  overflow-y: auto; 
  background-color: var(--bg-color);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
  -webkit-transition: opacity .3s;
  -moz-transition: opacity .3s;
  -ms-transition: opacity .3s;
  -o-transition: opacity .3s;
}

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

.featured-donate {
  position: relative;
  padding: 40px 30px 80px;
} 

.featured-donate > .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 55px;
  margin: 0;
}


/* .donate .blue-bar::after {
  background: url(../png/highlight-almost-done.png) no-repeat;
  background-size: 100%;
} */

.donate-content .featured-belief-content .para {
  margin-bottom: 20px;
  font-weight: 400;
}

.donate-content .heading {
  text-align: left !important;
}

.donate-accordian .accordian-tiles > .para {
  padding: 10px 0;
  margin: 5px 0 20px;
  display: flex;
  align-items: center;
  opacity: .3;
  font-size: 13px;
  transition: opacity .3s;
  -webkit-transition: opacity .3s;
  -moz-transition: opacity .3s;
  -ms-transition: opacity .3s;
  -o-transition: opacity .3s;
}

.donate-accordian > .accordian-tiles.js-open > .para {
  background-color: initial;
  opacity: .7;
}

.donate-accordian .accordian-content p.para {
  padding: 0;
  margin: 0 0 15px 0;
  opacity: .7;
}

.donate-accordian .accordian-content p.para:last-child {
  margin-bottom: 30px;
}

.donate-accordian .accordian-btn {
  position: relative;
  top: initial;
  right: initial;
  margin-left: 5px;
}

.donate-accordian > .accordian-tiles.js-open {
  background-color: initial;
}

.donate-accordian > .accordian-tiles:first-child .accordian-content {
  display: none;
}

.donate-form {
  padding: 30px;
  margin: 30px -15px;
  background-color: #262C34;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.form-field .gform_wrapper .gfield_radio {
  /* display: flex;
  align-items: center; */
}

.form-field .gform_wrapper .gfield_radio .gchoice:nth-child(2) {
  margin-left: 30px;
}

.manage-giving.form-field .gform_wrapper .gfield_radio .gchoice:nth-child(2) {
  margin-left: 0;
}

.form-field .gform_wrapper .gfield_radio .gchoice input[type=radio] {
  display: none !important;
}

.form-field .gform_wrapper .gfield_radio .gchoice label {
  display: inline;
}

.form-field .gform_wrapper .gfield_radio .gchoice label:first-child {
  margin-left: 0px;
}

.form-field .gform_wrapper .gfield_radio .gchoice input[type=radio] + label {
	padding-left: 30px !important;
  position: relative;
  font-size: 13px;
  font-weight: 500;
}

.form-field .gform_wrapper .gfield_radio .gchoice input[type=radio]:checked + label {
  color: #ffffff;
  font-weight: 500;
}

.form-field .gform_wrapper .gfield_radio .gchoice input[type=radio] + label:before {
	content: '';
	background-color: transparent;
	border: #262C34 solid 2px;
	-webkit-box-shadow: 0px 0px 0px 3px #ffffff80;
	        box-shadow: 0px 0px 0px 3px #ffffff80;
	border-radius: 50%;
  height: 14px;
  width: 14px;
  position: absolute;
  left: 3px;
  top: 0px;
}

.form-field .gform_wrapper .gfield_radio .gchoice input[type=radio]:checked + label::before {
	content: '';
	background-color: #ffffff;
	border: #262C34 solid 2px;
	-webkit-box-shadow: 0px 0px 0px 2px #ffffff;
	        box-shadow: 0px 0px 0px 2px #ffffff;
	border-radius: 50%;
  height: 14px;
  width: 14px;
  position: absolute;
  left: 3px;
  top: 0px;
}

.form-field .gform_wrapper .gfield_radio .gchoice input[type=radio] + label:before,
.form-field .gform_wrapper .gfield_radio .gchoice input[type=radio] + label:before  {
  -webkit-box-shadow: 0px 0px 0px 2px #ffffff80;
          box-shadow: 0px 0px 0px 2px #ffffff80;
}

.form-field .gform_wrapper .gfield_radio .gchoice input[type=radio]:checked + label:before,
.form-field .gform_wrapper .gfield_radio .gchoice input[type=radio]:checked + label:before {
  -webkit-box-shadow: 0px 0px 0px 2px #ffffff;
          box-shadow: 0px 0px 0px 2px #ffffff;
  background-color: #ffffff;
}

.form-field .gravity-theme .ginput_full[data-payment-element=false] .StripeElement {
  background-color: initial;
  border: 2px solid #ffffff40;
  height: 40px;
  padding: 10px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.form-field .gform_wrapper.gravity-theme .gform_footer {
  padding: 0;
  margin: 30px 0 0;
}

.form-field .gform_wrapper.gravity-theme .gform_footer input {
  margin-bottom: 0;
}


/* ======= Donate - Large Mobile+ ======= */

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


/* ======= Donate - Tablet+ ======= */

@media (min-width: 768px) {

  .featured-donate {
    padding: 50px;
  }

  .donate-form {
    margin: 0;
  }
}


/* ======= Donate - Desktop+ ======= */

@media (min-width: 992px) {

  .featured-donate {
    padding: 70px 50px;
    display: flex;
    flex-wrap: wrap;
  }

  .donate-content {
    width: 50%;
    padding-right: 50px;
  }

  .donate-container {
    width: 50%;
    padding-left: 50px;
  }

}


/* ======= Donate - Large Desktop+ ======= */

@media (min-width: 1200px) {

  .featured-donate > .close {
    right: -45px;
  }

}

/*===============================
=================================
============ Template ===========
=================================
===============================*/


/*===============================
	Template-Almose-Done
===============================*/

.single-page {
  position: relative;
  padding: 100px 30px 0;
  min-height: calc(100vh - 180px);
}

.single-page .featured-header-title {
  margin-bottom: 30px;
}

.confirmation > .featured-header-title .blue-bar::after {
  background: url(../png/highlight-thank-you.png) no-repeat;
  background-size: 100%;
}

.almost-done > .featured-header-title .blue-bar::after {
  background: url(../png/highlight-almost-done.png) no-repeat;
  background-size: 100%;
}

.entry-content > * {
  max-width: 100%;
  margin: 20px 0;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
  font-weight: 500;
  font-family: var(--secondary-font);
}

.entry-content h2 {
  font-size: 24px;
}

.entry-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  margin: 30px 0;
  font-family: var(--para-font);
}

.entry-content a {
  text-decoration: underline;
}

.entry-content li {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  font-family: var(--para-font);
  list-style: disc;
  margin-left: 20px;
  opacity: .9
}


/* ======= Template-Almose-Done - Mobile+ ======= */


/* ======= Template-Almose-Done - Large Mobile+ ======= */

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


/* ======= Template-Almose-Done - Tablet+ ======= */

@media (min-width: 768px) {

  .single-page {
    padding: 150px 50px 0;
    min-height: calc(100vh - 220px);
  }
  
  .entry-content > * {
    margin: 50px 0;
  }
  
  .entry-content h2 {
    font-size: 30px;
  }
  
  .entry-content p {
    font-size: 20px;
  }

  .entry-content li {
    font-size: 20px;
  }

}


/* ======= Template-Almose-Done - Desktop+ ======= */

@media (min-width: 992px) {

  .single-page {
    padding: 180px 50px 0;
  }
  
  .single-page .featured-header-title {
    margin-bottom: 50px;
  }
  
  .entry-content > * {
    margin: 50px 0;
  }
  
  .entry-content h2 {
    font-size: 30px;
  }
  
  .entry-content p {
    font-size: 20px;
  }

  .entry-content li {
    font-size: 20px;
  }

}


/* ======= Template-Almose-Done - 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) {}