@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

body {
  text-align: center;
  font-family: 'Figtree', 'Open Sans', sans-serif;
  overflow: clip;
  margin: 0;
  z-index: 2;
  background: url("summer.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

a {
  text-decoration: none;
  color: #FFF;
  line-height: 1.7;
  font-weight: 300;
  transition: all .6s;
}

a:hover {
  color: #6C728D;
}

.container {
  display: flex;
  justify-content: center;
  margin: 32px 0 0 0;
  padding: 8rem 0 30rem 0;
}

.center {
  max-width: 990px;
  padding: 2rem 6rem;
  background-color: #0A1541EA;
  border-radius: 25px;
  z-index: 3;
}

footer {
  background: #0A1541;
  display: flex;
  justify-content: space-evenly;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 16px;
  color: #FFF;
  padding: 1.2rem 0;
  z-index: 1;
}

footer > div.footer {
  display: flex;
  align-items: center;
}

footer a {
  line-height: 1.2;
}

.footer-divider {
  background-color: #9DA1B3;
  width: 1px;
  height: 90%;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

div.empower-banner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-top: 24px;
  padding-bottom: 24px;
  border: solid 0.5px #99C5F9;
  border-radius: 0 0 24px 24px;
  background: #F2F8FE;
  z-index: 4;
}

div.empower-banner-content {
  max-width: 800px;
  display: grid;
  grid-template-columns: auto max-content;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 24px;
  row-gap: 0;
  background-color: transparent;
  margin: auto;
}

div.empower-logo-and-body {
  display: contents;
}

img.empower-logo {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  width: 240px;
}

div.empower-banner-content p {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-family: 'Figtree', 'Open Sans', sans-serif;
  font-size: 14px;
  text-align: left;
  padding-top: 14px;
}

div.empower-button {
  grid-column: 2;
  grid-row: 2;
  display: block;
}

a.empower-cta {
  display: inline-block;
  background-color: #006EEF;
  color: #FFF;
  text-align: center;
  padding: 6px 18px;
  border: none;
  border-radius: 24px;
  font-family: 'Figtree', 'Open Sans', sans-serif;
  font-size: 12px;
  cursor: pointer;
  font-weight: 400;
  transition: all .3s ease-in;
  
}

a.empower-cta:hover,
a.empower-cta:focus {
  background-color: #0A1541;
}

.ug-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.ug-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 32px;
  row-gap: 16px;
}

.ug-title {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: right;
  padding-right: 1rem;
}

.ug-languages {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
}

.ug-languages a {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  transition: all .3s ease-in;
}

.ug-languages a:hover {
  color: #66A8F5;
}

.ug-languages .note {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Responsive layout */

@media only screen and (max-width: 850px) {
	
	body {
	  margin: 8px;
      background-size: auto;
      overflow: auto;
	}
	
	.container {
	  display: grid;
	  margin: 96px 0 100px 0;
      padding: 12px 0 0 0;
	}
	
	a {
	  font-size: 1rem;
	  line-height: 1.6;
	}
	
    a.empower-cta {
      padding: 4px 8px;
    }
    
    .ug-header {
      margin-bottom: 20px;
    }
    
	.center {
	  min-width: unset;
	  margin: auto;
      padding: 16px;
	}
    
    div.empower-banner {
      padding-top: 8px;
      padding-bottom: 8px;
    }
    
    div.empower-banner-content {
      padding: 0 16px;
      column-gap: 18px;
    }
    
    div.empower-logo-and-body p {
      font-size: 12px;
    }
    
    img.empower-logo {
      width: 180px;
    }
    
    div.empower-button {
      margin-top: 10px;
    }
    
    div.ug-title {
      font-size: 14px;
    }
    
    div.ug-grid {
      font-size: 12px;
      column-gap: 20px;
    }
    
    footer {
      display: none;
    }
    
    div.ug-languages {
      gap: 0;
    }
}