#columns.container {
    max-width: 1440px;
}

.landing-page * {
    font-family: 'Montserrat', Arial, sans-serif;
    text-wrap: wrap;
}

.landing-page {
    position: relative;
    background: #fff;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 3rem;
}

.hero {
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: inherit;
}

.action-button > .btn {
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #452A06;
	border-radius: 14px;
	border: none;
	cursor: pointer;
	z-index: 5;
	width: 100%;
	height: 100%;
	padding: 1.6rem 6rem;
    box-shadow: 9px 6px 7.7px -2px #00000024;
	transition: transform 0.2s cubic-bezier(.4,0,.2,1), box-shadow 0.2s cubic-bezier(.4,0,.2,1);
}

.action-button > .btn:hover {
    transform: scale(1.05);
}

.action-button > .btn:focus {
    outline: unset !important;
}

.coin {
	position: absolute;
	width: 90px;
	height: 90px;
	background: url('/modules/aerpoints/views/img/coin.png') no-repeat center center;
	background-size: contain;
	z-index: 10;
}

.section-text-uppercase {
    text-transform: uppercase;
}

.section-text-heading {
    font-size: 22px;
}

.section-text {
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
}

.text-mobile-only {
    display: none;
}

/* COLORS */

.text-color-light-blue {
    color: #266DA9;
}

.text-color-dark-blue {
    color: #082145;
}

.text-color-white {
    color: #FFFFFF;
}

.light-blue-background {
    background-color: #DFEFFA !important;
}

.gold-gradient {
    background: linear-gradient(90deg, #EEC67F 0%, #C08E49 100%) !important;
}

.dark-blue-gradient {
    background: linear-gradient(90deg, #275689 1.92%, #3592BB 50.48%, #275789 100%) !important;
}


/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
    /* CSS */
    
  }
  
  /* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */
  
  @media (min-width: 1025px) and (max-width: 1280px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) {
    
    /* CSS */
    .action-button {
        width: 80%;
    }
    .action-button > .btn {
        padding: 1rem 2rem;
        font-size: 14px;
    }
    .coin {
        display: none;
    }
    .text-mobile-only {
        display: flex;
    }
    .section-four {
        justify-content: flex-start;
    }
    .section-text-heading {
        width:80%;
        margin:0 auto;
    }
    .section-text {
        width:80%;
        margin:0 auto;
    }
  }
  
  /* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    
    /* CSS */
    .action-button {
        width: 80%;
    }
    .action-button > .btn {
        padding: 1rem 2rem;
        font-size: 14px;
    }
    .coin {
        display: none;
    }
    .text-mobile-only {
        display: flex;
    }
    .section-four {
        justify-content: flex-start;
    }
    .section-heading {
        width:80%;
        margin:0 auto;
    }
    .section-text {
        width:80%;
        margin:0 auto;
    }
  }
  
  /* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */
  
  @media (min-width: 481px) and (max-width: 767px) {
    
    /* CSS */
    .action-button {
        width: 80%;
    }
    .action-button > .btn {
        padding: 1rem 2rem;
        font-size: 12px;
    }
    .coin {
        display: none;
    }
    .text-mobile-only {
        display: flex;
    }
    .section-four {
        justify-content: flex-start;
    }
    .section-text-heading {
        font-size: 14px;
        width:80%;
        margin:0 auto;
    }
    .section-text {
        font-size: 12px;
        width:80%;
        margin:0 auto;
    }
  }
  
  /* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */
  
  @media (min-width: 320px) and (max-width: 480px) {
    
    /* CSS */
    .action-button {
        width: 80%;
    }
    .action-button > .btn {
        padding: 1rem 2rem;
        font-size: 12px;
    }
    .coin {
        display: none;
    }
    .text-mobile-only {
        display: flex;
    }
    .section-four {
        justify-content: flex-start;
    }
    .section-text-heading {
        font-size: 14px;
        width:80%;
        margin:0 auto;
    }
    .section-text {
        font-size: 12px;
        width:80%;
        margin:0 auto;
    }
  }