
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary: "Dongle", sans-serif;
}

/* Colors */
:root {
  --color-default: #004f82;
  --color-primary: #fff;
  --color-secondary: #f9c200;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}
body {
    background-image: url(../img/about/bg_top.jpg);
}
a {
  color: var(--color-secondary);
  text-decoration: none;
}

a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  color: var(--color-default);
  
}
.esconder{
	visibility: hidden;
	/*display: none;*/
}
.centro{
	width: 100%;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0208bf;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffd500;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Apply now button
--------------------------------------------------------------*/
.apply-now {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0208bf;
  width: 100px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.apply-now i {
  font-size: 28px;
  color: #f9c200;
  line-height: 0;
}

.apply-now:hover {
  background: #ffd500;
  color: #f9c200;
}

.apply-now.active {
  visibility: visible;
  opacity: 1;
  color: white;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  /**background: #fff;
  transition: all 0.7s;**/
  z-index: 997;
  padding: 5px 0;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
/*#header {
  height: 80px;
  transition: all .5s ease-out;
  z-index: 997;
  transition: all 0.5s;
  background: transparent;
}**/
#header.header-scrolled {
  background: rgba(255, 255, 255, 1);
  height: 60px;
}


#header .navbar-brand{
	background: url(../img/ebvlogo.svg);
	background-repeat:no-repeat;
	/**background-position: 15px 0;**/
	height:50px;
	padding: 0px;
}
#header .navbar-brand h1{
	color: white;
	margin:0px;
	font-size:1.53em;
	font-weight:400px;
	padding-left:70px;
}
#header .navbar-brand span.subhead{
	display:block;
	/**font-family: 'Roboto Slab', serif;**/
	font-family: 'MonteCarlo', cursive;
	font-size:1.2em;
	font-weight:100px;	
}	

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  margin-left:0px;
  border-left: 1px solid #f9c200;
}

.header-social-links a {
  color: #004f82;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  padding-left: 10px;
}

.header-social-links a i {
  line-height: 0;
}

.header-social-links a:hover {
  color: #ffd500;
}

@media (max-width: 768px) {
  .header-social-links {
    padding: 0 15px 0 0;
    border-left: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 5px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600px;
  color: #004F82;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffd500;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #ffd500;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500px;
  text-transform: none;
  color: #111;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ffd500;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ffd500;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #ffd500;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: rgba(2, 8, 191, 0.9);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ffd500;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ffd500;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  background-color: #ffd500;
  padding: 10px 0px 30px 0px;
  overflow: hidden;
  /*border-top: 2px solid rgba(238, 200, 86, .5);*/
}

.section-bg {
  background-color: #f7f7f7;
}

.section-title {
  text-align: center;
  padding-bottom: 35px;
 font-family: 'Dongle';
  color: #004f83;
 font-weight: 300;

}

.section-title h2 {
  font-size: 52px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: red;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 2.5em;
  line-height: 1;
  color: #004f83;
}
.section-title p.azul {
  color: blue
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs  p {
  color: #004f82;
  margin: 0px;
}
.breadcrumbs nav {
  background-color: #ffd500;
  padding-top:70px;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: #004f82;
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
  Color:red;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 5px;
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.img-fluid {
    max-width: 100%;
    height: auto%;
}

.about-bg {
  background-color: #ffd500;
}

.about {
  padding-bottom: 0;
}

.about .img-bg {
	
  min-height: 500px;
  background-size: cover;
}

.about .slides {
  background-color: #f7f9fc;
}

.about h3 {
  font-size: 50px;
  font-weight: 700;
  color: var(--color-secondary);
}

.about h4 {
  font-size: 2em;
  font-weight: 400px;
  color: #004f83;
  font-family: var(--font-secondary);
}
.about h5 {
  font-size: 2.3em;
  font-weight: 400px;
  color: #004f83;
  font-family: var(--font-secondary);
}
.about p {
    color: #004f83;
    font-size: 20px;
    margin-bottom: 1px;
    text-align: justify;
}

.about .section-title p {
  margin-bottom: 0;
  font-size: 2.5em;
  line-height: 1;
  color: #004f83;
  text-align: center;
}
.about .swiper {
  margin: 50px 50px 12px 50px;
  overflow: hidden;
}

.about .swiper-button-prev:after,
.about .swiper-button-next:after {
  font-size: 24px;
  color: var(--color-secondary);
}

.about .swiper-button-prev {
  left: 10px;
}

.about .swiper-button-next {
  right: 10px;
}

.about .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.about .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--color-secondary);
}

.about .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 1200px) {
  .about .swiper {
    margin: 60px 60px 40px 60px;
  }

  .about .swiper-button-prev,
  .about .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .about .swiper {
    margin: 40px 40px 20px 40px;
  }
}

.about {
  padding: 0 0 30px 0;
}

/*--------------------------------------------------------------
# deib Section
--------------------------------------------------------------*/
#deib {
  background-color: #ffd500;
  padding: 15px 0 30px 0;
}

#deib .deib {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.btn-primary {
  margin-top: 10px;
}
#deib h2{
line-height: .78;
}
/*--------------------------------------------------------------
# team Section
--------------------------------------------------------------*/
#team {
  background-color: white;
  padding: 30px 0 30px 0;
}

#team .team {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#team .team .details {
	background: rgba(2, 82, 191, 0.76);
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  text-align: center;
  padding-top: 10px;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#team .team .details h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

#team .team .details p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
  font-style: italic;
}

#team .team .details .social {
  height: 40px;
}

#team .team .details .social i {
  line-height: 0;
  margin: 0 2px;
}

#team .team .details a {
  color: #fff;
}

#team .team .details a:hover {
  color: #f9c300;
}

#team .team:hover .details {
  bottom: 0;
}

#team-details {
  padding: 60px 0;
}
#team-details {
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.75);
   /* background: none repeat scroll 0 0 rgba(198, 160, 45, 0.75);*/
    padding: 0 15px;
}
#team-details .details h2 {
  color: #112363;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

#team-details .details .social {
  margin-bottom: 15px;
}

#team-details .details .social a {
  background: #e9edfb;
  color: #112363;
  line-height: 1;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#team-details .details .social a:hover {
  background: #f9c300;
  color: #fff;
}

#team-details .details .social a i {
  font-size: 16px;
  line-height: 0;
}

#team-details .details p {
  color: #112363;
  font-size: 13px;
  margin-bottom: 10px;
  text-align: justify;
}


/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid rgba(14, 29, 52, 0.15);
}

.team .member img {
  margin: -1px -1px 30px -1px;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #6c757d;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #6c757d;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: rgba(14, 29, 52, 0.5);
  transition: 0.3s;
}

.team .member .social a:hover {
  color: var(--color-primary);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}








/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #1e1e1e;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #1ed33c;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}


.footer {
  font-size: 14px;
  background-color:#004f82;
  /*background-color:rgba(2, 82, 191, 1);
  -background-color: #1f1f24;*/
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.7);
}
.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 35px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}
/*--------------------------------------------------------------
#  labels
--------------------------------------------------------------*/
.label-one {position:fixed; top:115px; border-radius: 4px; right: -99px; background: url("../img/buy-theme.png") no-repeat 14px center rgba(50,50,50,.8); z-index: 1000; visibility: hidden; opacity: 0; transition: all 0.4s;}
.label-one:hover, .label-two:hover {right: -26px}
.label-one span, .label-two span {padding:0 28px; position: relative; top:0; opacity: 0}
.label-one:hover span, .label-two:hover span {opacity: 1}
.label-one a, .label-two a { color: #fff; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; padding:8px 15px; display: block }
.label-two {position:fixed; top:165px; border-radius: 4px; right: -140px; background: url("../img/quick-question.png") no-repeat 14px center rgba(50,50,50,.8); z-index: 1000; visibility: hidden; opacity: 0; transition: all 0.4s;}


.label-one.active { visibility: visible; opacity: 1;}
.label-two.active { visibility: visible; opacity: 1;}

/******
/* modal
*/

.modal-content  {
    background-color:rgba(255, 2550, 255, 1));
}
.modal {
    background-color: rgba(0, 0, 0, 0.80);
}
.modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.modal-content a:hover {
  color: #f9c200;
  text-decoration: none;
}
.modal-content a {
  color: blue;
  text-decoration: none;
}
.modal.header-scrolled {
  background: rgba(2, 8, 191, 1);
  height: 80px;
}


.modal .navbar-brand{
	background: url(../img/ebvlogo.svg);
	background-repeat:no-repeat;
	/**background-position: 15px 0;**/
	height:auto;
	padding: 0px;
}
.modal .navbar-brand h1{
	color: blue;
	margin:0px;
	font-size:1.53em;
	font-weight:400px;
	padding-left:70px;

}
.modal .navbar-brand span.subhead{
	display:block;
	/**font-family: 'Roboto Slab', serif;**/
	font-family: 'MonteCarlo', cursive;
	font-size:1.2em;
	font-weight:100px;	
}	
.modal .modal-title {
	/**font-family: 'Roboto Slab', serif;**/
	font-size:3em;
	font-weight:300px;
	color: #004f82;
}	

/*--------------------------------------------------------------
# Modal Footer Social Links
--------------------------------------------------------------*/
.modal-footer .footer-social-links  {
  padding-right:200px;
  height: 100%;
}
.modal-footer .footer-social-links a {
  color: blue;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  padding-left: 10px;
}

.modal-footer .footer-social-links a i {
  line-height: 0;
}

.modal-footer .footer-social-links a:hover {
  color: white;
}

@media (max-width: 768px) {
.modal-footerl .footer-social-links {
    padding: 0 15px 0 0;
    border-left: 0;
  }
}

/*--------------------------------------------------------------
# BG Video
--------------------------------------------------------------*/

#bg-video {
    min-width: 100%;
    min-height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    object-fit: cover;
    z-index: -1;
}

#bg-video::-webkit-media-controls {
    display: none !important;
}
.video-overlay {
    position: absolute;
    background-color: rgba(31,39,43,0.40);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
}
.main-banner .caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #f5a425;
  font-weight: 900;
}

.main-banner .caption p {
  color: #fff;
  font-size: 14px;
  max-width: 570px;
}

.main-banner .caption .main-button-red {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {

  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 36px;
  }

}
.main-button-red a {
  font-size: 13px;
  color: #fff;  
  background-color: #0208bf;
   /*background-color: #a12c2f;*/
  padding: 12px 30px;
  display: inline-block;
  /*border-radius: 22px;*/
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.main-button-red a:hover {
  opacity: 0.9;
}
.carousel-indicators {
    margin-bottom: 1rem;
}

.main-banner .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin: 10px 0px 10px;
  color: var(--font-secondary);
  font-weight: 600px;
}

.main-banner .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.main-banner .btn-watch-video:hover {
  color: var(--color-secondary);
}

.main-banner .btn-watch-video:hover i {
  color: rgba(255, 213, 0, 0.8);
}
.main-banner (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

}


