/* --- root variables --- */
:root {
  --black: #000;
  --orange: #b37606;
  --navyblue: rgba(1, 9, 56, 0.88);
  --white: #fff;
  --grey: #bebebe;
  --lightorange: #fdc752;
  --background: #e7f1ff;
  --background1: #d0e3ff;
  --background2: #7096d1;
}

/*--header--*/

body {
  padding: 0;
  margin: 0;
  border: 0;
  background: var(--white);
  position: relative;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  min-height: 100vh;
}

body a {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

a:hover {
  text-decoration: none;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

input[type="button"],
input[type="submit"] {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Oswald", sans-serif;
}

p {
  margin: 0;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
  font-size: 15px;
  color: #999;
  line-height: 1.8em;
}

ul {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
}

/*-- header --*/

custom-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

custom-header.scrolled {
  top: 20px;
}

custom-header .header {
  transition: all 0.3s ease;
  background: white;
  border-radius: 0;
  box-shadow: none;
}

custom-header.scrolled .header {
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0px 20px;
  margin: 40px auto;
  width: fit-content;
  max-width: 90%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

custom-header.scrolled .navbar h1 a {
  align-items: center;
  padding: 30px;
}

custom-header.scrolled .navbar h1 a img {
  width: 100px;
  padding-left: 10px;
}

custom-header.scrolled .navbar-nav > li > a {
  color: hsl(215 25% 46%) !important;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: auto;
}

/* page */
.page-content {
  margin-top: 120px;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.4s;
  opacity: 1;
  transform: translateX(0);
}

.page-content.slide-out-left {
  opacity: 0;
  transform: translateX(-100%);
}

.page-content.slide-in-right {
  opacity: 1;
  transform: translateX(100%);
}

.page-content.slide-in-active {
  opacity: 1;
  transform: translateX(0);
}

/* logo */
.logo h1 a {
  color: #083975;
  font-size: 53px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;
  font-family: "Oswald", sans-serif;
  text-shadow: 3px 2px 2px rgba(0, 0, 0, 0.14);
}

.logo a {
  height: auto;
}

.logo-position {
  display: inline-block;
  margin-left: 10px;
  max-width: 100px;
  height: auto;
}

/*-- navigaion --*/
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background: none;
  border-bottom: 3px solid #b37606;
}

.nav-active {
  background: none;
  border-bottom: 3px solid #b37606;
}

.navbar-collapse {
  padding: 0;
}

.navbar-nav > li > a i {
  display: block;
  text-align: center;
  margin-bottom: 1em;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border: none;
}

.navbar-default {
  background-color: transparent;
}

.navbar {
  border-radius: 0;
  margin-bottom: 0;
}

.navbar-default .navbar-nav > li > a {
  color: hsl(215 25% 46%);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 0 8px 15px;
}

.navbar {
  margin-bottom: 0px;
  border: transparent;
  border-radius: 0px;
}

.navbar-nav {
  float: right;
  margin: 0;
  width: 70%;
  margin-top: 26px;
}

.navbar-nav > li {
  float: left;
  width: 14%;
  text-align: center;
}

.header-login {
  position: absolute;
  top: 40px;
  right: 20px;
  z-index: 999;
  font-size: 16px;
}

.header-login a {
  color: #333;
  text-decoration: none;
}

.header-login i {
  margin-right: 5px;
}

.header-left {
  margin-top: 15px;
}

/* Overline From Center */
.hvr-overline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  color: #b37400;
}

.hvr-overline-from-center::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #ffa500;
  height: 2px;
  transition: all 0.3s ease-out;
}

.hvr-overline-from-center::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #f59e0b;
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

.hvr-overline-from-center:hover::after,
.hvr-overline-from-center.active::after {
  width: 100%;
  left: 0;
  transform: none;
}

.hvr-overline-from-center:hover::before,
.hvr-overline-from-center.active::before {
  left: 0;
  right: 0;
}

/* Thumpnail */
.thump-content > p {
  color: rgb(91, 91, 248);
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  margin-top: 10px;
  font-weight: 400;
}

.thump-content > h1 {
  color: #000;
  font-weight: 700;
  font-size: 48px;
}

/*-- banner --*/
.banner-text {
  /* min-height: 1024px */
  min-height: 1024px;
  background: url("/static/img/banner/banner_sportplus.webp") no-repeat;
  background-position: center;
  background-size: cover;
}

.slider {
  position: relative;
}

.banner-w3lstext {
  width: 100%;
  margin-top: 4em;
}
#slider3 {
  list-style-type: none;
}

.banner-w3lstext h3 {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 45px;
  color: rgb(0, 0, 253);
  /* letter-spacing: 1px; */
  text-transform: uppercase;
  line-height: 1.5;
  font-weight: 700;
  font-style: italic;
}

.banner-w3lstext p {
  color: var(--white);
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}

a.view {
  color: #fff;
  font-size: 15px;
  letter-spacing: 2px;
  display: inline-block;
  margin: 50px 0 0;
  font-family: "Open Sans", sans-serif;
  transition: all 0.5s;
  padding: 13px 25px;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid #fff;
}

a.view:hover {
  color: #000;
  transition: all 0.5s;
}

a.view i {
  font-size: 25px;
  margin-right: 7px;
  vertical-align: middle;
}

/*-- welcome --*/
.about,
.services,
.team,
.news-section,
.contact,
.gallery {
  padding: 5em 0;
}

#about {
  background-color: var(--background);
}

h3.title {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #111;
  font-size: 50px;
  margin-bottom: 1em;
  letter-spacing: 1px;
}

.about-wel p {
  color: #545151;
  font-size: 16px;
  margin: 20px 0;
  font-weight: 500;
}

.about-wel h2 {
  font-size: 32px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
}

.about-wel ul li {
  list-style: none;
  text-decoration: none;
  color: #777;
  font-size: 14px;
  line-height: 1.5em;
  margin-top: 0.5em;
  display: inherit;
  letter-spacing: 1px;
}

.about-wel ul li i {
  margin: 0 10px 0 0;
  color: #fd4f47;
}

/*-- stats --*/
.jumbotron {
  --x: 50%;
  --y: 50%;
  background: radial-gradient(
    circle at var(--x) var(--y),
    rgba(255, 255, 255, 0.2),
    transparent 80%
  );
  transition: background 0.2s ease;
}

.stats {
  background: linear-gradient(
    180deg,
    var(--background1) 0%,
    var(--background2) 100%
  );
  padding: 100px 0;
  background-size: cover;
  background-attachment: fixed;
}

.stats-info {
  text-align: center;
}

.stats p {
  color: #fff;
  font-size: 25px;
  padding-top: 20px;
  text-align: center;
  border-top: 6px solid var(--navyblue);
  text-transform: capitalize;
  line-height: 1.3;
  margin-top: 20px;
}

.stats-grid {
  font-size: 60px;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Oswald", sans-serif;
}

/*-- services --*/
.service-cards-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}

.service-cards-container > div {
  display: flex;
  margin-bottom: 20px;
}

service-card {
  display: block;
  width: 100%;
  height: 100%;
}

/*-- team --*/
.team {
  background-color: #ecf4ff;
}

.list-card {
  margin-top: 35px;
}

.card-body {
  margin-top: 10px;
}

.card-img {
  border-radius: 24px;
  height: 360px;
  width: 80%;
}

.card-header {
  display: flex;
  justify-content: center;
}

.card-description,
.card-name {
  color: #55768e;
  font-weight: 500;
}

/*-- blog --*/
.news-events-agile {
  background: #ffc107;
  padding: 12px 20px;
}

.post-img ul li {
  display: inline-block;
  padding: 0 10px;
}

.post-img ul li span {
  color: #fff;
  font-size: 16px;
}

.news-grid h5 {
  float: left;
}

.post-img {
  float: right;
  margin-top: 5px;
}

.news-grid h5 a {
  font-size: 25px;
  color: #ffffff;
}

.news-grid h5 a:hover,
.news-grid h5 a:focus {
  text-decoration: none;
}

.detail-bottom a h6 {
  color: rgba(0, 0, 0, 0.85);
  letter-spacing: 1px;
  font-size: 23px;
  line-height: 1.5;
  text-decoration: none;
  font-weight: 400;
}

.detail-bottom {
  padding: 2em 0 0;
}

.news-grid p {
  font-size: 0.9em;
  padding-top: 10px;
}

.news-events-agile.event-colo1 {
  background: #13e094;
}

.news-events-agile.event-colo3 {
  background: #f54a3e;
}

/*-- bootstrap-pop-up --*/
.close {
  opacity: 1;
}

.modal-header {
  border-bottom: none !important;
}

.modal-body p {
  color: #383535;
  padding: 2em 1em 1em;
  font-size: 0.9em;
}

.modal-content {
  border-radius: 0;
}

button.close {
  font-size: 1em;
  color: #014727;
  outline: none;
}

.modal-body h5 {
  font-weight: 700;
  margin: 0 0 1em 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  font-size: 2em;
  color: #fd4f47;
}

/*-- gallery--*/
.gallery {
  background: var(--background1);
}

/*-- footer --*/
.footer {
  background: #212121;
  padding: 4em 0;
}

.agileinfo_footer_grid h4 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.agileinfo_footer_grid h5 {
  font-size: large;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.agileinfo_footer_grid ul li {
  list-style-type: none;
  margin-bottom: 1em;
  font-size: 14px;
  line-height: 1.8em;
  color: #999;
  padding-left: 1em;
}

.agileinfo_footer_grid ul li span {
  left: -1em;
}

.agileinfo_footer_grid ul li a {
  color: #999;
  text-decoration: none;
}

.agileinfo_footer_grid ul li a:hover {
  color: #fff;
}

.agileinfo_footer_grid1 {
  float: left;
  width: 31.45%;
  margin: 0 0.3em 0.3em 0em;
}

.w3agile_footer_copy {
  padding-top: 30px;
  border-top: 1px solid #606060;
  text-align: center;
  margin-top: 40px;
}

.w3agile_footer_copy p {
  color: #fff;
  letter-spacing: 2px;
}

.w3agile_footer_copy p a {
  color: #00dcb0;
  text-decoration: none;
}

.w3agile_footer_copy p a:hover {
  color: #fff;
}

.agileinfo_footer_grid:nth-child(1) {
  padding: 0 2em 0 0;
}

.agileinfo_footer_grid p {
  color: #999;
  line-height: 2em;
  font-size: medium;
}

.agileinfo_footer_grid i {
  color: #999;
}

.agileinfo_footer_grid button {
  margin-top: 1em;
  padding: 0.5em;
  font-size: medium;
  width: 100%;
  background-color: #2663ea;
  color: #ffffff;
  border-radius: 2rem;
}

.agileinfo_footer_grid button:hover {
  background-color: #1b4eda;
  transition-duration: 0.5s;
}

.agileinfo_footer_grid a {
  color: #999;
  line-height: 2em;
}

.agileinfo_footer_grid a:hover {
  color: #fff;
  cursor: pointer;
}

.agileinfo_footer_grid p span {
  display: block;
  margin: 1em 0 0;
}

/*-- newsletter --*/
.newsletter input[type="email"] {
  padding: 13px;
  border: 1px solid #3a3939;
  width: 72%;
  color: #fff;
  background-color: #191818;
  outline: none;
  font-size: 15px;
  letter-spacing: 1px;
}

.newsletter input[type="submit"] {
  width: 18%;
  padding: 12px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 1px;
  background-color: #fd4f47;
  border: none;
  outline: none;
  transition: all 0.2s ease;
}

.newsletter input[type="submit"]:hover {
  background-color: #00dcb0;
  transition: all 0.2s ease;
}

.newsletter {
  text-align: center;
  margin-top: 1em;
}

.newsletter h4 {
  font-size: 28px;
  color: #fff;
  letter-spacing: 1px;
  margin: 30px 0;
}

.newsletter form {
  width: 70%;
  margin: 0 auto;
}

/*-- bottom-to-top --*/
#toTop {
  display: none;
  text-decoration: none;
  position: fixed;
  bottom: 24px;
  right: 1%;
  overflow: hidden;
  z-index: 999;
  width: 64px;
  height: 64px;
  border: none;
  text-indent: 100%;
  background: url("/static/img/move-up.png") no-repeat 0px 0px;
}

#toTopHover {
  width: 64px;
  height: 64px;
  display: block;
  overflow: hidden;
  float: right;
  opacity: 0;
}

/*-- footer-intro --*/
.footer-intro {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

/*-- notice --*/
.notice {
  border-left: 4px solid #f59e0b;
  background-color: #fff7ed;
  padding: 1rem;
  margin: 2rem 0;
  font-size: 1rem;
  color: #92400e;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  border-radius: 8px;
}

/*-- highlighted-table --*/
.highlighted-table {
  margin: 2rem auto;
  width: 70%;
  border-collapse: collapse;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.highlighted-table thead tr {
  text-align: center;
  background-color: #f59e0b;
  color: white;
  text-align: left;
}

.highlighted-table th,
.highlighted-table td {
  padding: 1.5rem;
  font-size: medium;
  border-bottom: 1px solid #e5e7eb;
}

/*-- Responsive Design --*/
@media (max-width: 576px) {
  .navbar-default .navbar-toggle {
    margin: 15px 6px;
    padding: 7px 8px;
  }
  .navbar-nav {
    margin: 0;
    width: 100%;
    float: none;
    background: rgba(0, 0, 0, 0.73);
    padding: 0;
  }
  .navbar-nav > li {
    float: none;
    margin: 0;
    width: 100%;
  }
  .navbar-nav > li > a {
    margin: 0.6em 0;
    font-size: 16px;
    color: #fff;
    padding: 7px 0;
  }
  .banner-w3lstext {
    width: 100%;
    margin-top: 1em;
    margin-left: 2em;
  }
  .banner-w3lstext h3 {
    font-size: 16px;
    letter-spacing: 2px;
  }
  .banner-w3lstext p {
    font-size: 12px;
    letter-spacing: 2px;
  }
  a.view {
    font-size: 10px;
    padding: 9px 11px;
    margin: 30px 0 0;
  }
  a.view i {
    font-size: 20px;
    margin-right: 6px;
  }
  .banner-text {
    min-height: 320px;
  }
  .about,
  .services,
  .team,
  .news-section,
  .contact,
  .gallery {
    padding: 1.5em 0;
  }
  h3.title {
    font-size: 29px;
  }
  h3.title img {
    width: 14%;
  }
  .about-wel h2 {
    font-size: 20px;
    line-height: 1.6;
  }
  .about-wel p {
    font-size: 12px;
  }
  .about-wel ul li {
    font-size: 0.75em;
  }
  .about-wel ul li i {
    margin: 0 6px 0 0;
  }
  .video-agile iframe {
    width: 242px;
    height: 138px;
  }
  .video-agile {
    margin-top: 20px;
  }
  .stats {
    padding: 50px 0;
  }
  .stats-grid {
    font-size: 32px;
    padding: 0 1em;
    width: 100%;
  }
  .stats-grid:nth-child(2),
  .stats-grid:nth-child(3),
  .stats-grid:nth-child(4) {
    margin-top: 0.5em;
  }
  .stats p {
    font-size: 14px;
    padding-top: 12px;
    margin-top: 12px;
  }
  .team-grid {
    padding: 0 1em;
    width: 100%;
  }
  .team-grid:nth-child(2),
  .team-grid:nth-child(3),
  .team-grid:nth-child(4) {
    margin-top: 2em;
  }
  .caption {
    width: 95%;
  }
  .team-grid:hover .caption {
    top: 38%;
  }
  .team-text h4 {
    font-size: 16px;
  }
  .news-grid {
    padding: 0 1em;
    width: 100%;
  }
  .news-grid:nth-child(2) {
    margin: 2em 0;
  }
  .news-grid h5 a {
    font-size: 20px;
  }
  .post-img ul li span {
    font-size: 14px;
  }
  .post-img ul li {
    padding: 0 6px;
  }
  .news-events-agile {
    padding: 10px 14px;
  }
  .detail-bottom a h6 {
    font-size: 18px;
  }
  .detail-bottom {
    padding: 1em 0 0;
  }
  figure.effect-bubba h4 {
    font-size: 28px;
  }
  .panel-body {
    padding: 20px;
    font-size: 11px;
  }
  .contact-grid-agile {
    padding: 0 1em;
    width: 100%;
  }
  .contact-grid-agile:nth-child(1) {
    margin-bottom: 2em;
  }
  .contact-right2 {
    padding: 25px 20px;
  }
  .contact-grdr-w3l:nth-child(1) {
    width: 31.45%;
  }
  .contact-grdr-w3l h3 {
    font-size: 14px;
  }
  .contact-grid-agile input[type="text"],
  .contact-grid-agile input[type="email"],
  .contact-grid-agile textarea {
    font-size: 11px;
  }
  .contact-grid-agile textarea {
    min-height: 100px;
  }
  .contact-grid-agile input[type="submit"] {
    font-size: 13px;
  }
  .agileinfo_footer_grid {
    width: 100%;
    padding: 0 1em;
  }
  .agileinfo_footer_grid:nth-child(1) {
    padding: 0 1em;
  }
  .agileinfo_footer_grid:nth-child(2) {
    margin: 1.5em 0;
  }
  .agileinfo_footer_grid h4 {
    font-size: 21px;
    margin-bottom: 16px;
  }
  .agileinfo_footer_grid p {
    font-size: 12px;
  }
  .agileinfo_footer_grid ul li {
    margin-bottom: 0.8em;
    font-size: 13px;
  }
  .agileinfo_footer_grid1 {
    width: 31.45%;
  }
  .newsletter h4 {
    font-size: 20px;
  }
  .newsletter input[type="email"] {
    width: 68%;
    font-size: 13px;
    padding: 11px;
  }
  .newsletter input[type="submit"] {
    width: 30%;
    font-size: 12px;
  }
  .newsletter form {
    width: 100%;
  }
  .w3agile_footer_copy p {
    font-size: 13px;
    letter-spacing: 1px;
  }
  .w3agile_footer_copy {
    padding-top: 20px;
    margin-top: 30px;
  }
  .modal-body p {
    padding: 0.5em;
    font-size: 0.8em;
  }
  .modal-body h5 {
    margin: 0 0 0.8em 0;
    font-size: 1.8em;
  }
  .modal-header {
    padding: 15px 15px 0;
  }

  custom-header.scrolled .header {
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0px 20px;
    margin: 40px auto;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  custom-header.scrolled .navbar-nav > li > a {
    color: hsl(215 25% 46%) !important;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 1rem;
  }
  custom-header.scrolled .navbar h1 a img {
    width: 70px;
    margin-left: -75px;
  }

  .logo h1 a {
    font-size: 34px;
    margin-left: 30px;
  }
  .logo-position {
    width: 80px;
    margin-left: -40px;
  }
  .thump-content > h1 {
    color: #000;
    font-weight: 700;
    font-size: 36px;
  }

  .thump-content > p {
    color: rgb(91, 91, 248);
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    margin-top: 10px;
    font-weight: 400;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  custom-header.scrolled .header {
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0px 20px;
    margin: 40px auto;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  custom-header.scrolled .navbar-nav > li > a {
    color: hsl(215 25% 46%) !important;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 1rem;
  }
  .navbar-toggle {
    border: none;
    background: transparent;
    margin-right: 10px;
    padding: 8px;
  }
  .navbar-toggle .icon-bar {
    background-color: #fb2c2c;
  }
  .navbar-default .navbar-toggle {
    margin: 12px 20px;
    border-color: #000;
    height: 70px;
  }
  .navbar-nav {
    margin: 0;
    width: 100%;
    float: none;
    background: rgba(0, 0, 0, 0.73);
    padding: 0;
  }
  .navbar-nav > li {
    float: none;
    margin: 0;
    width: 100%;
  }
  .navbar-nav > li > a {
    margin: 1em 0;
    font-size: 16px;
    color: #fff;
    padding: 7px 0;
  }
  .logo h1 a {
    font-size: 34px;
    margin-left: 30px;
  }
  .logo-position {
    width: 100px;
    margin-left: -22px;
  }
  .banner-w3lstext {
    width: 90%;
    margin-top: 1.5em;
    margin-left: 2em;
  }
  .banner-w3lstext h3 {
    font-size: 16px;
  }
  .banner-w3lstext p {
    font-size: 12px;
  }
  a.view {
    font-size: 12px;
    padding: 11px 14px;
    margin: 45px 0 0;
  }
  .banner-text {
    min-height: 400px;
  }
  .about,
  .services,
  .team,
  .news-section,
  .contact,
  .gallery {
    padding: 3em 0;
  }
  h3.title {
    font-size: 36px;
  }
  h3.title img {
    width: 9%;
  }
  .about-wel h2 {
    font-size: 24px;
  }
  .about-wel p {
    font-size: 13px;
  }
  .about-wel ul li {
    font-size: 0.85em;
  }
  .video-agile iframe {
    width: 362px;
    height: 204px;
  }
  .video-agile {
    margin-top: 30px;
  }
  .stats {
    padding: 50px 0;
  }
  .stats-grid {
    font-size: 36px;
    width: 100%;
    padding: 0 1em;
  }
  .stats-grid:nth-child(3),
  .stats-grid:nth-child(4) {
    margin-top: 0.5em;
  }
  .stats p {
    font-size: 14px;
  }
  .team-grid {
    padding: 0 1em;
    width: 50%;
  }
  .team-grid:nth-child(3),
  .team-grid:nth-child(4) {
    margin-top: 2em;
  }
  .team-text h4 {
    font-size: 18px;
    padding: 10px 0;
  }
  .caption {
    width: 90%;
  }
  .team-grid:hover .caption {
    top: 34%;
  }
  .news-grid {
    padding: 0 1em;
    width: 100%;
  }
  .news-grid:nth-child(2) {
    margin: 2em 0;
  }
  .news-grid h5 a {
    font-size: 23px;
  }
  .post-img ul li span {
    font-size: 16px;
  }
  .post-img ul li {
    padding: 0 10px;
  }
  .news-events-agile {
    padding: 15px 15px;
  }
  .detail-bottom a h6 {
    font-size: 22px;
  }
  .detail-bottom {
    padding: 1.5em 0 0;
  }
  figure.effect-bubba h4 {
    font-size: 24px;
  }
  .contact-grid-agile {
    padding: 0 1em;
    width: 100%;
  }
  .contact-grid-agile:nth-child(1) {
    margin-bottom: 3em;
  }
  .contact-right2 {
    padding: 30px;
  }
  .contact-grdr-w3l:nth-child(1) {
    width: 17%;
  }
  .contact-grdr-w3l h3 {
    font-size: 18px;
  }
  .contact-grid-agile input[type="text"],
  .contact-grid-agile input[type="email"],
  .contact-grid-agile textarea {
    font-size: 12px;
    padding: 11px;
  }
  .contact-grid-agile textarea {
    min-height: 130px;
  }
  .contact-grid-agile input[type="submit"] {
    font-size: 14px;
  }
  .agileinfo_footer_grid {
    width: 100%;
    padding: 0 1em;
  }
  .agileinfo_footer_grid:nth-child(1) {
    padding: 0 1em;
  }
  .agileinfo_footer_grid:nth-child(2) {
    margin: 2em 0;
  }
  .agileinfo_footer_grid h4 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .agileinfo_footer_grid p {
    font-size: 14px;
  }
  .newsletter form {
    width: 100%;
  }
  .newsletter h4 {
    font-size: 23px;
    margin: 36px 0 22px;
  }
  .newsletter input[type="email"] {
    font-size: 14px;
  }
  .newsletter input[type="submit"] {
    font-size: 14px;
  }
  .w3agile_footer_copy p {
    font-size: 14px;
  }
  .w3agile_footer_copy {
    padding-top: 25px;
    margin-top: 35px;
  }
  .card-img {
    width: 70%;
  }
  .card-description,
  .card-name {
    font-size: 14px;
    font-weight: 400;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .logo-position {
    width: auto;
    margin-left: 0px;
  }
  .logo h1 a {
    font-size: 44px;
  }
  .navbar-nav {
    float: right;
    margin: 0;
    width: 75%;
    margin-top: 12px;
    display: flex;
    justify-content: space-around;
  }
  .navbar-default .navbar-nav > li > a {
    font-size: 15px;
    padding: 8px 0 15px;
    margin-left: 5px;
  }
  .banner-w3lstext {
    width: 80%;
    margin-top: 2em;
    margin-left: 2em;
  }
  .banner-w3lstext h3 {
    font-size: 22px;
    width: 80vw;
  }
  .banner-w3lstext p {
    letter-spacing: 2px;
    font-size: 16px;
  }
  a.view {
    font-size: 14px;
    padding: 12px 20px;
  }
  .banner-text {
    min-height: 500px;
  }
  h3.title {
    font-size: 38px;
  }
  h3.title img {
    width: 7%;
  }
  .about,
  .services,
  .team,
  .news-section,
  .contact,
  .gallery {
    padding: 4em 0;
  }
  .about-img-agile img {
    width: 70%;
    margin: 0 auto;
  }
  .about-wel h2 {
    font-size: 28px;
  }
  .stats-grid {
    font-size: 44px;
  }
  .stats p {
    font-size: 14px;
  }
  .team-text h4 {
    font-size: 18px;
    width: 76%;
    padding: 9px 0;
  }
  .team-grid:hover .caption {
    top: 28%;
  }
  .caption {
    width: 84%;
  }
  .news-grid h5 a {
    font-size: 20px;
  }
  .post-img ul li span {
    font-size: 14px;
  }
  .post-img ul li {
    padding: 0 5px;
  }
  .news-events-agile {
    padding: 10px 15px;
  }
  .detail-bottom a h6 {
    font-size: 19px;
  }
  .detail-bottom {
    padding: 1.5em 0 0;
  }
  figure.effect-bubba h4 {
    font-size: 28px;
  }
  .news-grid {
    padding: 0 0.5em;
  }
  .contact-right2 {
    padding: 30px 12px;
  }
  .contact-grid-agile input[type="text"],
  .contact-grid-agile input[type="email"],
  .contact-grid-agile textarea {
    font-size: 13px;
    padding: 12px;
    margin: 0 0 0.8em;
  }
  .contact-grid-agile textarea {
    min-height: 140px;
  }
  .contact-grdr-w3l h3 {
    font-size: 15px;
  }
  .agileinfo_footer_grid {
    padding: 0 0.5em;
  }
  .agileinfo_footer_grid h4 {
    font-size: 26px;
    margin-bottom: 25px;
  }
  .agileinfo_footer_grid p {
    font-size: 14px;
  }
  .newsletter form {
    width: 90%;
  }
  .footer {
    padding: 3em 0;
  }
  .agileinfo_footer_grid:nth-child(1) {
    padding: 0 1em 0 0;
  }
  .service-cards-container {
    gap: 15px;
  }
  .service-cards-container > div {
    margin-bottom: 15px;
  }
  .card-img {
    width: 40%;
  }
  .card-description,
  .card-name {
    font-size: 24px;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .navbar-nav {
    float: right;
    margin: 0;
    width: 75%;
    margin-top: 15px;
    display: flex;
    justify-content: space-around;
  }
  .logo h1 a {
    font-size: 44px;
  }
  .navbar-default .navbar-nav > li > a {
    font-size: 14px;
  }
  .navbar-nav {
    width: 75%;
    margin-top: 12px;
  }
  .banner-w3lstext {
    margin-top: 2.5em;
    margin-left: 2.5em;
  }
  .banner-w3lstext h3 {
    font-size: 30px;
  }
  .banner-w3lstext p {
    letter-spacing: 3px;
    font-size: 16px;
  }
  a.view {
    font-size: 14px;
    padding: 12px 20px;
  }
  .banner-text {
    min-height: 600px;
  }
  h3.title {
    font-size: 46px;
  }
  .about,
  .services,
  .team,
  .news-section,
  .contact,
  .gallery {
    padding: 4.5em 0;
  }
  .video-agile iframe {
    width: 439px;
    height: 251px;
  }
  .stats {
    padding: 80px 0;
  }
  .stats-grid {
    font-size: 50px;
  }
  .stats p {
    font-size: 19px;
  }
  .team-text h4 {
    font-size: 21px;
  }
  .news-grid h5 a {
    font-size: 22px;
  }
  .detail-bottom a h6 {
    font-size: 22px;
  }
  figure.effect-bubba h4 {
    font-size: 35px;
  }
}
@media (min-width: 1201px) and (max-width: 1400px) {
  .navbar-nav {
    float: right;
    margin: 0;
    width: 70%;
    margin-top: 26px;
    display: flex;
    justify-content: space-evenly;
  }
  .banner-w3lstext {
    margin-top: 2em;
    margin-left: 2.5em;
  }
  .banner-w3lstext h3 {
    font-size: 32px;
  }
  .banner-text {
    min-height: 670px;
  }
  .video-agile iframe {
    width: 539px;
  }
  .stats-grid {
    font-size: 54px;
  }
  .stats p {
    font-size: 24px;
  }
}
@media (min-width: 1401px) and (max-width: 1920px) {
  .navbar-nav {
    float: right;
    margin: 0;
    width: 70%;
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
  }
}
