@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

body {
  margin: 0;
  padding: 0;
}
input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000000;
  font-weight: 700;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 12px;
  width: 12px;
  padding: 7px;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
  border-radius: 2px;
  margin-left: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* scroll */
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #343886;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #343886;
}
.agileba-main * {
  box-sizing: border-box;
  font-family: Roboto;
}
.agileba-main p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  color: #1D1D1D;
  width: 100%;
}
.agileba-main p strong,
.agileba-main p b {
  font-weight: 700;
}
.agileba-main a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.agileba-main h1,
.agileba-main h2,
.agileba-main h3,
.agileba-main h4 {
  margin: 0;
}
.agileba-main h2 {
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
}
.agileba-main ul,
.agileba-main li {
  padding: 0;
  margin: 0;
  color: #1D1D1D;
  list-style: none;
}
.agileba-main .container {
  width: 100%;
}
.agileba-main .flex-container {
  display: flex;
  margin: auto;
}
.agileba-main .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.agileba-main .buttons img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.agileba-main .buttons .btn-yellow,
.agileba-main .buttons .btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  text-decoration: none;
  outline: none;
  min-width: 150px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 1.8s ease;
}
.agileba-main .buttons .btn-yellow:before,
.agileba-main .buttons .btn-white:before,
.agileba-main .buttons .btn-yellow:after,
.agileba-main .buttons .btn-white:after {
  content: "";
  height: 700px;
  width: 700px;
  position: absolute;
  z-index: -1;
  top: 160%;
  left: -215px;
  transition: all 1.4s ease;
  border-radius: 60% 70% 20% 40%;
  background-color: #c5c5c5;
}
.agileba-main .buttons .btn-yellow:hover::before,
.agileba-main .buttons .btn-white:hover::before {
  opacity: 0.5;
  transition: 1.5s all;
}
.agileba-main .buttons .btn-yellow:hover::after,
.agileba-main .buttons .btn-white:hover::after {
  opacity: 1;
  transition: 2s all;
}
.agileba-main .buttons .btn-yellow:hover:before,
.agileba-main .buttons .btn-white:hover:before,
.agileba-main .buttons .btn-yellow:hover:after,
.agileba-main .buttons .btn-white:hover:after {
  top: -100%;
}
.agileba-main .buttons .btn-yellow {
  color: #1D1D1D;
  background: #ECDE05;
}
.agileba-main .buttons .btn-white {
  background-color: #fff;
  color: #1D1D1D;
  border: 2px solid #343886;
}
.agileba-main .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  width: 100%;
}
.agileba-main .heading h2 {
  font-weight: 700;
  background: linear-gradient(to right, #ECDE05 10%, #343886 60%);
  background-clip: border-box;
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 5s linear infinite;
  width: 100%;
}
.agileba-main .center-heading {
  justify-content: center;
  align-items: center;
}
.agileba-main .center-heading h2 {
  text-align: center;
}
.agileba-main .white-heading h2 {
  color: #fff;
  background: linear-gradient(to right, #ECDE05 10%, #fff 60%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
@keyframes cube {
  from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    opacity: 1;
  }
  to {
    transform: scale(8) rotate(960deg) translate(-50%, -50%);
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes circleMover {
  from {
    transform: rotate(0deg) translateX(35px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(35px) rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes around1 {
  0% {
    right: 45px;
  }
  50% {
    right: 0px;
  }
  100% {
    right: 45px;
  }
}
@keyframes around2 {
  0% {
    left: 45px;
  }
  50% {
    left: 0px;
  }
  100% {
    left: 45px;
  }
}
@keyframes around3 {
  0% {
    left: 32px;
  }
  50% {
    left: 0px;
  }
  100% {
    left: 32px;
  }
}
@keyframes around4 {
  0% {
    right: 32px;
  }
  50% {
    right: 0px;
  }
  100% {
    right: 32px;
  }
}
@keyframes line-move1 {
  0% {
    top: 0;
  }
  50% {
    top: 93%;
  }
  100% {
    top: 0;
  }
}
@keyframes line-move2 {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 93%;
  }
  100% {
    bottom: 0;
  }
}
@keyframes pulse1 {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.049);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes pulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
@keyframes dotsMove {
  0% {
    transform: translate(0px 0px) rotate(0deg);
  }
  50% {
    transform: translate(-160px, -300px) rotate(360deg);
  }
  100% {
    transform: translate(0px 0px) rotate(0deg);
  }
}
@keyframes rotateTri {
  0% {
    transform: translate(10px, 0px) rotate(0deg);
  }
  25% {
    transform: translate(40px, 60px) rotate(180deg);
  }
  50% {
    transform: translate(-90px, 60px) rotate(270deg);
  }
  75% {
    transform: translate(70px, -80px) rotate(360deg);
  }
  100% {
    transform: translate(10px, 0px) rotate(0deg);
  }
}
@keyframes buzz {
  50% {
    transform: translateX(1px) rotate(2deg);
  }
  100% {
    transform: translateX(-1px) rotate(-2deg);
  }
}
.agileba-main .banner {
  flex-direction: column;
  background-image: linear-gradient(#343886 20%, #1A1C43);
  position: relative;
  z-index: 4;
}
.agileba-main .banner .container {
  height: 100%;
}
.agileba-main .banner #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.agileba-main .banner .logo-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}
.agileba-main .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  padding: 1rem;
  height: auto;
}
.agileba-main .banner .logo-container .tka-logo {
  display: flex;
  max-width: 200px;
}
.agileba-main .banner .logo-container .tka-logo img {
  width: 100%;
}
.agileba-main .banner .logo-container .menu {
  display: flex;
  z-index: 1;
  margin-left: auto;
}
.agileba-main .banner .logo-container .menu img {
  width: 22px;
  height: 23px;
}
.agileba-main .banner .logo-container .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.agileba-main .banner .logo-container .menu-links .menu-toggle {
  color: #343886;
}
.agileba-main .banner .logo-container .menu-links .menu-toggle img {
  width: 15px;
  height: 21px;
  margin-right: 5px;
}
.agileba-main .banner .logo-container ul .links-li {
  padding: 8px 0;
  border-bottom: 1px solid #000000;
  border-bottom-style: dotted;
}
.agileba-main .banner .logo-container ul .links-li:nth-last-child(2) {
  border-bottom: none;
  padding-bottom: 0;
}
.agileba-main .banner .logo-container ul .links-li:first-child {
  padding-top: 0;
}
.agileba-main .banner .logo-container ul .links-li:last-child {
  padding-bottom: 0;
}
.agileba-main .banner .logo-container ul .links-li .link {
  font-size: 14px;
  color: #000000;
}
.agileba-main .banner .logo-container ul .buttons {
  display: none;
}
.agileba-main .banner .logo-container .menu.active {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.047);
}
.agileba-main .banner .logo-container .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.agileba-main .banner .logo-container .menu.active + .menu-links .menu-toggle {
  display: flex;
  justify-content: flex-end;
}
.agileba-main .banner .sticky {
  position: fixed;
  top: 0;
  width: 100%;
  transition: 1s;
  padding: 1rem 1.5rem;
  background-color: #fff !important;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.agileba-main .banner .sticky .container {
  padding: 0;
  box-shadow: none;
}
.agileba-main .banner .sticky-up {
  top: -100px;
}
.agileba-main .banner .sticky-down {
  top: 0;
  z-index: 4;
}
.agileba-main .banner .banner-container {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  padding-top: 1rem;
}
.agileba-main .banner .banner-container .banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.agileba-main .banner .banner-container .banner-content p,
.agileba-main .banner .banner-container .banner-content h1 {
  color: #fff;
}
.agileba-main .banner .banner-container .banner-content .agileba-logo {
  display: flex;
  width: 150px;
}
.agileba-main .banner .banner-container .banner-content .agileba-logo img {
  width: 100%;
}
.agileba-main .banner .banner-container .banner-content h1 {
  display: flex;
  align-items: flex-start;
  margin: 1rem 0 0.4rem;
  width: 100%;
  font-size: 24px;
}
.agileba-main .banner .banner-container .banner-content h1 img {
  width: 40px;
  height: 36px;
  margin-right: 10px;
}
.agileba-main .banner .banner-container .banner-content .facts-content {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  align-items: flex-start;
  width: 100%;
}
.agileba-main .banner .banner-container .banner-content .facts-content .heading h2 {
  background-image: none;
  color: #ECDE05;
  -webkit-text-fill-color: #ECDE05;
}
.agileba-main .banner .banner-container .banner-content .facts-content .facts-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.agileba-main .banner .banner-container .banner-content .facts-content .facts-list .fact {
  display: flex;
  align-items: center;
  background-color: #4d5084;
  padding: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.agileba-main .banner .banner-container .banner-content .facts-content .facts-list .fact:last-child {
  margin-bottom: 0;
}
.agileba-main .banner .banner-container .banner-content .facts-content .facts-list .fact .fact-img {
  display: flex;
  width: 36px;
  height: 36px;
  margin-right: 10px;
}
.agileba-main .banner .banner-container .banner-content .facts-content .facts-list .fact .fact-img img {
  width: 100%;
  height: 100%;
}
.agileba-main .banner .banner-container .banner-content .facts-content .facts-list .fact .fact-count {
  display: flex;
  align-items: center;
  margin-right: 10px;
  width: 50px;
}
.agileba-main .banner .banner-container .banner-content .facts-content .facts-list .fact .fact-count h3,
.agileba-main .banner .banner-container .banner-content .facts-content .facts-list .fact .fact-count span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.agileba-main .banner .banner-container .banner-content .facts-content .facts-list .fact .fact-count h3 {
  margin-right: 2px;
}
.agileba-main .banner .banner-container .banner-content .facts-content .facts-list .fact p {
  font-weight: 500;
  width: auto;
}
.agileba-main .banner .banner-container .banner-content .buttons {
  margin-top: 2rem;
}
.agileba-main .banner .banner-container .banner-img {
  display: flex;
  width: 100%;
  height: 100%;
  margin-top: 2rem;
}
.agileba-main .banner .banner-container .banner-img img {
  width: 100%;
  height: 100%;
}
.agileba-main .overview {
  padding: 3rem 1.5rem;
}
.agileba-main .overview .overview-container {
  display: flex;
  flex-direction: column;
}
.agileba-main .overview .overview-container .overview-image {
  display: flex;
  order: 2;
  width: 100%;
  height: 100%;
  margin-top: 3rem;
}
.agileba-main .overview .overview-container .overview-image img {
  width: 100%;
  height: 100%;
}
.agileba-main .overview .overview-container .overview-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  order: 1;
}
.agileba-main .overview .overview-container .overview-content p {
  text-align: center;
}
.agileba-main .overview .overview-container .overview-content p:nth-child(3) {
  margin-top: 10px;
}
.agileba-main .course {
  padding: 3rem 1.5rem;
  background-color: #F5F5F5;
}
.agileba-main .course .course-container {
  display: flex;
  flex-direction: column;
}
.agileba-main .course .course-container .heading {
  margin-bottom: 2rem;
}
.agileba-main .course .course-container .heading p {
  text-align: center;
  margin-top: 10px    ;
}
.agileba-main .course .course-container .heading p span {
  color: #ECDE05;
  font-weight: 600;
}
.agileba-main .course .course-container .course-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.agileba-main .course .course-container .course-list .course-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  width: 255px;
  background-image: url(/_public/images/agileba/course-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 24%;
  background-position: bottom;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  transition: 0.5s all;
  position: relative;
  z-index: 1;
}
.agileba-main .course .course-container .course-list .course-content:last-child {
  margin-bottom: 0;
}
.agileba-main .course .course-container .course-list .course-content::before,
.agileba-main .course .course-container .course-list .course-content::after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  transition: 1s ease;
}
.agileba-main .course .course-container .course-list .course-content::before {
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  bottom: 0;
  left: 0;
}
.agileba-main .course .course-container .course-list .course-content::after {
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  top: 0;
  right: 0;
}
.agileba-main .course .course-container .course-list .course-content span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background-color: #ECECEC;
  border-radius: 8px;
  border-bottom-right-radius: 0;
  transition: 0.8s all;
  position: relative;
  margin-bottom: 1rem;
}
.agileba-main .course .course-container .course-list .course-content span::before {
  position: absolute;
  content: '';
  top: -7px;
  left: -8px;
  height: 80px;
  width: 80px;
  background-color: #F5F5F5;
  border-radius: 8px;
  border-bottom-right-radius: 0;
  z-index: -1;
}
.agileba-main .course .course-container .course-list .course-content span img {
  width: 45px;
  height: 45px;
}
.agileba-main .course .course-container .course-list .course-content span .white {
  display: none;
}
.agileba-main .course .course-container .course-list .course-content h3 {
  text-align: center;
  margin: 10px 0;
  width: 100%;
}
.agileba-main .course .course-container .course-list .course-content p {
  color: #AFAFAF;
  text-align: center;
}
.agileba-main .course .course-container .course-list .course-content:hover {
  transition: 0.5s all;
}
.agileba-main .course .course-container .course-list .course-content:hover::before {
  width: 98.5%;
  height: 98.5%;
  border-bottom: 4px solid #343886;
  border-left: 4px solid #343886;
}
.agileba-main .course .course-container .course-list .course-content:hover::after {
  width: 98%;
  height: 98.5%;
  border-top: 4px solid #343886;
  border-right: 4px solid #343886;
}
.agileba-main .course .course-container .course-list .course-content:hover span {
  background-image: linear-gradient(#343886 20%, #1A1C43);
  transition: 0.8s all;
  border-top-left-radius: 0;
  border-bottom-right-radius: 8px;
}
.agileba-main .course .course-container .course-list .course-content:hover span::before {
  border-top-left-radius: 0;
  border-bottom-right-radius: 8px;
}
.agileba-main .course .course-container .course-list .course-content:hover span .white {
  display: flex;
}
.agileba-main .course .course-container .course-list .course-content:hover span .black {
  display: none;
}
.agileba-main .framework {
  display: none;
}
.agileba-main .limited {
  flex-direction: column;
}
.agileba-main .limited .limited-container {
  display: flex;
  flex-direction: column;
}
.agileba-main .limited .limited-container ul li {
  font-size: 14px;
  margin-top: 8px;
  padding-left: 1.2rem;
  position: relative;
  z-index: 1;
}
.agileba-main .limited .limited-container ul li::before {
  position: absolute;
  content: '';
  left: 0;
  z-index: -1;
}
.agileba-main .limited .limited-container ul li:first-child {
  padding-left: 0;
  margin-top: 0;
}
.agileba-main .limited .limited-container ul li:first-child::before {
  content: none;
}
.agileba-main .limited .limited-container .buttons {
  justify-content: flex-start;
}
.agileba-main .limited .limited-container .why-container {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background-color: #fff;
}
.agileba-main .limited .limited-container .why-container ul li::before {
  top: 2px;
  width: 17px;
  height: 17px;
  background-image: url(/_public/images/agileba/polygon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  animation: rotate 5s linear infinite;
}
.agileba-main .limited .limited-container .budget-container {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background: linear-gradient(#343886 20%, #1A1C43);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.agileba-main .limited .limited-container .budget-container .boxes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  opacity: 0.2;
}
.agileba-main .limited .limited-container .budget-container .boxes li {
  position: absolute;
  display: flex;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}
.agileba-main .limited .limited-container .budget-container .boxes li::before {
  content: none;
}
.agileba-main .limited .limited-container .budget-container .boxes li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}
.agileba-main .limited .limited-container .budget-container .boxes li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}
.agileba-main .limited .limited-container .budget-container .boxes li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}
.agileba-main .limited .limited-container .budget-container .boxes li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}
.agileba-main .limited .limited-container .budget-container .boxes li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}
.agileba-main .limited .limited-container .budget-container .boxes li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}
.agileba-main .limited .limited-container .budget-container .boxes li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}
.agileba-main .limited .limited-container .budget-container .boxes li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}
.agileba-main .limited .limited-container .budget-container .boxes li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}
.agileba-main .limited .limited-container .budget-container .boxes li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}
.agileba-main .limited .limited-container .budget-container ul li {
  color: #fff;
}
.agileba-main .limited .limited-container .budget-container ul li::before {
  width: 11px;
  height: 11px;
  top: 3px;
  background-color: #fff;
  border-radius: 50%;
  animation: pulse1 2s linear infinite;
}
.agileba-main .limited .limited-container .budget-container .counter {
  font-weight: 600;
  margin-top: 10px;
  font-size: 16px;
  margin-bottom: 0;
  color: #fff;
}
.agileba-main .methods {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
}
.agileba-main .methods .methods-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.agileba-main .methods .methods-container p {
  text-align: center;
}
.agileba-main .methods .methods-container .methods-list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 0;
}
.agileba-main .methods .methods-container .methods-list .method-content {
  display: flex;
  flex-direction: column;
  width: 49%;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.agileba-main .methods .methods-container .methods-list .method-content span {
  display: flex;
  width: 140px;
  height: 65px;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.agileba-main .methods .methods-container .methods-list .method-content span img {
  width: 40px;
  height: 40px;
}
.agileba-main .principles {
  flex-direction: column;
  padding: 3rem 1.5rem;
  background-color: #F5F5F5;
}
.agileba-main .principles .container {
  height: 100%;
}
.agileba-main .principles .principles-container {
  display: flex;
  flex-direction: column;
}
.agileba-main .principles .principles-container .principles-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.agileba-main .principles .principles-container .principles-content .principles-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.agileba-main .principles .principles-container .principles-content .principles-list .content {
  display: flex;
  margin-top: 1.5rem;
  align-items: center;
  width: 100%;
}
.agileba-main .principles .principles-container .principles-content .principles-list .content span {
  display: flex;
  height: 50px;
  width: 80px;
  margin-right: 0.5rem;
}
.agileba-main .principles .principles-container .principles-content .principles-list .content span img {
  width: 100%;
  height: 100%;
}
.agileba-main .principles .principles-container .principles-content .principles-list .content p {
  font-weight: 700;
  line-height: 1.5;
  width: calc(100% - 80px);
  text-align: left;
}
.agileba-main .principles .principles-container .principles-content .buttons {
  margin-top: 2rem;
}
.agileba-main .principles .principles-container .principles-image {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 1rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin-top: 3rem;
  height: 100%;
}
.agileba-main .principles .principles-container .principles-image img {
  width: 100%;
  height: 100%;
}
.agileba-main .benefits {
  padding: 3rem 1.5rem;
}
.agileba-main .benefits .benefits-container {
  display: flex;
  flex-direction: column;
}
.agileba-main .benefits .benefits-container .offer-mission {
  display: flex;
  flex-direction: column;
}
.agileba-main .benefits .benefits-container .offer-mission .offer-timer {
  display: flex;
  flex-direction: column;
}
.agileba-main .benefits .benefits-container .offer-mission .offer-timer .offer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background-color: #F5F5F5;
}
.agileba-main .benefits .benefits-container .offer-mission .offer-timer .offer-content .offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.agileba-main .benefits .benefits-container .offer-mission .offer-timer .offer-content .offer span {
  display: flex;
  width: 55px;
  height: 55px;
  margin-bottom: 10px;
}
.agileba-main .benefits .benefits-container .offer-mission .offer-timer .offer-content .offer span img {
  width: 100%;
  height: 100%;
  animation: buzz 0.2s linear infinite;
}
.agileba-main .benefits .benefits-container .offer-mission .offer-timer .offer-content .offer .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.agileba-main .benefits .benefits-container .offer-mission .offer-timer .offer-content .offer .text h2,
.agileba-main .benefits .benefits-container .offer-mission .offer-timer .offer-content .offer .text p {
  text-align: center;
}
.agileba-main .benefits .benefits-container .offer-mission .offer-timer .offer-content .offer .text p {
  line-height: 1.5;
  font-weight: 500;
  margin-top: 6px;
}
.agileba-main .benefits .benefits-container .offer-mission .offer-timer .timer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 1rem;
  position: relative;
  z-index: 1;
}
.agileba-main .benefits .benefits-container .offer-mission .offer-timer .timer::before {
  position: absolute;
  content: '';
  background-image: linear-gradient(#343886 20%, #1A1C43);
  border-radius: 8px;
  width: 100%;
  height: 58%;
  left: 0;
  top: 5px;
  z-index: -1;
}
.agileba-main .benefits .benefits-container .offer-mission .offer-timer .timer .time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  position: relative;
  z-index: 1;
  min-width: 50px;
}
.agileba-main .benefits .benefits-container .offer-mission .offer-timer .timer .time::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/agileba/colons.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 30px;
  z-index: -1;
  right: -15px;
  top: 6px;
  animation: pulse 2s linear infinite;
}
.agileba-main .benefits .benefits-container .offer-mission .offer-timer .timer .time:last-child {
  margin-right: 0;
}
.agileba-main .benefits .benefits-container .offer-mission .offer-timer .timer .time:last-child::before {
  content: none;
}
.agileba-main .benefits .benefits-container .offer-mission .offer-timer .timer .time span {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  font-size: 22px;
}
.agileba-main .benefits .benefits-container .offer-mission .offer-timer .timer .time p {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}
.agileba-main .benefits .benefits-container .offer-mission .mission-content {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  margin-top: 1.5rem;
}
.agileba-main .benefits .benefits-container .offer-mission .mission-content img {
  width: 100%;
  height: 100%;
}
.agileba-main .benefits .benefits-container .benefits-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1rem;
}
.agileba-main .benefits .benefits-container .benefits-content ul {
  width: 100%;
}
.agileba-main .benefits .benefits-container .benefits-content ul li {
  font-size: 14px;
  position: relative;
  z-index: 1;
  padding-left: 1.5rem;
  margin-top: 10px;
}
.agileba-main .benefits .benefits-container .benefits-content ul li::before {
  position: absolute;
  content: '';
  background-image: url(/_public/images/agileba/grey-star.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  z-index: -1;
  left: 0;
  top: 0;
  animation: rotate 4s linear infinite;
}
.agileba-main .benefits .benefits-container .benefits-content ul li:last-child ul li::before {
  background-image: none;
  height: 5px;
  background-color: #9E9E9E;
  top: 7px;
  left: 2px;
  width: 16px;
  animation: none;
}
.agileba-main .choose {
  padding: 3rem 1.5rem;
  background-color: #F5F5F5;
}
.agileba-main .choose .choose-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.agileba-main .choose .choose-container p {
  text-align: center;
}
.agileba-main .choose .choose-container .choose-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.agileba-main .choose .choose-container .choose-content .buttons {
  display: none;
}
.agileba-main .choose .choose-container .choose-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.agileba-main .choose .choose-container .choose-list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
  transition: 1s all;
  width: 272px;
  align-self: center;
}
.agileba-main .choose .choose-container .choose-list .item span {
  display: flex;
  width: 50px;
  height: 50px;
}
.agileba-main .choose .choose-container .choose-list .item span img {
  width: 100%;
  height: 100%;
}
.agileba-main .choose .choose-container .choose-list .item .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.agileba-main .choose .choose-container .choose-list .item .content h3 {
  text-align: center;
  margin: 10px 0;
  font-size: 18px;
}
.agileba-main .choose .choose-container .choose-list .item .content p {
  line-height: 1.5;
}
.agileba-main .testimonials {
  padding: 3rem 1.5rem;
  background-image: linear-gradient(#343886 20%, #1A1C43);
}
.agileba-main .testimonials .testimonials-container {
  display: flex;
  flex-direction: column;
}
.agileba-main .testimonials .testimonials-container .testimonials-list {
  display: flex;
  flex-direction: column;
}
.agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item {
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 1rem;
  margin: auto;
  margin: 10px;
}
.agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item .review {
  text-align: center;
  position: relative;
  z-index: 1;
}
.agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item .review::before,
.agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item .review::after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  height: 40px;
  width: 20px;
  z-index: -1;
}
.agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item .review::before {
  background-image: url(/_public/images/agileba/left-quotation.svg);
  left: -12px;
  top: -13px;
}
.agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item .review::after {
  background-image: url(/_public/images/agileba/right-quotation.svg);
  right: -12px;
  bottom: -13px;
}
.agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item .user-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}
.agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item .user-name p {
  color: #9E9E9E;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}
.agileba-main .testimonials .testimonials-container .owl-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 70px;
  margin: 0 auto;
  margin-top: 1rem;
}
.agileba-main .testimonials .testimonials-container .owl-nav .owl-prev,
.agileba-main .testimonials .testimonials-container .owl-nav .owl-next {
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  width: 30px;
  height: 30px;
  top: 0;
  opacity: 0.5;
}
.agileba-main .testimonials .testimonials-container .owl-nav .owl-prev span,
.agileba-main .testimonials .testimonials-container .owl-nav .owl-next span {
  display: none;
}
.agileba-main .testimonials .testimonials-container .owl-nav .owl-prev {
  background-image: url(/_public/images/agileba/left-arrow.svg);
  outline: 0;
  left: -10px;
}
.agileba-main .testimonials .testimonials-container .owl-nav .owl-next {
  background-image: url(/_public/images/agileba/right-arrow.svg);
  outline: none;
  right: -10px;
}
.agileba-main .testimonials .testimonials-container .owl-nav .btn-active {
  opacity: 1;
}
.agileba-main .faq {
  padding: 3rem 1.5rem;
}
.agileba-main .faq .faq-container {
  display: flex;
  flex-direction: column;
}
.agileba-main .faq .faq-container .faq-content {
  display: flex;
  flex-direction: column;
}
.agileba-main .faq .faq-container .faq-content .faq-list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
.agileba-main .faq .faq-container .faq-content .faq-list .faq-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  width: 100%;
  background-color: #F5F5F5;
  padding: 12px;
}
.agileba-main .faq .faq-container .faq-content .faq-list .faq-item:last-child {
  margin-bottom: 0;
}
.agileba-main .faq .faq-container .faq-content .faq-list .faq-item .ques {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.agileba-main .faq .faq-container .faq-content .faq-list .faq-item .ques h3 {
  font-size: 14px;
  width: 90%;
}
.agileba-main .faq .faq-container .faq-content .faq-list .faq-item .ques span {
  display: flex;
  width: 20px;
  height: 20px;
}
.agileba-main .faq .faq-container .faq-content .faq-list .faq-item .ques span img {
  width: 100%;
}
.agileba-main .faq .faq-container .faq-content .faq-list .faq-item .ques span .plus {
  display: flex;
}
.agileba-main .faq .faq-container .faq-content .faq-list .faq-item .ques span .minus {
  display: none;
}
.agileba-main .faq .faq-container .faq-content .faq-list .faq-item .ans {
  display: none;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 2px dotted #343886;
}
.agileba-main .faq .faq-container .faq-content .faq-list .faq-item .ans p {
  font-size: 13px;
  line-height: 1.4;
}
.agileba-main .faq .faq-container .faq-content .faq-list .faq-item .ans ul {
  padding-left: 18px;
  margin-top: 5px;
}
.agileba-main .faq .faq-container .faq-content .faq-list .faq-item .ans ul li {
  font-size: 13px;
  list-style: disc;
}
.agileba-main .faq .faq-container .faq-content .faq-list .faq-item.active .ques span .plus {
  display: none;
}
.agileba-main .faq .faq-container .faq-content .faq-list .faq-item.active .ques span .minus {
  display: flex;
}
.agileba-main .faq .faq-container .form-content {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}
.agileba-main .faq .faq-container .form-content .form {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.agileba-main .faq .faq-container .form-content .form::before,
.agileba-main .faq .faq-container .form-content .form::after {
  content: '';
  z-index: -1;
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 100px;
  width: 200px;
}
.agileba-main .faq .faq-container .form-content .form::before {
  top: 0;
  right: 0;
  background-image: url(/_public/images/agileba/form-top.png);
}
.agileba-main .faq .faq-container .form-content .form::after {
  bottom: 0;
  left: 0;
  background-image: url(/_public/images/agileba/form-bottom.png);
}
.agileba-main .faq .faq-container .form-content .form .input-container {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
  justify-content: center;
  background-color: #fff;
  border: 2px solid #D4D4D4;
  border-radius: 5px;
  padding: 0.6rem;
}
.agileba-main .faq .faq-container .form-content .form .input-container input,
.agileba-main .faq .faq-container .form-content .form .input-container textarea {
  width: 100%;
  border: none;
  outline: 0;
  font-weight: 500;
  color: #1D1D1D;
  padding: 0;
}
.agileba-main .faq .faq-container .form-content .form .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.agileba-main .faq .faq-container .form-content .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #959595;
}
.agileba-main .faq .faq-container .form-content .form .input-container :-ms-input-placeholder {
  /* IE */
  color: #959595;
}
.agileba-main .faq .faq-container .form-content .form .input-error {
  border: 2px solid red;
}
.agileba-main .faq .faq-container .form-content .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: red;
}
.agileba-main .faq .faq-container .form-content .form .input-error :-ms-input-placeholder {
  /* IE */
  color: red;
}
.agileba-main .faq .faq-container .form-content .form .form-consent {
  display: flex;
  color: #1D1D1D;
  font-size: 12px;
  margin-bottom: 0.4rem;
}
.agileba-main .faq .faq-container .form-content .form .form-consent:last-child {
  margin-bottom: 0;
}
.agileba-main .faq .faq-container .form-content .form .form-consent input {
  margin-left: 0;
}
.agileba-main .faq .faq-container .form-content .form .form-consent label {
  display: flex;
  align-items: center;
  margin-left: 0.3rem;
  margin-bottom: 0.5rem;
  width: 95%;
}
.agileba-main .faq .faq-container .form-content .form .form-consent label:last-child {
  margin-bottom: 0;
}
.agileba-main .faq .faq-container .form-content .form .form-consent p {
  color: #000000;
  line-height: 1.4;
  font-size: 12px;
}
.agileba-main .faq .faq-container .form-content .form .form-consent a {
  color: #ECDE05;
  font-weight: bold;
}
.agileba-main .faq .faq-container .form-content .form .consent-error,
.agileba-main .faq .faq-container .form-content .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.agileba-main .faq .faq-container .form-content .form .consent-error p,
.agileba-main .faq .faq-container .form-content .form .consent-error-other p {
  color: red;
  line-height: 1.4;
  font-size: 12px;
}
.agileba-main .footer {
  padding: 3rem 1.5rem;
  background-image: linear-gradient(#343886 20%, #1A1C43);
}
.agileba-main .footer .footer-container {
  display: flex;
  flex-direction: column;
}
.agileba-main .footer .footer-container .query {
  display: none;
}
.agileba-main .footer .footer-container .footer-content {
  display: flex;
  flex-direction: column;
}
.agileba-main .footer .footer-container .footer-content .contact-info {
  display: flex;
  flex-direction: column;
}
.agileba-main .footer .footer-container .footer-content .contact-info .contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1rem;
}
.agileba-main .footer .footer-container .footer-content .contact-info .contact span {
  display: flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
}
.agileba-main .footer .footer-container .footer-content .contact-info .contact span img {
  width: 18px;
  height: 18px;
}
.agileba-main .footer .footer-container .footer-content .contact-info .contact .content {
  display: flex;
  flex-direction: column;
}
.agileba-main .footer .footer-container .footer-content .contact-info .contact .content p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.agileba-main .footer .footer-container .footer-content .contact-info .contact .content a {
  color: #fff;
  font-size: 14px;
}
.agileba-main .footer .footer-container .footer-content .buttons {
  margin-top: 0;
  justify-content: flex-start;
}
@media (min-width:320px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .agileba-main .heading h2 {
    background: none;
  }
}
@media (min-width : 768px) {
  .agileba-main .buttons .btn-yellow,
  .agileba-main .buttons .btn-white {
    font-size: 16px;
  }
  .agileba-main .banner .logo-container {
    padding: 1rem 2rem;
  }
  .agileba-main .banner .logo-container .menu.active + .menu-links {
    width: 45%;
  }
  .agileba-main .banner .banner-container {
    padding: 3rem 2rem;
    padding-top: 1rem;
  }
  .agileba-main .banner .banner-container .banner-content {
    align-items: flex-start;
  }
  .agileba-main .banner .banner-container .banner-content h1 {
    align-items: center;
  }
  .agileba-main .banner .banner-container .banner-content .facts-content {
    width: 100%;
  }
  .agileba-main .banner .banner-container .banner-content .facts-content .heading {
    align-items: flex-start;
  }
  .agileba-main .banner .banner-container .banner-content .facts-content .heading h2 {
    text-align: left;
  }
  .agileba-main .banner .banner-container .banner-content .facts-content .facts-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .agileba-main .banner .banner-container .banner-content .facts-content .facts-list .fact {
    margin-bottom: 0;
    flex-direction: column;
    width: 200px;
  }
  .agileba-main .banner .banner-container .banner-content .facts-content .facts-list .fact .fact-img {
    margin-left: 0;
    margin-bottom: 10px;
  }
  .agileba-main .banner .banner-container .banner-content .facts-content .facts-list .fact .fact-count {
    margin-right: 0;
  }
  .agileba-main .banner .banner-container .banner-img {
    display: none;
  }
  .agileba-main .overview {
    padding: 3rem 2rem;
  }
  .agileba-main .overview .overview-container .overview-image {
    width: 80%;
    align-self: center;
  }
  .agileba-main .course {
    padding: 3rem 2rem;
  }
  .agileba-main .course .course-container .course-list {
    width: 100%;
    align-self: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .agileba-main .course .course-container .course-list .course-content {
    margin-right: 2rem;
    width: 40%;
  }
  .agileba-main .course .course-container .course-list .course-content:hover::after {
    width: 98.5%;
  }
  .agileba-main .course .course-container .course-list .course-content h3 {
    min-height: 50px;
  }
  .agileba-main .course .course-container .course-list .course-content:nth-child(2),
  .agileba-main .course .course-container .course-list .course-content:nth-child(4),
  .agileba-main .course .course-container .course-list .course-content:last-child {
    margin-right: 0;
  }
  .agileba-main .framework {
    padding: 3rem 2rem;
    display: flex;
  }
  .agileba-main .framework .framework-container {
    display: flex;
    flex-direction: column;
  }
  .agileba-main .framework .framework-container .heading {
    margin-bottom: 2rem;
  }
  .agileba-main .framework .framework-container span {
    width: 100%;
    height: 100%;
    display: flex;
  }
  .agileba-main .framework .framework-container span img {
    width: 100%;
    height: 100%;
  }
  .agileba-main .limited .limited-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .agileba-main .limited .limited-container .why-container {
    width: 50%;
    background-color: #F5F5F5;
  }
  .agileba-main .limited .limited-container .budget-container {
    width: 50%;
    align-self: center;
  }
  .agileba-main .methods {
    padding: 3rem 2rem;
  }
  .agileba-main .methods .methods-container .methods-list .method-content {
    width: 23%;
  }
  .agileba-main .principles {
    padding: 3rem 2rem;
  }
  .agileba-main .principles .principles-container .principles-content {
    align-items: center;
  }
  .agileba-main .principles .principles-container .principles-content .center-heading h2{
    text-align: left;
  }
  .agileba-main .principles .principles-container .principles-content p {
    text-align: center;
  }
  .agileba-main .principles .principles-container .principles-content .principles-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .agileba-main .principles .principles-container .principles-content .principles-list .content {
    width: 45%;
  }
  .agileba-main .principles .principles-container .principles-content .principles-list .content span {
    margin-bottom: 0px;
    margin-right: 0.5rem;
  }
  .agileba-main .principles .principles-container .principles-content .principles-list .content p {
    text-align: left;
  }
  .agileba-main .principles .principles-container .principles-image {
    width: 60%;
    align-self: center;
  }
  .agileba-main .benefits {
    padding: 3rem 2rem;
  }
  .agileba-main .benefits .benefits-container {
    flex-direction: row;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
  }
  .agileba-main .benefits .benefits-container .offer-mission {
    width: 50%;
  }
  .agileba-main .benefits .benefits-container .offer-mission .offer-timer .timer {
    width: 81%;
    align-self: center;
  }
  .agileba-main .benefits .benefits-container .offer-mission .mission-content {
    display: flex;
    height: 100%;
  }
  .agileba-main .benefits .benefits-container .offer-mission .mission-content .mission-img {
    display: flex;
    height: 100%;
    width: 100%;
  }
  .agileba-main .benefits .benefits-container .benefits-content {
    width: 46%;
    margin-top: 0;
  }
  .agileba-main .choose {
    padding: 3rem 2rem;
  }
  .agileba-main .choose .choose-container .choose-list {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-self: flex-start;
  }
  .agileba-main .choose .choose-container .choose-list .item {
    width: 48%;
  }
  .agileba-main .testimonials {
    padding: 3rem 2rem;
  }
  .agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item {
    padding: 1.5rem;
  }
  .agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item .review {
    min-height: 242px;
  }
  .agileba-main .faq {
    padding: 3rem 2rem;
  }
  .agileba-main .faq .faq-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .agileba-main .faq .faq-container .faq-content {
    width: 52%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #d4d4d4;
    border-right: 5px solid #d4d4d4;
    position: relative;
    z-index: 1;
    padding: 1.5rem;
  }
  .agileba-main .faq .faq-container .faq-content::before,
  .agileba-main .faq .faq-container .faq-content::after {
    content: '';
    z-index: -1;
    position: absolute;
    height: 55px;
    width: 6px;
    background-color: #343886;
  }
  .agileba-main .faq .faq-container .faq-content::before {
    top: 20px;
    left: -5px;
    animation: line-move1 15s linear infinite;
  }
  .agileba-main .faq .faq-container .faq-content::after {
    bottom: 20px;
    right: -5px;
    animation: line-move2 15s linear infinite;
  }
  .agileba-main .faq .faq-container .form-content {
    width: 45%;
    margin-top: 0;
    position: sticky;
    top: 80px;
    height: fit-content;
  }
  .agileba-main .footer {
    padding: 3rem 2rem;
  }
  .agileba-main .footer .footer-container .heading {
    display: none;
  }
  .agileba-main .footer .footer-container .query {
    width: 90%;
    align-self: center;
    display: flex;
    flex-direction: row;
    background-color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: space-between;
  }
  .agileba-main .footer .footer-container .query .query-content {
    display: flex;
    flex-direction: column;
    width: 70%;
  }
  .agileba-main .footer .footer-container .query .query-content p {
    color: #1D1D1D;
    line-height: 1.5;
    margin-top: 6px;
  }
  .agileba-main .footer .footer-container .query .buttons {
    margin-top: 0;
    width: 27%;
    justify-content: flex-end;
  }
  .agileba-main .footer .footer-container .footer-content {
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
  }
  .agileba-main .footer .footer-container .footer-content .contact-info {
    flex-direction: row;
    width: 60%;
    align-items: center;
    justify-content: space-between;
  }
  .agileba-main .footer .footer-container .footer-content .contact-info .contact {
    margin-bottom: 0;
  }
  .agileba-main .footer .footer-container .footer-content .buttons {
    width: 38%;
    justify-content: flex-end;
  }
}
@media (min-width : 1024px) {
  .agileba-main p {
    line-height: 1.8;
  }
  .agileba-main .heading h2 {
    font-size: 26px;
  }
  .agileba-main .banner {
    background-image: url(/_public/images/agileba/banner-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .agileba-main .banner .logo-container .menu {
    display: none;
  }
  .agileba-main .banner .logo-container .menu-links {
    width: 77%;
    display: flex;
    align-items: center;
    background: 0 0;
    max-height: unset;
    overflow: unset;
    position: relative;
    box-shadow: none;
    justify-content: flex-end;
  }
  .agileba-main .banner .logo-container .menu-links .menu-toggle {
    display: none;
  }
  .agileba-main .banner .logo-container ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
  }
  .agileba-main .banner .logo-container ul .links-li {
    margin-right: 1rem;
    padding: 0;
    border-bottom: 2px solid transparent;
    position: relative;
    z-index: 1;
  }
  .agileba-main .banner .logo-container ul .links-li::before,
  .agileba-main .banner .logo-container ul .links-li::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 17px;
    background-color: #343886;
    visibility: hidden;
    transform: scaleY(0);
    transition: all 0.3s ease-in-out 0s;
    bottom: 0px;
    z-index: -1;
  }
  .agileba-main .banner .logo-container ul .links-li::before {
    right: -6px;
  }
  .agileba-main .banner .logo-container ul .links-li:after {
    left: -6px;
  }
  .agileba-main .banner .logo-container ul .links-li:hover::before,
  .agileba-main .banner .logo-container ul .links-li:hover:after {
    visibility: visible;
    transform: scaleY(1);
  }
  .agileba-main .banner .logo-container ul .links-li:nth-last-child(2) {
    border-bottom: 2px solid transparent;
  }
  .agileba-main .banner .logo-container ul .links-li:last-child {
    margin-top: 0;
    margin-right: 0;
    border-bottom: none;
  }
  .agileba-main .banner .logo-container ul .links-li:last-child::before,
  .agileba-main .banner .logo-container ul .links-li:last-child::after {
    content: none;
  }
  .agileba-main .banner .logo-container ul .links-li .link {
    font-weight: 600;
    transition: none;
    padding-bottom: 0;
  }
  .agileba-main .banner .logo-container ul .buttons {
    display: flex;
  }
  .agileba-main .banner .logo-container ul .buttons .btn-white {
    margin-right: 22px;
  }
  .agileba-main .banner .logo-container ul .buttons .btn-yellow {
    border: 2px solid transparent;
  }
  .agileba-main .banner .logo-container ul .buttons .btn-yellow:hover {
    border: 2px solid #c5c5c5;
    transition: 1s all;
    background-color: #c5c5c5;
  }
  .agileba-main .banner .banner-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .agileba-main .banner .banner-container .banner-content {
    width: 57%;
  }
  .agileba-main .banner .banner-container .banner-content .facts-content .facts-list .fact {
    width: 175px;
  }
  .agileba-main .banner .banner-container .banner-img {
    width: 38%;
    display: flex;
    margin-top: 0;
  }
  .agileba-main .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .agileba-main .overview .overview-container .overview-content {
    width: 44%;
    order: 2;
    align-items: flex-start;
  }
  .agileba-main .overview .overview-container .overview-content p {
    text-align: left;
  }
  .agileba-main .overview .overview-container .overview-content .heading {
    align-items: flex-start;
  }
  .agileba-main .overview .overview-container .overview-content .heading h2 {
    text-align: left;
  }
  .agileba-main .overview .overview-container .overview-image {
    width: 54%;
    margin-top: 0;
    order: 1;
    align-self: center;
  }
  .agileba-main .course .course-container .course-list .course-content {
    width: 30%;
  }
  .agileba-main .course .course-container .course-list .course-content:nth-child(2),
  .agileba-main .course .course-container .course-list .course-content:nth-child(4) {
    margin-right: 2rem;
  }
  .agileba-main .course .course-container .course-list .course-content:nth-child(3) {
    margin-right: 0rem;
  }
  .agileba-main .course .course-container .course-list .course-content:nth-child(4) {
    margin-bottom: 0;
  }
  .agileba-main .limited .limited-container .why-container {
    width: 56%;
    padding: 3rem;
  }
  .agileba-main .limited .limited-container .budget-container {
    width: 44%;
    padding: 3rem 2.5rem;
  }
  .agileba-main .methods {
    padding-top: 3rem!important;
    padding-bottom: 6rem!important;
  }
  .agileba-main .methods .methods-container p {
    width: 85%;
  }
  .agileba-main .methods .methods-container .methods-list {
    position: relative;
    z-index: 1;
    width: 85%;
    margin: auto;
  }
  .agileba-main .methods .methods-container .methods-list::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 83%;
    border: 2px solid #9e9e9e;
  }
  .agileba-main .methods .methods-container .methods-list .method-content {
    width: 25%;
    position: relative;
  }
  .agileba-main .methods .methods-container .methods-list .method-content::before,
  .agileba-main .methods .methods-container .methods-list .method-content::after {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    top: 20px;
    border: 3px solid #9E9E9E;
    border-radius: 50%;
    background-color: #fff;
  }
  .agileba-main .methods .methods-container .methods-list .method-content::before {
    left: 32px;
    animation: around3 4s linear infinite;
  }
  .agileba-main .methods .methods-container .methods-list .method-content::after {
    right: 32px;
    animation: around4 4s linear infinite;
  }
  .agileba-main .methods .methods-container .methods-list .method-content:first-child::before {
    animation: none;
  }
  .agileba-main .methods .methods-container .methods-list .method-content:last-child::after {
    animation: none;
  }
  .agileba-main .principles .principles-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .agileba-main .principles .principles-container .principles-content {
    width: 55%;
    align-items: flex-start;
  }
  .agileba-main .principles .principles-container .principles-content p {
    text-align: left;
  }
  .agileba-main .principles .principles-container .principles-content .heading {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .agileba-main .principles .principles-container .principles-content .heading h2 {
    text-align: left;
  }
  .agileba-main .principles .principles-container .principles-content .buttons {
    justify-content: flex-start;
  }
  .agileba-main .principles .principles-container .principles-image {
    width: 40%;
    margin-top: 0;
    height: fit-content;
  }
  .agileba-main .benefits .benefits-container .offer-mission .offer-timer {
    position: relative;
    margin-bottom: 4rem;
  }
  .agileba-main .benefits .benefits-container .offer-mission .offer-timer .offer-content {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.5rem 1rem 3rem;
    border-bottom: 15px solid #9E9E9E;
  }
  .agileba-main .benefits .benefits-container .offer-mission .offer-timer .offer-content .offer {
    flex-direction: row;
  }
  .agileba-main .benefits .benefits-container .offer-mission .offer-timer .offer-content .offer span {
    margin-bottom: 0;
    margin-right: 1rem;
  }
  .agileba-main .benefits .benefits-container .offer-mission .offer-timer .offer-content .offer .text {
    align-items: flex-start;
  }
  .agileba-main .benefits .benefits-container .offer-mission .offer-timer .offer-content .offer .text h3,
  .agileba-main .benefits .benefits-container .offer-mission .offer-timer .offer-content .offer .text p {
    text-align: left;
  }
  .agileba-main .benefits .benefits-container .offer-mission .offer-timer .offer-content .buttons {
    margin-top: 0;
  }
  .agileba-main .benefits .benefits-container .offer-mission .offer-timer .timer {
    width: 60%;
    align-self: center;
    position: absolute;
    bottom: -68px;
    left: 96px;
    margin-top: 0;
  }
  .agileba-main .choose .choose-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .agileba-main .choose .choose-container .choose-content {
    width: 30%;
    align-items: flex-start;
  }
  .agileba-main .choose .choose-container .choose-content .heading h2 {
    text-align: left;
  }
  .agileba-main .choose .choose-container .choose-content p {
    text-align: left;
  }
  .agileba-main .choose .choose-container .choose-content .buttons {
    display: flex;
  }
  .agileba-main .choose .choose-container .choose-list {
    width: 68%;
  }
  .agileba-main .choose .choose-container .choose-list .item {
    width: 48%;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .agileba-main .choose .choose-container .choose-list .item span {
    width: 35px;
    height: 35px;
  }
  .agileba-main .choose .choose-container .choose-list .item .content {
    align-items: flex-start;
    width: 85%;
  }
  .agileba-main .choose .choose-container .choose-list .item .content h3 {
    margin: 0;
    margin-bottom: 5px;
  }
  .agileba-main .choose .choose-container .choose-list .item .content h3,
  .agileba-main .choose .choose-container .choose-list .item .content p {
    text-align: left;
  }
  .agileba-main .choose .choose-container .choose-list .item:nth-child(1),
  .agileba-main .choose .choose-container .choose-list .item:nth-child(2) {
    margin-top: 0;
  }
  .agileba-main .testimonials {
    padding-bottom: 6rem;
    background-image: url(/_public/images/agileba/testimonial-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item {
    margin: 1.5rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item .ripple-background {
    width: 100px;
    height: 30px;
    position: absolute;
    left: -10px;
    bottom: 0;
    z-index: -1;
    display: flex;
  }
  .agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item .ripple-background .circle {
    position: absolute;
    border-radius: 50%;
    animation: ripple 8s infinite;
    box-shadow: 0px 0px 1px 0px #fff;
    background-color: #24394c;
  }
  .agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item .ripple-background .small {
    width: 70px;
    height: 70px;
    left: -10px;
    top: -20px;
    opacity: 0.1;
  }
  .agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item .ripple-background .medium {
    opacity: 0.1;
    width: 110px;
    height: 110px;
    left: -24px;
    top: -45px;
  }
  .agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item .ripple-background .large {
    width: 150px;
    height: 150px;
    left: -37px;
    top: -70px;
    opacity: 0.1;
  }
  .agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item .review {
    min-height: 200px;
  }
  .agileba-main .faq {
    padding-bottom: 0;
  }
  .agileba-main .faq .faq-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .agileba-main .faq .faq-container .form-content {
    width: 43%;
    top: 100px;
  }
  .agileba-main .footer {
    background-color: transparent;
    background-image: url(/_public/images/agileba/footer-lg.png);
    background-repeat: no-repeat;
    background-size: 100% 60%;
    background-position: bottom;
  }
  .agileba-main .footer .footer-container .query {
    position: relative;
    z-index: 1;
  }
  .agileba-main .footer .footer-container .query::before,
  .agileba-main .footer .footer-container .query::after {
    position: absolute;
    content: '';
    background-color: #fff;
    opacity: 0.4;
    border-radius: 8px;
    z-index: -1;
  }
  .agileba-main .footer .footer-container .query::before {
    width: 96%;
    height: 85px;
    bottom: -10px;
    left: 18px;
  }
  .agileba-main .footer .footer-container .query::after {
    width: 93%;
    height: 85px;
    bottom: -20px;
    left: 30px;
    z-index: -1;
  }
  .agileba-main .footer .footer-container .footer-content {
    margin-top: 3.5rem;
    position: relative;
    z-index: 1;
  }
  .agileba-main .footer .footer-container .footer-content::before {
    position: absolute;
    content: '';
    width: 60px;
    height: 60px;
    background-image: url(/_public/images/agileba/large-circle.svg);
    background-repeat: no-repeat;
    background-size: contain;
    right: 36%;
    top: 16%;
    z-index: -1;
    animation: pulse 1s linear infinite;
  }
  .agileba-main .footer .footer-container .footer-content::after {
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
    background-image: url(/_public/images/agileba/large-circle.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 18px;
    right: 37%;
    z-index: -1;
    animation: circleMover 10s linear infinite;
  }
  .agileba-main .footer .footer-container .footer-content .contact-info {
    width: 50%;
  }
}
@media (min-width : 1366px) {
  .agileba-main .container {
    width: 1200px;
    margin: 0 auto;
  }
  .agileba-main .heading h2 {
    font-size: 30px;
  }
  .agileba-main .buttons .btn-yellow,
  .agileba-main .buttons .btn-white {
    font-size: 18px;
  }
  .agileba-main .banner .logo-container {
    padding: 1rem 0;
  }
  .agileba-main .banner .logo-container ul .links-li {
    margin-right: 2rem;
  }
  .agileba-main .banner .banner-container {
    padding: 4rem 0rem;
    padding-top: 2rem;
  }
  .agileba-main .banner .banner-container .banner-content {
    width: 50%;
  }
  .agileba-main .overview {
    padding: 4rem 0rem;
  }
  .agileba-main .overview .overview-container .overview-image {
    width: 48%;
  }
  .agileba-main .overview .overview-container .overview-content {
    width: 50%;
  }
  .agileba-main .course {
    padding: 4rem 0rem;
  }
  .agileba-main .course .course-container {
    position: relative;
    z-index: 1;
  }
  .agileba-main .course .course-container::before {
    position: absolute;
    content: '';
    background-image: url(/_public/images/agileba/dots.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 88px;
    height: 124px;
    left: 100px;
    bottom: -20px;
    z-index: -1;
    opacity: 0.2;
    animation: dotsMove 10s linear infinite;
  }
  .agileba-main .course .course-container::after {
    position: absolute;
    content: '';
    background-image: url(/_public/images/agileba/dots-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100px;
    height: 130px;
    right: 55px;
    bottom: 50px;
    z-index: -1;
    opacity: 0.2;
    animation: rotateTri 10s linear infinite;
  }
  .agileba-main .course .course-container .course-list .course-content {
    width: 24%;
  }
  .agileba-main .course .course-container .course-list .course-content h3 {
    min-height: 50px;
  }
  .agileba-main .course .course-container .course-list .course-content:nth-child(4) {
    margin-right: 0;
  }
  .agileba-main .course .course-container .course-list .course-content:nth-child(3) {
    margin-right: 2rem;
  }
  .agileba-main .course .course-container .course-list .course-content:nth-child(4) {
    margin-right: 2rem;
  }
  .agileba-main .framework {
    padding: 4rem 0rem;
  }
  .agileba-main .limited {
    background-image: url(/_public/images/agileba/limited-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .agileba-main .limited .limited-container .why-container {
    background-color: transparent;
    padding: 3rem 0;
  }
  .agileba-main .limited .limited-container .budget-container {
    background-image: none;
    padding: 3rem 0;
    width: 40%;
    padding-left: 5rem;
    align-self: flex-start;
  }
  .agileba-main .methods {
    padding: 4rem 0rem;
  }
  .agileba-main .methods .methods-container .methods-list .method-content::before {
    left: 57px;
    animation: around2 6s linear infinite;
  }
  .agileba-main .methods .methods-container .methods-list .method-content::after {
    right: 56px;
    animation: around1 6s linear infinite;
  }
  .agileba-main .methods .methods-container .methods-list .method-content:first-child::before {
    animation: none;
  }
  .agileba-main .methods .methods-container .methods-list .method-content:last-child::after {
    animation: none;
  }
  .agileba-main .principles {
    padding: 4rem 0rem;
  }
  .agileba-main .principles .principles-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .agileba-main .principles .principles-container .principles-content {
    width: 50%;
  }
  .agileba-main .principles .principles-container .principles-content .heading {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .agileba-main .principles .principles-container .principles-content .heading h2 {
    text-align: left;
  }
  .agileba-main .principles .principles-container .principles-content p {
    text-align: left;
  }
  .agileba-main .principles .principles-container .principles-content .buttons {
    justify-content: flex-start;
  }
  .agileba-main .benefits {
    padding: 4rem 0rem;
  }
  .agileba-main .benefits .benefits-container .offer-mission {
    width: 45%;
  }
  .agileba-main .benefits .benefits-container .offer-mission .offer-timer .timer {
    width: 52%;
    left: 130px;
  }
  .agileba-main .benefits .benefits-container .benefits-content {
    width: 48%;
  }
  .agileba-main .choose {
    padding: 4rem 0rem;
  }
  .agileba-main .choose .choose-container .choose-content {
    width: 34%;
  }
  .agileba-main .choose .choose-container .choose-list {
    width: 64%;
  }
  .agileba-main .testimonials {
    padding: 4rem 0rem;
    padding-bottom: 6rem;
    position: relative;
    z-index: 1;
  }
  .agileba-main .testimonials .cubes-list {
    position: absolute;
    width: 100%;
    height: 82%;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.4;
  }
  .agileba-main .testimonials .cubes-list .cube {
    position: absolute;
    width: 10px;
    height: 10px;
    border: solid 1px #007dbd;
    transform-origin: top left;
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    animation: cube 12s ease-in forwards infinite;
  }
  .agileba-main .testimonials .cubes-list .cube:nth-child(1) {
    animation-delay: 5s;
    left: 10%;
    top: 27%;
  }
  .agileba-main .testimonials .cubes-list .cube:nth-child(2) {
    animation-delay: 2s;
    left: 35%;
    top: 24%;
  }
  .agileba-main .testimonials .cubes-list .cube:nth-child(3) {
    animation-delay: 4s;
    right: 15%;
    top: 25%;
  }
  .agileba-main .testimonials .cubes-list .cube:nth-child(4) {
    animation-delay: 6s;
    left: 50%;
    top: 50%;
  }
  .agileba-main .testimonials .cubes-list .cube:nth-child(5) {
    animation-delay: 8s;
    left: 18%;
    bottom: 25%;
  }
  .agileba-main .testimonials .cubes-list .cube:nth-child(6) {
    animation-delay: 10s;
    right: 10%;
    bottom: 23%;
  }
  .agileba-main .testimonials .testimonials-container .testimonials-list .testimonial-item .review {
    min-height: 150px;
  }
  .agileba-main .faq {
    padding: 4rem 0rem;
    padding-top: 2rem;
  }
  .agileba-main .faq .faq-container .faq-content {
    width: 52%;
  }
  .agileba-main .faq .faq-container .form-content {
    width: 40%;
  }
  .agileba-main .footer {
    padding: 4rem 0rem;
    background-image: url(/_public/images/agileba/footer-xl.png);
    padding-top: 0;
    padding-bottom: 3rem;
    background-size: 100% 75%;
  }
  .agileba-main .footer .footer-container .query {
    width: 79%;
  }
  .agileba-main .footer .footer-container .query::before {
    width: 97%;
  }
  .agileba-main .footer .footer-container .query::after {
    width: 95%;
  }
  .agileba-main .footer .footer-container .query .query-content {
    width: 60%;
  }
  .agileba-main .footer .footer-container .query .buttons {
    width: 17%;
  }
  .agileba-main .footer .footer-container .footer-content .buttons {
    width: 24%;
  }
}
@media (min-width : 1500px) {
  .agileba-main .footer {
    background-size: 100% 82%;
    background-image: linear-gradient(#343886 20%, #1A1C43);
  }
}
