body {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
 
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fw-700 {
  font-weight: 700;
}

.fw-600 {
  font-weight: 600;
}

.fw-400 {
  font-weight: 400;
}

.padding-container {
  padding-left: 15px;
  padding-right: 15px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.btn {
  padding: 8px 15px;
  border-radius: 6px;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  text-decoration: none;
}

.white-btn {
  background-color: white;
  border: 2px solid white;
  color: black;
}

.white-btn:hover {
  background-color: black;
  color: white;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.button .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.button .btn span {
  margin-right: 10px;
}
.button .btn span img {
  height: 25px;
  width: auto;
}

.top-nav {
  background-color: rgba(0, 0, 0, 0.8);
}
.top-nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
}
.top-nav .container .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-nav .container .logo img {
  height: 75%;
  width: auto;
  margin-right: 15px;
  border-radius: 10px;
}
.top-nav .container .logo p {
  font-size: 2em;
  background: -webkit-linear-gradient(#FFF200, #FDBE37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jumbotron {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: fadeIn 3s;
          animation: fadeIn 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.jumbotron img {
  height: auto;
  width: 100%;
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #3399cc;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cards .container .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  background-color: #fff740;
  border-radius: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 0 15px 0 rgba(148, 148, 148, 0.79);
          box-shadow: 0 0 15px 0 rgba(148, 148, 148, 0.79);
		    overflow-x:hidden;
}
.cards .container .card .icon {
  height: 400px;
  margin-top: 15px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cards .container .card .icon img {
  height: 100%;
}
.cards .container .card .text {
  text-align: center;
}
.cards .container .card .text h2 {
  margin-bottom: 15px;
  line-height: 1.25;
  font-size: 2.5em;
}
.cards .container .card .text p {
  line-height: 1.5;
  font-size: 1.25em;
}

.download-card {
  width: 100%;
  background-color: #3399cc;
}
.download-card .container {
  width: 90%;
  margin: 0 auto;
}
.download-card .container .community-card {
  position: relative;
  border-radius: 15px;
  top: 100px;
  margin: 0 auto;
  width: 80%;
  background-color: #fff740;
  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;
  z-index: 1;
}
.download-card .container .community-card .button {
  margin: 1.5em;
}
.download-card .container .community-card .button a {
  width: 200px;
}

footer {
  background-color: black;
  padding-bottom: 30px;
  padding-top: 125px;
}
footer .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
footer .container .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 150px;
}
footer .container .logo img {
  height: 100%;
}
footer .container .links {
  margin-bottom: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
}
footer .container .links li {
  margin-bottom: 1em;
  margin-top: 1em;
}
footer .container .links li a {
  position: relative;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
}
footer .container .links li a::after {
  content: "";
  width: 50%;
  height: 0.125rem;
  left: 50%;
  bottom: -0.4rem;
  visibility: hidden;
  -webkit-animation: fadeOut 0.4s ease-in-out forwards;
  animation: fadeOut 0.4s ease-in-out forwards;
  position: absolute;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
footer .container .links li:last-child {
  margin-right: 0px;
}
footer .container .links li:first-child {
  margin-left: 0px;
}
footer .container .links li:hover a::after {
  visibility: visible;
}
footer .container .social-links {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 2em;
}
footer .container .social-links li {
  margin-left: 15px;
  margin-right: 15px;
  width: 2em;
}
footer .container .social-links li a {
  font-size: 2em;
}
footer .container .social-links li a:after {
  width: 100%;
}
footer .container .social-links li:last-child {
  margin-right: 0px;
}
footer .container .social-links li:first-child {
  margin-left: 0px;
}
footer .container .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #8c8c8c;
}

@media screen and (min-width: 768px) {
  .padding-container {
    padding-left: 86px;
    padding-right: 86px;
  }

  .cards .container .card {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .cards .container .card .icon {
    margin-right: 45px;
    margin-left: 45px;
  }
  .cards .container .card .text {
    text-align: start;
    margin-right: 45px;
    margin-left: 45px;
  }
  .cards .container .card .text h2 {
    font-size: 3.2em;
  }
  .cards .container .card .text p {
    font-size: 1.6em;
  }
  .cards .container .card:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .download-card .container .community-card {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .download-card .container .community-card .button {
    font-size: 1.5em;
  }
  .download-card .container .community-card .button a {
    width: 300px;
  }
  .download-card .container .community-card .button a span img {
    height: 50px;
    width: auto;
  }

  footer .container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  footer .container .grid-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .container .logo {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .container .links {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0;
  }
  footer .container .links li {
    margin-left: 15px;
    margin-right: 15px;
  }
  footer .container .links li:last-child {
    margin-right: 0px;
  }
  footer .container .links li:first-child {
    margin-left: 0px;
  }
  footer .container .social-links {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin: 0;
  }
  footer .container .copyright {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .download-card .container .community-card {
    padding: 2em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}