@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
}

i {
  cursor: pointer;
}

.wrapper {
  margin: 0 auto;
  width: 70%;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .wrapper {
    width: 1140px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .wrapper {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .wrapper {
    width: 90%;
  }
}

.scroll-to-top-btn {
  background-color: orange;
  color: #fff;
  height: 40px;
  width: 50px;
  text-align: center;
  border-radius: 4px 4px 0 0;
  border: 0;
  outline: 0;
  position: fixed;
  bottom: 0;
  right: 5%;
  z-index: 200;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .scroll-to-top-btn {
    right: 1.5%;
  }
}

.scroll-to-top-btn.show-btn {
  opacity: 1;
}

.scroll-to-top-btn i {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 100%;
  cursor: pointer;
}

.scroll-to-top-btn i:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media (max-width: 767px) {
  .scroll-to-top-btn {
    display: none;
  }
}

.link {
  position: relative;
}

.link::after {
  content: '';
  background-color: #083791;
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -10px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform .2s ease-in;
  transition: -webkit-transform .2s ease-in;
  transition: transform .2s ease-in;
  transition: transform .2s ease-in, -webkit-transform .2s ease-in;
}

.link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.bars {
  display: none;
}

#header #top-nav {
  background-color: #083791;
  padding: 15px 0;
}

#header #top-nav .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
}

#header #top-nav .wrapper a {
  color: #fff;
  text-decoration: none;
}

#header #bottom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
  padding: 20px 0;
  color: #083791;
}

#header #bottom-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
}

#header #bottom-nav a img {
  margin-right: 15px;
  height: 50px;
  width: 50px;
  font-weight: bold;
}

#header #bottom-nav a h3 {
  font-size: 2rem;
  margin: 0;
  font-weight: bold;
}

#header #bottom-nav a h4 {
  font-size: 1.2rem;
}

#header #bottom-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#header #bottom-nav ul li {
  margin-left: 40px;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

#header #bottom-nav ul li a {
  text-decoration: none;
  color: #083791;
  font-size: 1.2rem;
  font-weight: 500;
}

#header .carousel-inner {
  height: 72vh;
}

#header .carousel-inner .carousel-caption {
  top: 10%;
  text-align: left;
  margin-left: 0%;
  color: #083791;
}

#header .carousel-inner .carousel-caption h1 {
  font-weight: bold;
  font-size: 3.5rem;
  margin: 0;
}

#header .carousel-inner .carousel-caption h4 {
  font-size: 1.2rem;
  margin: 20px 0;
}

#header .carousel-inner .carousel-caption button {
  padding: 10px 25px;
  background: orange;
  border: none;
  outline: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-top: 30px;
}

#header .carousel-inner .carousel-caption button:hover {
  background-color: #cc8400;
}

@media (max-width: 767px) {
  #header .carousel-inner .carousel-caption button {
    padding: 5px 15px;
    font-size: 1rem;
  }
}

#features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 150px 0;
}

#features article {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
}

#features article:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#features article:first-child h4 {
  font-size: 1.2rem;
  color: #083791;
  font-weight: bold;
}

#features article:first-child h2 {
  font-size: 2.5rem;
  color: #083791;
  font-weight: bold;
}

#features article:first-child p {
  line-height: 2;
}

#features article:first-child button {
  padding: 10px 25px;
  background: orange;
  border: none;
  outline: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

#features article:first-child button:hover {
  background-color: #cc8400;
}

@media (max-width: 767px) {
  #features article:first-child button {
    padding: 5px 15px;
    font-size: 1rem;
  }
}

#features .card {
  cursor: pointer;
  -webkit-box-shadow: 0 4px 2px -2px #ddd;
          box-shadow: 0 4px 2px -2px #ddd;
}

#features .card a {
  position: relative;
}

#features .card a span.overlay {
  background: rgba(8, 56, 145, 0.7);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#features .card .card-body {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 20px;
}

#features .card .card-body h4 {
  color: #083791;
  font-weight: bold;
}

#features .card .card-body p {
  line-height: 2;
}

#features .card .card-body a {
  text-decoration: none;
  color: #000;
}

#features .card:hover a {
  color: #083791;
}

#features .card:hover {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-bottom: 1px solid #083791;
  -webkit-box-shadow: 0 4px 2px -2px #083791;
          box-shadow: 0 4px 2px -2px #083791;
}

#features .card:hover .overlay {
  opacity: 1;
}

#about {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 56, 145, 0.7)), to(rgba(8, 56, 145, 0.7))), url(../img/about.jpg);
  background-image: linear-gradient(rgba(8, 56, 145, 0.7), rgba(8, 56, 145, 0.7)), url(../img/about.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  margin-top: 100px;
}

#about .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
  padding: 50px 0;
}

#about .wrapper h4 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  -ms-flex-item-align: auto;
      -ms-grid-row-align: auto;
      align-self: auto;
}

#about .wrapper h2 {
  font-size: 2.5rem;
  color: #fff;
  font-weight: bold;
  padding-bottom: 30px;
}

#about .wrapper button {
  padding: 10px 25px;
  background: orange;
  border: none;
  outline: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#about .wrapper button:hover {
  background-color: #cc8400;
}

@media (max-width: 767px) {
  #about .wrapper button {
    padding: 5px 15px;
    font-size: 1rem;
  }
}

#about .wrapper .departments {
  background-image: url(../img/departments.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  padding: 80px 30px 80px 60px;
  color: #fff;
  border-top: 3px solid orange;
  border-radius: 10px;
  -webkit-transform: translateY(-170px);
          transform: translateY(-170px);
}

#about .wrapper .departments h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}

#about .wrapper .departments p:last-of-type {
  margin-bottom: 30px;
}

#about .wrapper .departments p a {
  color: #fff;
  text-transform: capitalize;
}

#about .wrapper .departments a {
  color: orange;
  text-decoration: none;
  text-transform: uppercase;
}

#about .wrapper .about-more {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58%;
          flex: 0 0 58%;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

#about .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
  padding: 50px 0 0;
}

#about .wrapper div:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
}

#about .wrapper div:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58%;
          flex: 0 0 58%;
}

#about .wrapper .nav-tabs {
  border: none;
}

#about .wrapper .nav-tabs .nav-link {
  color: #fff;
  background-color: #083791;
  font-weight: bold;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
  border-radius: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

#about .wrapper .nav-tabs .nav-link:hover {
  border: none;
}

#about .wrapper .nav-tabs .active {
  color: #083791;
  background-color: #fff;
}

#about .wrapper .nav-tabs #nav-mission-tab {
  margin-left: auto;
}

#services .tab-content {
  padding: 150px 0;
}

#services .tab-pane {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
}

#services .tab-pane article:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
}

#services .tab-pane article:first-child div h4 {
  font-size: 1.2rem;
  color: #083791;
  font-weight: bold;
}

#services .tab-pane article:first-child div h2 {
  font-size: 2.5rem;
  color: #083791;
  font-weight: bold;
}

#services .tab-pane article:first-child p {
  line-height: 2;
  padding: 30px 0;
}

#services .tab-pane article:first-child a {
  color: #083791;
  text-decoration: none;
}

#services .tab-pane article:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 64%;
          flex: 0 0 64%;
}

#services .tab-pane article:last-child div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  padding: 50px;
  border: 1px solid #ddd;
  border-bottom: 3px solid #ddd;
  -webkit-box-shadow: 0 0 10px #ddd;
          box-shadow: 0 0 10px #ddd;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-bottom: 25px;
}

#services .tab-pane article:last-child div h3 {
  color: #083791;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

#services .tab-pane article:last-child div h3 i {
  border: 1px solid #083791;
  border-radius: 50%;
  padding: 10px;
  margin-right: 5px;
}

#services .tab-pane article:last-child div p {
  margin: 0;
}

#services .tab-pane article:last-child div:hover {
  border-bottom: 3px solid #083791;
  cursor: pointer;
}

#services .tab-content > .tab-pane:not(.active) {
  display: block;
  height: 0;
  overflow-y: hidden;
}

#team {
  background-image: url(../img/team.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0 0;
}

#team .wrapper h4 {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

#team .wrapper h2 {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
}

#team .wrapper p {
  text-align: center;
  color: #fff;
  padding-top: 30px;
  line-height: 2;
}

#team #teams {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
}

#team #teams .team {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#team #teams .team:hover {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

#team #teams .team img {
  border-radius: 10px;
}

#team #teams .team .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: rgba(8, 56, 145, 0.7);
}

#team #teams .team:hover .overlay {
  opacity: 1;
}

#team #teams .team .text {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

#team #teams .team .text h4 {
  text-align: center;
}

#team #teams .team .text .social {
  padding: 20px 0;
}

#team #teams .team .text .social a {
  background: #083791;
  margin: 0 5px;
  color: #fff;
  padding: 8px;
}

#team #teams .team .text .social a:nth-child(2) {
  background: orange;
}

#choose {
  margin-top: 200px;
}

#choose button {
  padding: 10px 25px;
  background: orange;
  border: none;
  outline: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: block;
  margin: 0 auto 100px auto;
}

#choose button:hover {
  background-color: #cc8400;
}

@media (max-width: 767px) {
  #choose button {
    padding: 5px 15px;
    font-size: 1rem;
  }
}

#choose .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
}

#choose .wrapper div:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}

#choose .wrapper div:first-child h4 {
  font-weight: bold;
  color: #083791;
  font-size: 1.2rem;
}

#choose .wrapper div:first-child h2 {
  font-weight: bold;
  color: #083791;
  font-size: 2.5rem;
}

#choose .wrapper div:first-child p {
  color: #000;
  padding: 30px 0;
  line-height: 2;
}

#choose .wrapper div:first-child article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -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;
}

#choose .wrapper div:first-child article img {
  height: 60px;
  width: 60px;
  margin-right: 30px;
  margin-bottom: 20px;
}

#choose .wrapper div:first-child article h3 {
  color: #083791;
  font-weight: bold;
}

#choose .wrapper div:first-child article p {
  padding: 0;
  margin-bottom: 20px;
}

#choose .wrapper div:last-child {
  background-image: url(../img/choose.jpg);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
  height: 500px;
}

#fun {
  background-image: url(../img/fun.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0 100px;
  margin-top: 100px;
}

#fun .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
}

#fun .wrapper div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22%;
          flex: 0 0 22%;
  text-align: center;
}

#fun .wrapper div h2 {
  color: #083791;
  font-size: 4rem;
}

#faq {
  background-image: url(../img/faq.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
}

#faq .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
}

#faq .wrapper article {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

#faq .wrapper h4 {
  font-weight: bold;
  color: #083791;
  font-size: 1.2rem;
}

#faq .wrapper h2 {
  font-weight: bold;
  color: #083791;
  font-size: 2.5rem;
}

#faq .wrapper p {
  color: #000;
  padding: 20px 0;
  line-height: 2;
}

#faq .wrapper .card-body {
  border: none;
}

#faq .wrapper .card-header:not(.collapsed) {
  background: #083791;
  font-size: 1.5rem;
  padding: 10px 20px;
  margin: 20px 0 0;
  color: #fff;
}

#faq .wrapper .card-header.collapsed {
  background: #fff;
  border: 1px solid #aaa;
  font-size: 1.5rem;
  padding: 10px 20px;
  margin: 20px 0 0;
  color: #083791;
}

#blog {
  padding: 150px 0;
}

#blog h4 {
  font-weight: bold;
  color: #083791;
  font-size: 1.2rem;
  text-align: center;
}

#blog h2 {
  font-weight: bold;
  color: #083791;
  font-size: 2.5rem;
  text-align: center;
}

#blog .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
  margin-top: 60px;
}

#blog .wrapper div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
}

#blog .wrapper div .card-body {
  position: relative;
}

#blog .wrapper div .card-body .date {
  height: 90px;
  width: 50px;
  position: absolute;
  top: -20px;
  background-color: #083791;
  color: #fff;
  border-radius: 10px;
  text-align: center;
}

#blog .wrapper div .card-body .date h5 {
  margin: 0;
  padding-top: 20px;
}

#blog .wrapper div .card-body h3 {
  font-size: 1.5rem;
  margin-left: 70px;
  color: #083791;
}

#blog .wrapper div .card-body a {
  color: #083791;
  text-decoration: none;
}

#blog .wrapper div .card-body .card-title {
  margin-bottom: 20px;
}

#blog .wrapper div .card-body .card-text {
  line-height: 2;
}

#blog .wrapper .card:nth-child(2) .date {
  background-color: orange;
}

#blog .wrapper .card:nth-child(2) a {
  color: orange;
  text-decoration: none;
}

#contact {
  padding: 50px 0;
  margin: 100px 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 56, 145, 0.7)), to(rgba(8, 56, 145, 0.7))), url(../img/contact.jpg);
  background-image: linear-gradient(rgba(8, 56, 145, 0.7), rgba(8, 56, 145, 0.7)), url(../img/contact.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#contact .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
}

#contact .wrapper div:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58%;
          flex: 0 0 58%;
  color: #fff;
}

#contact .wrapper div:first-child h4 {
  font-size: 1.2rem;
  font-weight: bold;
  -ms-flex-item-align: auto;
      -ms-grid-row-align: auto;
      align-self: auto;
}

#contact .wrapper div:first-child h2 {
  font-size: 2.5rem;
  font-weight: bold;
  padding-bottom: 30px;
}

#contact .wrapper div:first-child span {
  color: orange;
  font-weight: bold;
}

#contact .wrapper div:first-child i {
  color: orange;
  margin-right: 10px;
  font-weight: bold;
}

#contact .wrapper .aepartments {
  background-image: url(../img/departments.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 30px 80px 30px;
  color: #fff;
  border-top: 3px solid orange;
  border-radius: 10px;
  -webkit-transform: translateY(-160px);
          transform: translateY(-160px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
}

#contact .wrapper .aepartments .form-control,
#contact .wrapper .aepartments .form-select {
  margin-bottom: 20px;
  padding: 10px;
}

#contact .wrapper .aepartments select:invalid {
  color: gray;
}

#contact .wrapper .aepartments button {
  padding: 10px 25px;
  background: orange;
  border: none;
  outline: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  margin-top: 20px;
}

#contact .wrapper .aepartments button:hover {
  background-color: #cc8400;
}

@media (max-width: 767px) {
  #contact .wrapper .aepartments button {
    padding: 5px 15px;
    font-size: 1rem;
  }
}

#contact .wrapper .aepartments h3 {
  font-size: 2rem;
}

#contact .wrapper .aepartments p {
  margin-bottom: 30px;
  font-style: italic;
  font-style: 1.2rem;
}

#top-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#top-footer article:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
}

#top-footer article:first-child a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -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;
  text-decoration: none;
  color: #083791;
  font-weight: bold;
  margin-bottom: 20px;
}

#top-footer article:first-child a img {
  margin-right: 15px;
  height: 50px;
  width: 50px;
  font-weight: bold;
}

#top-footer article:first-child a h3 {
  font-size: 2rem;
  margin: 0;
  font-weight: bold;
}

#top-footer article:first-child a h4 {
  font-size: 1.2rem;
}

#top-footer article:first-child a p {
  line-height: 2;
}

#top-footer article:nth-child(2) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 13%;
          flex: 0 0 13%;
}

#top-footer article:nth-child(2) h3 {
  margin-bottom: 30px;
}

#top-footer article:nth-child(2) p {
  margin: 0;
  line-height: 2;
}

#top-footer article:nth-child(2) p a {
  text-decoration: none;
  color: #000;
}

#top-footer article:nth-child(3) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22%;
          flex: 0 0 22%;
}

#top-footer article:nth-child(3) h3 {
  margin-bottom: 30px;
}

#top-footer article:nth-child(3) p {
  font-weight: bold;
}

#top-footer article:nth-child(3) p a {
  text-decoration: none;
  color: #083791;
}

#top-footer article:nth-child(3) h6 {
  padding-bottom: 20px;
}

#top-footer article:nth-child(3) h6:not(h6:last-child) {
  border-bottom: 1px solid #aaa;
}

#top-footer article:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22%;
          flex: 0 0 22%;
}

#top-footer article:last-child h3 {
  margin-bottom: 30px;
}

#top-footer article:last-child p {
  line-height: 2;
}

#top-footer article:last-child input {
  margin-bottom: 20px;
}

#top-footer article:last-child button {
  padding: 10px 25px;
  background: orange;
  border: none;
  outline: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#top-footer article:last-child button:hover {
  background-color: #cc8400;
}

@media (max-width: 767px) {
  #top-footer article:last-child button {
    padding: 5px 15px;
    font-size: 1rem;
  }
}

#bottom-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
  border-top: 1px solid #aaa;
  margin-top: 80px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #aaa;
}

#bottom-footer h4 {
  font-size: 1rem;
}

#bottom-footer a {
  color: #000;
  font-size: 1rem;
  margin-left: 20px;
  border: 1px solid #aaa;
  border-radius: 50%;
  padding: 6px 10px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #my-ul {
    position: fixed;
    top: 0;
    background-color: white;
    width: 100%;
    height: 100vh;
    right: -100%;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
    z-index: 100;
    display: block;
  }
  #my-ul.show {
    display: block;
    right: 0%;
    -webkit-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
    z-index: 200;
  }
  .bars {
    position: absolute;
    display: inline-block;
    right: 10%;
    cursor: pointer;
    z-index: 200;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (max-width: 767px) {
  .bars {
    right: 5%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #083791;
    margin: 6px 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
  }
  .change .bar2 {
    opacity: 0;
  }
  .change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
  }
  #header #bottom-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -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;
  }
  #header #bottom-nav ul li {
    margin-bottom: 30px;
  }
  #header #bottom-nav ul li a, #header #bottom-nav ul li i {
    font-size: 3rem;
  }
  #header .carousel-inner {
    height: auto;
  }
  #header .carousel-inner .carousel-caption {
    left: 10%;
  }
  #header .carousel-inner .carousel-caption h1 {
    font-size: 3rem;
  }
  #header .carousel-inner .carousel-caption h4 {
    font-size: 1.5rem;
  }
  #features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 50px 0;
  }
  #features article {
    margin-bottom: 30px;
  }
  #about {
    margin-top: 200px;
  }
  #about article:first-child .departments {
    padding: 80px 60px 80px 60px;
  }
  #about article:first-child .about-more {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #about article:last-child div:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #about article:last-child div:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 0%;
            flex: 0 0 0%;
  }
  #services .tab-content {
    padding: 100px 0;
  }
  #services .tab-pane article:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 50px;
  }
  #services .tab-pane article:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    gap: 15px;
  }
  #services .tab-pane article:last-child div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
    padding: 30px;
  }
  #team .wrapper h4, #team .wrapper h2, #team .wrapper p {
    text-align: left;
  }
  #team #teams .team {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
    margin-bottom: 60px;
  }
  #choose .wrapper div:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 100px;
  }
  #choose .wrapper div:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #fun .wrapper div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin-bottom: 30px;
  }
  #faq {
    background-image: url(../img/faq.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
  }
  #faq .wrapper article {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #blog {
    padding: 100px 0 0;
  }
  #blog .wrapper .card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 60px;
  }
  #contact .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -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;
  }
  #contact .wrapper div:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #contact .wrapper .aepartments {
    margin-top: 60px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
            flex: 0 0 70%;
  }
  #top-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #top-footer article:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 50px;
  }
  #top-footer article:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  #top-footer article:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
  }
  #top-footer article:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
}

@media (max-width: 767px) {
  #my-ul {
    position: fixed;
    top: 0;
    background-color: white;
    width: 100%;
    height: 100vh;
    right: -100%;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
    z-index: 100;
    display: block;
  }
  #my-ul.show {
    display: block;
    right: 0%;
    -webkit-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
    z-index: 200;
  }
  .bars {
    position: absolute;
    display: inline-block;
    right: 10%;
    cursor: pointer;
    z-index: 200;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .bars {
    right: 5%;
  }
}

@media (max-width: 767px) {
  .bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #083791;
    margin: 6px 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
  }
  .change .bar2 {
    opacity: 0;
  }
  .change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
  }
  #header #bottom-nav a img {
    margin-right: 10px;
    height: 30px;
    width: 30px;
  }
  #header #bottom-nav a h3 {
    font-size: 1.5rem;
    margin: 0;
  }
  #header #bottom-nav a h4 {
    font-size: 1rem;
  }
  #header #bottom-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -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;
    padding-left: 0;
  }
  #header #bottom-nav ul li {
    margin: 0;
    margin-bottom: 30px;
  }
  #header #bottom-nav ul li a, #header #bottom-nav ul li i {
    font-size: 1.5rem;
  }
  #header .carousel-inner {
    height: auto;
  }
  #header .carousel-inner .carousel-caption {
    top: 0%;
    left: 5%;
  }
  #header .carousel-inner .carousel-caption h1 {
    font-size: 1.3rem;
    margin: 0;
  }
  #header .carousel-inner .carousel-caption h4 {
    font-size: 1rem;
    margin: 10px 0;
  }
  #header .carousel-inner .carousel-caption button {
    margin-top: 0px;
  }
  #features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 0;
  }
  #features article {
    margin-bottom: 30px;
  }
  #features article:first-child h4 {
    font-size: 1rem;
  }
  #features article:first-child h2 {
    font-size: 1.5rem;
  }
  #about {
    margin-top: 200px;
  }
  #about article:first-child .about-more {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #about article:first-child .about-more h4 {
    font-size: 1rem;
  }
  #about article:first-child .about-more h2 {
    font-size: 1.5rem;
  }
  #about article:last-child div:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #about article:last-child div:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 0%;
            flex: 0 0 0%;
  }
  #about #nav-service-tab,
  #about #nav-mission-tab {
    font-size: 1rem;
  }
  #services .tab-content {
    padding: 50px 0;
  }
  #services .tab-pane article:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 50px;
  }
  #services .tab-pane article:first-child div h4 {
    font-size: 1rem;
  }
  #services .tab-pane article:first-child div h2 {
    font-size: 1.5rem;
  }
  #services .tab-pane article:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    gap: 15px;
  }
  #services .tab-pane article:last-child div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 30px;
  }
  #team .wrapper h4, #team .wrapper h2, #team .wrapper p {
    text-align: left;
  }
  #team .wrapper h4 {
    font-size: 1rem;
  }
  #team .wrapper h2 {
    font-size: 1.5rem;
  }
  #team #teams .team {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 60px;
  }
  #choose .wrapper div:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 100px;
  }
  #choose .wrapper div:first-child article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -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;
  }
  #choose .wrapper div:first-child article img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    margin-bottom: 30px;
  }
  #choose .wrapper div:first-child article hgroup {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #choose .wrapper div:last-child {
    background-image: url(../img/choose.jpg);
    background-position: center;
    background-size: center;
    background-repeat: no-repeat;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #fun {
    padding: 250px 0 100px;
    margin-top: 0px;
  }
  #fun .wrapper div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #faq {
    background-image: url(../img/faq.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
  }
  #faq .wrapper article {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #faq .wrapper article h4 {
    font-size: 1rem;
  }
  #faq .wrapper article h2 {
    font-size: 1.5rem;
  }
  #faq .wrapper article .card-header.collapsed,
  #faq .wrapper article .card-header:not(.collapsed) {
    font-size: 1.2rem;
  }
  #blog {
    padding: 50px 0;
  }
  #blog h4 {
    margin-left: 10%;
    font-size: 1rem;
    text-align: left;
  }
  #blog h2 {
    margin-left: 10%;
    font-size: 1.5rem;
    text-align: left;
  }
  #blog .wrapper .card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 60px;
  }
  #blog .wrapper .card:last-child {
    margin-bottom: 0;
  }
  #contact {
    margin: 50px 0;
  }
  #contact .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -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;
  }
  #contact .wrapper div:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #contact .wrapper div:first-child h4 {
    font-size: 1rem;
  }
  #contact .wrapper div:first-child h2 {
    font-size: 1.5rem;
  }
  #contact .wrapper .aepartments {
    margin-top: 60px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #top-footer article:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 20px;
  }
  #top-footer article:first-child a img {
    margin-right: 10px;
    height: 30px;
    width: 30px;
  }
  #top-footer article:first-child a h3 {
    font-size: 1.5rem;
    margin: 0;
  }
  #top-footer article:first-child a h4 {
    font-size: 1rem;
  }
  #top-footer article:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 50px;
  }
  #top-footer article:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 50px;
  }
  #top-footer article:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #bottom-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -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;
    margin-top: 80px;
  }
  #bottom-footer h4 {
    margin: 0 auto;
  }
  #bottom-footer div {
    margin: 30px auto;
  }
}
/*# sourceMappingURL=style.css.map */