/*============= ROOT =============*/ 
:root {
  --primary-color: #274F99;
  --dark-color: #1d252c;
  --light-color: #fff;

  --font-montserrat: 'Montserrat', sans-serif;
  --font-montserrat-bold: 'Montserrat Bold', sans-serif;

  --gradient: linear-gradient(318deg, rgb(39, 79, 153) 0%, rgb(67, 107, 142) 53%, rgb(32, 136, 140) 100%);
}

/*-- Fonts -- */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat Title';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url('../fonts/Montserrat-Title.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat Bold';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
}

/*============= Start General Utilities =============*/

section {
  padding: 150px 100px;
}

h1 {
  font-size: 36px;
  color: var(--primary-color);
  font-family: var(--font-montserrat-bold);
}

h2 {
  font-size: 28px;
  color: var(--dark-color);
  font-family: var(--font-montserrat-bold);
}

p {
  margin-bottom: 24px;
  color: var(--dark-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
}

ul,
li {
  list-style: none;
  font-family: var(--font-montserrat);
}

button {
  background: none;
  border: none;
  outline: none;
  color: var(--dark-color);
}

button:focus,
a:focus {
  outline: 0;
  box-shadow: none;
}

a,
a:hover {
  text-decoration: none;
  color: var(--dark-color);
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--light-color);
  /* -webkit-box-shadow: 0 0 0px 1000px #fff inset; */
  transition: background-color 5000s ease-in-out 0s;
}

/*-- Start Buttons --*/

.primary-btn {
  position: relative;
  max-width: 100%;
}

.primary-btn a {
  display: inline-block;
  width: auto;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--light-color);
  background-color: var(--primary-color);
  font-family: var(--font-montserrat-bold);
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 1px;
  border-style: solid;
  border-color: var(--primary-color);
  border-width: 2px 2px 2px 2px;
  border-radius: 100px 100px 100px 100px;
  box-shadow: 0px 0px 15px 0px rgb(39 79 153 / 70%);
  padding: 15px 32px 14px 32px;
}

.primary-btn a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0px 0px 20px 2px rgb(39 79 153);
}

/*-- End Buttons --*/ 
/*============= End General Utilities =============*/

/*============= START PRELOADER =============*/ 
.pre-loader {
  position: fixed;
  overflow: hidden;
  background: var(--light-color);
  height: 110%;
  width: 110%;
  z-index: 3000;
  transition: all 0.85s ease;
}

.loader-inner {
  position: absolute;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%, -50%);
}

.loader {
  display: inline-block;
  position: relative;
  color: var(--primary-color);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: animloader44 2s linear infinite;
  -webkit-animation: animloader44 2s linear infinite;
}

.pre-loader.loaded {
  opacity: 0;
  z-index: 0 !important;
}

html.html-loaded {
  overflow-y: overlay !important;
  overflow-y: visible;
}

@keyframes animloader44 {
  0% {
    box-shadow: 14px 0 0 -2px,  38px 0 0 -2px, -14px 0 0 -2px,  -38px 0 0 -2px;
  }

  25% {
    box-shadow: 14px 0 0 -2px,  38px 0 0 -2px, -14px 0 0 -2px,  -38px 0 0 2px;
  }

  50% {
    box-shadow: 14px 0 0 -2px,  38px 0 0 -2px, -14px 0 0 2px,  -38px 0 0 -2px;
  }

  75% {
    box-shadow: 14px 0 0 2px,  38px 0 0 -2px, -14px 0 0 -2px,  -38px 0 0 -2px;
  }

  100% {
    box-shadow: 14px 0 0 -2px,  38px 0 0 2px, -14px 0 0 -2px,  -38px 0 0 -2px;
  }
}
/*============= END PRELOADER =============*/

/*============= START BLOCK REVEAL ANIMATIONS =============*/ 
.pkg-anim {
  transform: translateX(235px);
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.pkg-anim[data-aos="pkg-anim"].aos-animate {
  transform: translateX(0);
}

.reveal-lr,
.reveal-rl,
.reveal-tb,
.reveal-bt {
  position: relative;
  overflow: hidden;
}

.span-animation[data-aos="span-left"].aos-animate,
.span-animation[data-aos="span-right"].aos-animate,
.span-animation[data-aos="span-top"].aos-animate {
  transform: translate(0, 0);
  opacity: 1;
}

.pricing-table-animation[data-aos="pricing-table"].aos-animate {
  transform: translateX(0);
}

.reveal-lr[data-aos=block-reveal].aos-animate > *,
.reveal-rl[data-aos=block-reveal].aos-animate > *,
.reveal-tb[data-aos=block-reveal].aos-animate > *,
.reveal-bt[data-aos=block-reveal].aos-animate > * {
  animation: fadeIn 0s 0.6s;
  animation-fill-mode: backwards;
}

.reveal-lr[data-aos=block-reveal]:not[aos-animate],
.reveal-rl[data-aos=block-reveal]:not[aos-animate],
.reveal-tb[data-aos=block-reveal]:not[aos-animate],
.reveal-bt[data-aos=block-reveal]:not[aos-animate] {
  opacity: 0;
}

.reveal-lr[data-aos=block-reveal].aos-animate::after,
.reveal-rl[data-aos=block-reveal].aos-animate::after,
.reveal-tb[data-aos=block-reveal].aos-animate::after,
.reveal-bt[data-aos=block-reveal].aos-animate::after {
  position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
}

.reveal-lr[data-aos=block-reveal].aos-animate::after {
  transform: translateX(-100%);
  animation: revealInLTR 0.6s 0s, revealOutLTR 0.6s 0.6s;
  animation-timing-function: cubic-bezier(1,0.01,0,1);
  animation-fill-mode: forwards;
}

.reveal-rl[data-aos=block-reveal].aos-animate::after {
  transform: translateX(100%);
	animation: revealInRTL 0.6s 0s, revealOutRTL 0.6s 0.6s;
  animation-timing-function: cubic-bezier(1,0.01,0,1);
	animation-fill-mode: forwards;
}

.reveal-tb[data-aos=block-reveal].aos-animate::after {
	transform: translateY(-100%);
	animation: revealInTTB 0.6s 0s, revealOutTTB 0.6s 0.6s;
  animation-timing-function: cubic-bezier(1,0.01,0,1);
	animation-fill-mode: forwards;
}

.reveal-bt[data-aos=block-reveal].aos-animate::after {
  transform: translateY(100%);
	animation: revealInBTT 0.6s 0s, revealOutBTT 0.6s 0.6s;
  animation-timing-function: cubic-bezier(1,0.01,0,1);
	animation-fill-mode: forwards;
}

[data-aos^=block-reveal][data-aos^=block-reveal] {
  opacity: 0;
  transition-property: opacity,transform;
}

[data-aos^=block-reveal][data-aos^=block-reveal].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes revealInLTR {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0);
	}
}

@keyframes revealOutLTR {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(101%);
	}
}

@keyframes revealInRTL {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(0);
	}
}

@keyframes revealOutRTL {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-101%);
	}
}

@keyframes revealInTTB {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes revealOutTTB {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(101%);
	}
}

@keyframes revealInBTT {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes revealOutBTT {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-101%);
	}
}
/*============= END BLOCK REVEAL ANIMATIONS =============*/ 

/*============= START EXTERNAL LANDING PAGE =============*/

.ext-landing-page {
  display: flex;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 75px;
  padding-right: 75px;
  padding-bottom: 50px;
}

.ext-landing-page .ext-landing-page-inner {
  display: inline-block;
}

.ext-landing-page-inner img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.ext-landing-page-inner .ext-landing-bg {
  position: absolute;
  background: var(--gradient);
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 5%;
  left: 5%;
}

.ext-landing-page-inner .ext-landing-caption {
  position: absolute;
  padding: 15px 20px;
  background: var(--gradient);
  bottom: 20%;
  left: -5%;
}

.ext-landing-caption h1 {
  color: var(--light-color);
}

/*============= END EXTERNAL LANDING PAGE =============*/

/*============= IF FRAMEWORK FIXED NAVBAR IS JUMPING ON SCROLL =============
.fixed-top  {
	-webkit-backface-visibility: hidden;
}
*/

/*============= Start Framework =============*/
.container {
	max-width: 2100px;
	margin: 0 auto;
}

.p-fixed {
  position: fixed;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-hidden-x {
  overflow-x: hidden;
}

.overflow-hidden-y {
  overflow-y: hidden;
}

.w-100 {
  width: 100%;
}

.maxw-100 {
  max-width: 100%;
}

/*-- Start Spacing --*/	
.p-1 {
	padding: 0.25rem;
}

.m-auto {
	margin: auto !important;
}

.ml-auto {
	margin-left: auto;
}

.mr-auto {
	margin-right: auto;
}

.d-none {
	display: none;
}
	
.d-block {
	display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-inline {
  display: inline;
}
/*-- End Spacing --*/

/* Start Text */
.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

/* End Text */

/*-- Start Colors --*/
.bg-dark {
	background-color: var(--dark-color) !important;
}

.bg-green-contrast {
  background-color: rgba(0, 92, 88, 0.2) !important;
}

.text-white {
	color: var(--light-color);
}
/*-- End Colors --*/

/*-- Start Flexbox --*/
.d-flex {
	display: flex;
}

.justify-content-start {
	justify-content: flex-start;
}

.justify-content-center {
	justify-content: center;
}

.justify-content-end {
	justify-content: flex-end;
}

.justify-content-between {
	justify-content: space-between;
}

.align-items-start {
	align-items: flex-start;
}

.align-items-center {
	align-items: center;
}

.align-items-end {
	align-items: flex-end;
}

.flex-row {
  flex-flow: row;
}

.flex-1 {
	flex: 1;
}

.order-1 {
	order: 1;
}
	
.order-2 {
	order: 2;
}
	
.order-3 {
	order: 3;
}

.mt-5 {
  margin-top: 5rem;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-column {
	flex-direction: column;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
/*-- End Flexbox --*/

/*-- Start Grid System --*/
.grid, .grid-1, .grid-10, .grid-11, .grid-12, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9, .grid-auto, .grid-lg, .grid-lg-1, .grid-lg-10, .grid-lg-11, .grid-lg-12, .grid-lg-2, .grid-lg-3, .grid-lg-4, .grid-lg-5, .grid-lg-6, .grid-lg-7, .grid-lg-8, .grid-lg-9, .grid-lg-auto, .grid-md, .grid-md-1, .grid-md-10, .grid-md-11, .grid-md-12, .grid-md-2, .grid-md-3, .grid-md-4, .grid-md-5, .grid-md-6, .grid-md-7, .grid-md-8, .grid-md-9, .grid-md-auto, .grid-sm, .grid-sm-1, .grid-sm-10, .grid-sm-11, .grid-sm-12, .grid-sm-2, .grid-sm-3, .grid-sm-4, .grid-sm-5, .grid-sm-6, .grid-sm-7, .grid-sm-8, .grid-sm-9, .grid-sm-auto, .grid-xl, .grid-xl-1, .grid-xl-10, .grid-xl-11, .grid-xl-12, .grid-xl-2, .grid-xl-3, .grid-xl-4, .grid-xl-5, .grid-xl-6, .grid-xl-7, .grid-xl-8, .grid-xl-9, .grid-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.grid {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.grid-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.grid-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.grid-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.grid-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.grid-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.grid-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.grid-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.grid-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.grid-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.grid-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.grid-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.grid-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (max-width: 1767.98px) {
  .flex-flow-17 {
    flex-flow: column;
    padding-left: 25px;
  }
}

/* Devices under 1200px (lg) */
@media (max-width: 1199.98px) {
  .grid-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .grid-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .grid-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .grid-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .grid-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .grid-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .grid-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  
  .grid-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .grid-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .grid-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  
  .grid-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .grid-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Devices under 992px (md) */
@media (max-width: 991.98px) {
  .grid-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .grid-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .grid-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .grid-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .grid-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .grid-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .grid-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  
  .grid-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .grid-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .grid-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  
  .grid-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .grid-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Devices under 768px (sm) */
@media (max-width: 767.98px) {
  .grid-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .grid-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .grid-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .grid-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .grid-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .grid-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .grid-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  
  .grid-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .grid-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .grid-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  
  .grid-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .grid-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ext-landing-page {
    padding-left: 50px;
    padding-right: 50px;
  }

  .ext-landing-caption h1 {
    font-size: 28px;
  }
}

/* Devices under 568px (xs) */
@media (max-width: 576.98px) {
  .grid-xs-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .grid-xs-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .grid-xs-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .grid-xs-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .grid-xs-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .grid-xs-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .grid-xs-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  
  .grid-xs-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .grid-xs-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .grid-xs-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  
  .grid-xs-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .grid-xs-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ext-landing-page {
    padding-left: 35px;
    padding-right: 35px;
  }

  .ext-landing-page-inner .ext-landing-caption {
    bottom: 10%;
  }

  .ext-landing-caption h1 {
    font-size: 4.26vw;
  }
}

/* Devices under 382px (xxs) */
@media (max-width: 381.98px) {
  .grid-xxs-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .grid-xxs-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .grid-xxs-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .grid-xxs-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .grid-xxs-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .grid-xxs-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .grid-xxs-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  
  .grid-xxs-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .grid-xxs-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .grid-xxs-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  
  .grid-xxs-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .grid-xxs-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ext-landing-page {
    padding-left: 25px;
    padding-right: 25px;
  }

  .ext-landing-page-inner .ext-landing-bg {
    width: 0%;
  }

  .ext-landing-page-inner .ext-landing-caption {
    bottom: -3%;
    width: 100%;
  }

  .ext-landing-caption h1 {
    font-size: 5vw;
  }
}
/*-- End Grid System --*/
/*============= End Framework =============*/